
        /* ========== RESET & BASE ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: #F5F7FA;
            color: #2E2E2E;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ========== HEADER & NAVBAR ========== */
        header {
            background-color: #FFFFFF;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #162A5C;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: #46C3B7;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #2E2E2E;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1rem;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #46C3B7;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #162A5C;
        }

        /* ========== BUTTONS ========== */
        .btn-primary {
            background-color: #46C3B7;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            background-color: #6EDAD0;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(70,195,183,0.3);
        }

        /* ========== SECTIONS ========== */
        section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: #162A5C;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 3px;
            background: #46C3B7;
            border-radius: 3px;
        }

        /* ========== HERO ========== */
        .hero {
            background: linear-gradient(135deg, #162A5C 0%, #1F3A7A 100%);
            color: white;
            padding: 80px 0;
            border-radius: 0 0 40px 40px;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 35px rgba(0,0,0,0.2);
        }

        /* ========== FEATURES ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
        }

        .feature-icon {
            font-size: 3rem;
            color: #46C3B7;
            margin-bottom: 1rem;
        }

        /* ========== ABOUT SECTION (RESPONSIVE) ========== */
        .about-wrapper {
            background: white;
        }

        .about-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .about-text {
            flex: 1;
            min-width: 250px;
        }

        .about-image {
            flex: 1;
            min-width: 250px;
        }

        .about-image img {
            border-radius: 24px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .services-list {
            list-style: none;
            margin: 1rem 0;
        }

        .services-list li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .services-list li i {
            color: #46C3B7;
            width: 20px;
        }

        .why-choose {
            background: #f0f9f8;
            padding: 1rem;
            border-radius: 16px;
            margin: 1.5rem 0;
        }

        /* ========== CARDS (SERVICES & TEAM) ========== */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card, .team-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .service-card:hover, .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        }

        .card-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-content h3 {
            color: #162A5C;
            margin-bottom: 0.5rem;
        }

        /* ========== GALLERY ========== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .overlay {
            position: absolute;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            width: 100%;
            padding: 1rem;
            text-align: center;
            font-weight: bold;
            opacity: 0;
            transition: 0.3s;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        /* ========== CONTACT ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-family: inherit;
        }

        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 24px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 12px 20px;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            margin-top: 1rem;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, #46C3B7, #6EDAD0);
            color: #162A5C;
            border-radius: 40px;
            margin: 40px auto;
            padding: 2rem;
        }

        .cta-section ul {
            list-style: none;
            margin: 1.5rem 0;
        }

        .cta-section li {
            margin: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* ========== FOOTER ========== */
        footer {
            background: #162A5C;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .social-icons a {
            color: white;
            margin-left: 1rem;
            font-size: 1.5rem;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: #46C3B7;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #1F3A7A;
            margin-top: 2rem;
        }

        /* ========== FLOATING WHATSAPP ========== */
        .float-whatsapp {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: #25D366;
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 99;
            transition: 0.3s;
        }

        .float-whatsapp:hover {
            transform: scale(1.1);
            background: #128C7E;
        }

        /* ========== RESPONSIVE MEDIA QUERIES ========== */

        /* Tablet (max-width: 1024px) */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .about-grid {
                gap: 1.5rem;
            }
        }

        /* Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            /* Navigation */
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: white;
                padding: 1rem 0;
                gap: 1rem;
                text-align: center;
                border-top: 1px solid #eee;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }

            /* Hero */
            .hero {
                padding: 50px 0;
            }
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
            .hero-image {
                margin-top: 1rem;
            }

            /* Sections */
            section {
                padding: 40px 0;
            }
            .section-title {
                font-size: 1.6rem;
            }

            /* About - Stack on mobile */
            .about-grid {
                flex-direction: column;
                text-align: center;
            }
            .about-text {
                order: 2;
            }
            .about-image {
                order: 1;
                margin-bottom: 1rem;
            }
            .services-list li {
                justify-content: center;
                text-align: right;
            }
            .why-choose {
                text-align: right;
            }

            /* Cards */
            .cards-grid {
                gap: 1.5rem;
            }
            .card-img {
                height: 200px;
            }

            /* Gallery */
            .gallery-grid {
                gap: 1rem;
            }
            .gallery-item img {
                height: 220px;
            }

            /* Contact */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* CTA */
            .cta-section {
                padding: 1.5rem;
                margin: 30px auto;
            }
            .cta-section h2 {
                font-size: 1.4rem;
            }
            .cta-section li {
                font-size: 0.9rem;
            }

            /* Footer */
            .footer-content {
                gap: 1.5rem;
                text-align: center;
            }
            .social-icons {
                margin-top: 0.5rem;
            }
        }

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .btn-primary {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .feature-card {
                padding: 1.5rem;
            }
            .feature-icon {
                font-size: 2.5rem;
            }
            .card-content {
                padding: 1rem;
            }
            .card-content h3 {
                font-size: 1.1rem;
            }
            .contact-info {
                padding: 1.5rem;
            }
            .cta-section {
                padding: 1rem;
            }
        }
   