
        /* --- CSS Variables & Reset --- */
        :root {
            --primary-color: #0b2545; /* Deep Navy */
            --secondary-color: #ff8c00; /* Vibrant Orange */
            --secondary-hover: #e07b00;
            --text-dark: #333333;
            --text-light: #555555;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border-radius: 12px;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Buttons --- */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--secondary-hover);
            transform: translateY(-2px);
        }

        /* --- Header --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.0rem; /* Small Logo */
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .logo i {
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        /* --- Professional Hero Slider --- */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            background: #000;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            width: 90%;
            max-width: 800px;
            z-index: 3;
        }

        /* Text Animations */
        .slide-content h1 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.3s;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.5s;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .slide-content .btn {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.7s;
        }

        .slide.active .slide-content h1,
        .slide.active .slide-content p,
        .slide.active .slide-content .btn {
            opacity: 1;
            transform: translateY(0);
        }

        /* Slider Controls (ARROWS REMOVED) */
        .slider-btn {
            display: none; /* HIDDEN AS REQUESTED */
        }

        /* Dots */
        .dots-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background: var(--secondary-color);
            transform: scale(1.2);
        }

        /* --- Services Section --- */
        .services {
            padding: 80px 0;
            background-color: var(--bg-light);
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            margin: 10px auto 0;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #eee;
            text-align: center;
            padding-bottom: 30px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
            border-color: var(--secondary-color);
        }

        .service-img {
            height: 200px;
            width: 100%;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--white);
            color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: -40px auto 20px;
            position: relative;
            z-index: 5;
            border: 4px solid var(--white);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .service-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .service-content p {
            color: var(--text-light);
            font-size: 0.95rem;
            padding: 0 20px;
            margin-bottom: 20px;
        }

        /* --- Floating Action Buttons (MOBILE ONLY) --- */
        .fab-container {
            position: fixed;
            bottom: 90px; /* UPDATED: Increased from 30px to 90px to move UP and prevent cutting */
            left: 0;
            width: 100%;
            pointer-events: none;
            z-index: 9999;
            display: none; /* Hidden on Desktop */
        }

        .fab {
            pointer-events: auto;
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
        }

        .fab:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }

        .fab-call { left: 20px; background-color: var(--secondary-color); }
        .fab-whatsapp { right: 20px; background-color: #25D366; }

        .pulse { animation: pulse-animation 2s infinite; }
        @keyframes pulse-animation {
            0% { box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.7); }
            100% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
        }

        /* --- About Section --- */
        .about { padding: 80px 0; }
        .about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .about-img img { border-radius: var(--border-radius); box-shadow: var(--shadow); }
        .about-content h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 20px; }
        .about-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: var(--text-dark); }
        .about-list i { color: var(--secondary-color); }

        /* --- Reviews Section --- */
        .reviews { background-color: var(--primary-color); padding: 80px 0; color: var(--white); }
        .reviews .section-title h2 { color: var(--white); }
        .reviews .section-title h2::after { background: var(--secondary-color); }
        .reviews .section-title p { color: #d1d5db; }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .review-card { background: rgba(255, 255, 255, 0.1); padding: 30px; border-radius: var(--border-radius); backdrop-filter: blur(5px); }
        .stars { color: #FFD700; margin-bottom: 15px; }
        .review-text { font-style: italic; margin-bottom: 20px; opacity: 0.9; }
        .reviewer { display: flex; align-items: center; gap: 15px; }
        .reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
        .reviewer-info h4 { font-size: 1rem; color: var(--white); margin-bottom: 2px; }
        .reviewer-info span { font-size: 0.8rem; color: var(--secondary-color); }

        /* --- SEO Content Section --- */
        .seo-content-section { padding: 80px 0; background-color: var(--white); }
        .seo-container { max-width: 900px; margin: 0 auto; }
        .seo-container h1 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; line-height: 1.3; }
        .seo-container h2 { font-size: 2rem; color: var(--primary-color); margin-top: 40px; margin-bottom: 15px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
        .seo-container h3 { font-size: 1.5rem; color: #2c3e50; margin-top: 30px; margin-bottom: 10px; }
        .seo-container h4 { font-size: 1.2rem; color: #444; margin-top: 20px; margin-bottom: 10px; font-weight: 600; }
        .seo-container h5, .seo-container h6 { font-size: 1rem; color: #555; margin-top: 15px; font-weight: 600; }
        .seo-container p { margin-bottom: 15px; font-size: 1.05rem; color: #444; text-align: justify; }
        .seo-container ul { margin: 15px 0 15px 20px; list-style-type: disc; }
        .seo-container li { margin-bottom: 10px; color: #444; }

        /* --- Legal Sections --- */
        .legal-section { padding: 60px 0; background-color: #fdfdfd; border-top: 1px solid #eee; }
        .legal-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
        .legal-container h2 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.8rem; }
        .legal-container h3 { color: var(--text-dark); margin-top: 20px; margin-bottom: 10px; font-size: 1.3rem; }
        .legal-container p { color: var(--text-light); margin-bottom: 15px; font-size: 0.95rem; }

        /* --- Footer --- */
        footer { background-color: #081b33; color: #b0b8c4; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand h2 { color: var(--white); margin-bottom: 20px; font-size: 1.5rem; }
        .footer-brand i { color: var(--secondary-color); }
        .footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.1rem; }
        .footer-links li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
        .footer-links i { color: var(--secondary-color); font-size: 0.8rem; }
        .footer-links a:hover { color: var(--secondary-color); padding-left: 5px; transition: 0.3s; }
        .contact-info li { display: flex; gap: 15px; margin-bottom: 15px; align-items: flex-start; }
        .contact-info i { color: var(--secondary-color); margin-top: 4px; }
        
        /* Copyright Styling */
        .copyright { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 20px; 
            text-align: center; 
            font-size: 0.9rem;
            white-space: nowrap; /* Keep on one line on desktop */
        }
        
        .copyright a { color: var(--secondary-color); }

        /* --- Responsive --- */
        @media (max-width: 992px) {
            .service-grid, .about-wrapper { grid-template-columns: 1fr; }
            .about-img { order: -1; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .slide-content h1 { font-size: 2rem; }
        }

        @media (max-width: 768px) {
            .hero-slider { height: 500px; }
            .footer-grid { grid-template-columns: 1fr; }
            .seo-container h1 { font-size: 1.8rem; }
            .seo-container h2 { font-size: 1.5rem; }
            
            /* FIX: Show Floating Buttons ONLY on Mobile */
            .fab-container { display: block; } 
            .fab { width: 50px; height: 50px; font-size: 24px; }

            /* FIX: Copyright Wrap on Mobile */
            .copyright {
                white-space: normal; /* Allow text to break to new lines */
                display: flex;
                flex-direction: column;
                gap: 8px; /* Add space between lines */
                align-items: center;
                padding: 20px 10px;
            }

            /* FIX: Header Button Size for Mobile */
            .nav-wrapper .btn {
                padding: 6px 12px; /* Reduced padding */
                font-size: 0.75rem; /* Smaller font */
            }
        }
  