        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #4fafe3bb;
            --primary-dark: #233772;
            --secondary: #2a2a2a;
            --accent: #3458a0;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --black: #000000;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: var(--transition);
            padding: 20px 0;
        }

        .navbar.scrolled {
            background: var(--white);
            box-shadow: var(--shadow-md);
            padding: 10px 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 60px;
            transition: var(--transition);
        }

        .navbar.scrolled .logo img {
            height: 50px;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }

        .navbar.scrolled .nav-menu a {
            color: var(--dark);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-menu a.active {
            color: var(--primary);
        }

        .btn-call {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--primary);
        }

        .btn-call:hover {
            background: transparent;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoomEffect 20s infinite alternate;
        }

        @keyframes zoomEffect {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            color: var(--white);
            text-align: center;
        }

        .hero-content h1 {
            font-size: 72px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        .hero-content h1 span {
            color: var(--primary);
            display: block;
            font-size: 56px;
            font-weight: 400;
        }

        .hero-content p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: 2px solid var(--primary);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--primary);
        }

        .btn-outline {
            display: inline-block;
            background: transparent;
            color: var(--white);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: 2px solid var(--white);
            margin-left: 20px;
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--dark);
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
            position: relative;
            padding-bottom: 20px;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .about-content p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray);
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            color: var(--white);
            padding: 20px;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 700;
        }

        .experience-badge span {
            font-size: 36px;
            line-height: 1;
        }

        /* Services Section */
        .services-section {
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .service-overlay i {
            color: var(--white);
            font-size: 30px;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-content p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Corporate Services Grid */
        .corporate-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .corporate-service-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-align: center;
            border: 1px solid var(--light-gray);
        }

        .corporate-service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .corporate-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            transition: var(--transition);
        }

        .corporate-service-card:hover .corporate-icon {
            transform: rotateY(180deg);
            background: var(--dark);
        }

        .corporate-service-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .corporate-service-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 16px;
        }

        .corporate-features {
            list-style: none;
            margin-top: 25px;
            text-align: left;
        }

        .corporate-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray);
        }

        .corporate-features li i {
            color: var(--primary);
            font-size: 16px;
        }

       /* ===============================
   CERTIFICATIONS SECTION
================================ */

.certifications {
    padding: 80px 0;
}

/* Grid Layout */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 in one row */
    gap: 30px;
    margin-top: 40px;
}

/* PDF Box */
.cert-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-8px);
}

/* Increase PDF Height */
.cert-item iframe {
    width: 100%;
    height: 500px;  /* 🔥 Increased height */
    border: none;
}

/* ===============================
   Responsive Design
================================ */

/* Tablet → 2 per row */
@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile → 1 per row */
@media (max-width: 600px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .cert-item iframe {
        height: 400px;
    }
}

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-align: center;
            border-bottom: 4px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
            border-bottom-color: var(--primary);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--dark);
            transform: rotateY(180deg);
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
            color: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .testimonial-card i {
            color: var(--primary);
            font-size: 40px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .client-info h5 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .client-info span {
            font-size: 14px;
            opacity: 0.7;
        }

        /* Certifications */
        .certifications {
            background: var(--light);
            text-align: center;
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 800px;
            margin: 50px auto 0;
        }

        .cert-item {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .cert-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }

        .cert-item img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .contact-info li {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            color: rgba(255,255,255,0.7);
        }

        .contact-info li i {
            color: var(--primary);
            font-size: 18px;
            margin-top: 3px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .qr-code {
            max-width: 150px;
            margin-top: 20px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
        }

       /* ===============================
   ABOUT SECTION
================================ */

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* Left & Right */
    align-items: center;
    gap: 60px;
}

/* Left Text */
.about-text {
    text-align: left;
}

.about-text .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #444;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Right Image */
.about-image {
    text-align: right;
}

.about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===============================
   Responsive Design
================================ */

/* Tablet & Mobile */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;  /* Stack vertically */
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-image {
        text-align: center;
        margin-top: 30px;
    }
}



/* ===============================
   MISSION & VISION SECTION
================================ */

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Left & Right */
    gap: 40px;
    align-items: stretch;
}

/* Card Design */
.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv-card:hover {
    transform: translateY(-10px);
}

/* Icon */
.mv-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0d6efd;
}

/* Title */
.mv-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Paragraph */
.mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Optional Different Colors */
.mission {
    border-top: 5px solid #0d6efd;
}

.vision {
    border-top: 5px solid  #0d6efd;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
}



/* ===============================
   SERVICES VERTICAL SECTION
================================ */

.services-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
    font-size: 16px;
}

/* Service Row */
.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

/* Reverse layout */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* Image */
.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Text */
.service-text {
    flex: 1;
}

.service-icon {
    font-size: 35px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.service-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .service-image img {
        max-width: 100%;
    }
}


.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.project-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.project-image:hover {
    transform: scale(1.08);
}

/* Modal styles (make sure these exist) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}



/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.contact-heading {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
}

/* Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
}

/* ===== LEFT SIDE ===== */
.contact-info-box {
    flex: 1 1 500px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

/* Title */
.info-title {
    font-size: 24px;
    margin-bottom: 35px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Each Item */
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon */
.contact-icon {
    width: 65px;
    height: 65px;
    background:#70a7e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Text */
.contact-content h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-link {
    display: block;
    text-decoration: none;
    color: #333;
    margin: 4px 0;
    transition: 0.3s;
}

.contact-link:hover {
    color:#70a7e1;
}

.address-text {
    margin-top: 5px;
    line-height: 1.6;
}

/* Button */
.contact-actions {
    margin-top: 40px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #70a7e1;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background:#70a7e1;
}

/* ===== RIGHT SIDE (MAP) ===== */
.map-container {
    flex: 1 1 500px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.map-title {
    font-size: 22px;
    margin-bottom: 25px;
}

.map-frame iframe {
    width: 100%;
    height: 800px;
    border-radius: 12px;
    border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-box,
    .map-container {
        padding: 35px 25px;
    }
}



/* ===== base variables (consistent with index) ===== */
:root {
    --primary: #3eb2c7;
    --primary-dark: #2ca0a8;
    --secondary: #2c3e50;
    --light: #f8f9fa;
    --dark: #1a1e24;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --accent: #4492a7;  /* blue accent from footer */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== navbar (exactly as index) ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1000;
}
.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo img {
    height: 50px;
    transition: var(--transition);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.3px;
}
.navbar.scrolled .nav-menu a {
    color: var(--dark);
}
.nav-menu a.active, 
.nav-menu a:hover {
    color: var(--primary);
}

/* ===== hero section (same as index style) ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s ease;
}
.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}
.hero-content div {
    animation: fadeInUp 1s ease 0.4s both;
}
.btn-primary, 
.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin: 0 10px;
    font-size: 1rem;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}
.btn-primary:hover {
    background: transparent;
    color: var(--white);
}
.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== section headers (matching index) ===== */
.section {
    padding: 80px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== about section (from index) ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-content p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
}
.stat-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
}
.experience-badge span {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

/* ===== corporate services (from index) ===== */
.corporate-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.corporate-service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.corporate-service-card:hover {
    transform: translateY(-10px);
}
.corporate-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}
.corporate-service-card:hover .corporate-icon {
    background: var(--primary);
    color: var(--white);
}
.corporate-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
}
.corporate-service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}
.corporate-features {
    list-style: none;
    text-align: left;
}
.corporate-features li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}
.corporate-features i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===== services grid (from index) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.1);
}
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover .service-overlay {
    opacity: 1;
}
.service-overlay i {
    color: white;
    font-size: 3rem;
}
.service-content {
    padding: 25px;
}
.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
}
.service-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== features section (from index) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
}
.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* ===== testimonials (from index) ===== */
.testimonials-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=2070&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    color: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}
.client-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}
.client-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== certifications (from index) ===== */
.certifications {
    background: var(--light);
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cert-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 300px;
}
.cert-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* ===== gallery filter ===== */
.gallery-filter {
    padding: 0 0 40px;
    text-align: center;
}
.filter-btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}
.filter-btn.active, 
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== gallery grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 25px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ===== lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 80%;
    max-height: 70%;
    border: 4px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox-close:hover {
    color: var(--primary);
}
.lightbox-caption {
    color: white;
    margin-top: 20px;
    font-size: 1.2rem;
    max-width: 70%;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: rgba(0,0,0,0.3);
    padding: 0 20px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 8px;
}
.lightbox-nav:hover {
    background: var(--primary);
}
.prev { left: 30px; }
.next { right: 30px; }

/* ===== contact page styles ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
}
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.contact-info-item h4 {
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea {
    height: 150px;
    resize: vertical;
}
.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.submit-btn:hover {
    background: var(--primary-dark);
}

/* ===== enquiry page styles ===== */
.enquiry-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 80px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.enquiry-form .form-group {
    margin-bottom: 25px;
}
.enquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}
.required:after {
    content: '*';
    color: red;
    margin-left: 4px;
}

/* ===== footer (exactly as index) ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}
.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}
.contact-info i {
    color: var(--accent);
    margin-top: 4px;
    width: 20px;
}
.contact-info a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}
.contact-info a:hover {
    color: var(--accent);
}



/* Right Side Social Icons */
.right-social{
    position: fixed;
    right: -55px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
}

/* Social Icon Style */
.right-social .social{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Hover Effect */
.right-social .social:hover{
    transform: scale(1.1);
}

/* Colors */
.youtube{
    background:#FF0000;
}

.instagram{
    background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
}

.facebook{
    background:#3b5998;
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#28a745;
}


.qr-code {
    height: 80px;
    margin-top: 10px;
    background: white;
    padding: 5px;
    border-radius: 8px;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}
.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== responsive ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .footer-grid { 
        grid-template-columns: repeat(2,1fr); 
    }
    .hero-content h1 { 
        font-size: 3rem; 
    }
    .section-title { 
        font-size: 2rem; 
    }
    .about-grid,
    .corporate-services-grid,
    .features-grid,
    .testimonials-grid,
    .cert-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu { 
        display: none; 
    }
    .hero-content h1 { 
        font-size: 2.2rem; 
    }
    .hero { 
        height: 90vh; 
        min-height: 500px;
    }
    .section {
        padding: 60px 0;
    }
    .about-grid,
    .corporate-services-grid,
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .cert-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
    .filter-btn { 
        padding: 8px 20px; 
        font-size: 0.9rem; 
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .enquiry-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn-primary, 
    .btn-outline {
        padding: 12px 25px;
        margin: 5px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}




        /* ===== base variables (consistent with index) ===== */
        :root {
            --primary: #3ebec7;
            --primary-dark: #2c95a8;
            --secondary: #4d8eb1;
            --light: #f8f9fa;
            --dark: #1a1e24;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --accent: #4492a7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== navbar (exactly as index) ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            padding: 20px 0;
            transition: var(--transition);
            z-index: 1000;
        }
        .navbar.scrolled {
            background: var(--white);
            box-shadow: var(--shadow);
            padding: 15px 0;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo img {
            height: 50px;
            transition: var(--transition);
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            transition: var(--transition);
            font-size: 1rem;
            letter-spacing: 0.3px;
        }
        .navbar.scrolled .nav-menu a {
            color: var(--dark);
        }
        .nav-menu a.active, 
        .nav-menu a:hover {
            color: var(--primary);
        }

        /* ===== hero section (same as index style) ===== */
        .hero {
            position: relative;
            height: 60vh;
            min-height: 400px;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-bg .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
        }
        .hero-content {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            z-index: 2;
            padding: 0 20px;
        }
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Montserrat', sans-serif;
            animation: fadeInUp 1s ease;
        }
        .hero-content p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        /* ===== section headers (matching index) ===== */
        .section {
            padding: 80px 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-heading {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-heading h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }
        .section-heading h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }
        .section-heading p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== enquiry section ===== */
        .enquiry-section {
            padding: 80px 0;
            background: var(--light);
        }
        .enquiry-form-wrapper {
            background: var(--white);
            padding: 50px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            max-width: 800px;
            margin: 0 auto;
        }
        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .form-group {
            flex: 1 1 calc(50% - 10px);
            margin-bottom: 0;
        }
        .form-group.full-width {
            flex: 1 1 100%;
        }
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--light);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 5px 15px rgba(199, 154, 62, 0.1);
        }
        .form-control::placeholder {
            color: #999;
            font-size: 0.95rem;
        }
        .captcha-section {
            flex: 1 1 100%;
            display: flex;
            gap: 20px;
            align-items: center;
            background: var(--light);
            padding: 20px;
            border-radius: 10px;
        }
        .captcha-img {
            flex: 0 0 200px;
            text-align: center;
            cursor: pointer;
        }
        .captcha-img img {
            max-width: 100%;
            border-radius: 5px;
            border: 2px solid var(--primary);
        }
        .captcha-note {
            font-size: 0.8rem;
            color: var(--primary);
            margin-top: 5px;
        }
        .btn-submit {
            flex: 1 1 100%;
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(199, 154, 62, 0.3);
        }
        .btn-submit i {
            font-size: 1.2rem;
        }

        /* ===== loading animation ===== */
        #loading {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid var(--light);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ===== success message ===== */
        #successMessage {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: center;
            z-index: 10000;
            max-width: 400px;
            width: 90%;
            animation: slideIn 0.5s ease;
        }
        .success-icon {
            width: 80px;
            height: 80px;
            background: #4CAF50;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 20px;
        }
        .success-message h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        .success-message p {
            color: #666;
            margin-bottom: 20px;
        }
        .close-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .close-btn:hover {
            background: var(--primary-dark);
        }
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translate(-50%, -60%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        /* ===== footer (exactly as index) ===== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent);
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .contact-info li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: rgba(255,255,255,0.7);
            margin-bottom: 15px;
        }
        .contact-info i {
            color: var(--accent);
            margin-top: 4px;
            width: 20px;
        }
        .contact-info a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        .contact-info a:hover {
            color: var(--accent);
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin: 25px 0 20px;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
            text-decoration: none;
        }
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        .qr-code {
            height: 80px;
            margin-top: 10px;
            background: white;
            padding: 5px;
            border-radius: 8px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 0.95rem;
        }
        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* ===== animations ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== responsive ===== */
        @media (max-width: 992px) {
            .footer-grid { 
                grid-template-columns: repeat(2,1fr); 
            }
            .hero-content h1 { 
                font-size: 3rem; 
            }
            .section-heading h2 { 
                font-size: 2rem; 
            }
        }
        @media (max-width: 768px) {
            .nav-menu { 
                display: none; 
            }
            .hero-content h1 { 
                font-size: 2.2rem; 
            }
            .hero { 
                height: 50vh; 
            }
            .enquiry-form-wrapper {
                padding: 30px 20px;
            }
            .form-group {
                flex: 1 1 100%;
            }
            .captcha-section {
                flex-direction: column;
                text-align: center;
            }
            .captcha-img {
                flex: 0 0 auto;
            }
            .footer-grid { 
                grid-template-columns: 1fr; 
            }
        }
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .section-heading h2 {
                font-size: 1.8rem;
            }
            .btn-submit {
                padding: 15px 25px;
                font-size: 1rem;
            }
        }
    






        /* ==========================================================================
   RESET & ROOT VARIABLES (unified)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary:      #4fafe3bb;
    --primary-dark: #233772;
    --accent:       #3458a0;
    --secondary:    #2a2a2a;
    --light:        #f8f9fa;
    --dark:         #1a1a1a;
    --gray:         #6c757d;
    --light-gray:   #e9ecef;
    --white:        #ffffff;

    --shadow-sm:    0 4px 6px rgba(0,0,0,0.06);
    --shadow-md:    0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg:    0 20px 40px rgba(0,0,0,0.18);

    --transition:   all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--dark);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--white);
}

/* ==========================================================================
   TYPOGRAPHY & COMMON UTILITIES
   ========================================================================== */

h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

.section-title {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 0.9em;
    margin-bottom: 0.6em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--primary);
    border-radius: 3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* ==========================================================================
   NAVBAR (mobile-first – menu hidden by default)
   ========================================================================== */

.navbar {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.nav-menu {
    display: none;                    /* hidden on mobile – use JS hamburger */
    gap: 1.8rem;
    list-style: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a { color: var(--dark); }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2.5px;
    background: var(--primary);
    transition: width 0.35s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.btn-call {
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-call:hover {
    background: transparent;
    color: var(--primary);
}

/* Show menu on larger screens */
@media (min-width: 992px) {
    .nav-menu { display: flex; }
    .logo img { height: 60px; }
    .navbar.scrolled .logo img { height: 50px; }
}

/* ==========================================================================
   HERO (fluid height + text scaling)
   ========================================================================== */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 24s infinite alternate ease-in-out;
}

@keyframes zoom { to { transform: scale(1.08); } }

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 9vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    display: block;
    font-size: clamp(1.8rem, 7vw, 3.5rem);
    color: var(--primary);
}

.hero-content p {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
    max-width: 720px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: clamp(0.8rem, 3vw, 1rem) clamp(1.4rem, 5vw, 2.2rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover { background: transparent; color: var(--primary); }

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover { background: white; color: var(--dark); }

/* ==========================================================================
   SECTIONS – COMMON
   ========================================================================== */

.section {
    padding: clamp(4rem, 12vw, 7rem) 0;
}

/* ==========================================================================
   GRIDS & LAYOUTS – MOBILE FIRST
   ========================================================================== */

.about-grid,
.corporate-services-grid,
.features-grid,
.testimonials-grid,
.services-grid,
.cert-grid,
.mv-grid,
.contact-wrapper,
.contact-grid {
    display: grid;
    gap: 2rem;
}

.about-grid,
.mv-grid,
.contact-grid { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .about-grid,
    .mv-grid,
    .contact-grid { grid-template-columns: 1fr 1fr; }

    .corporate-services-grid,
    .features-grid,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .corporate-services-grid,
    .features-grid,
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

    .services-grid { grid-template-columns: repeat(3, 1fr); }

    .cert-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-row,
.service-row.reverse {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 992px) {
    .service-row,
    .service-row.reverse {
        flex-direction: row;
        text-align: left;
    }

    .service-row.reverse { flex-direction: row-reverse; }
}

/* ==========================================================================
   IMAGES & MEDIA – always responsive
   ========================================================================== */

img, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

.about-image img,
.service-image img,
.cert-item img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cert-item iframe {
    height: 320px;           /* smaller on mobile */
}

@media (min-width: 768px) {
    .cert-item iframe { height: 420px; }
}

/* ==========================================================================
   RIGHT FLOATING SOCIAL (less intrusive on mobile)
   ========================================================================== */

.right-social {
    position: fixed;
    right: 0;
    bottom: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transform: translateX(70%);
    transition: transform 0.35s ease;
}

.right-social:hover { transform: translateX(0); }

.right-social .social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
}

.right-social .social:hover { transform: scale(1.1); }

/* ==========================================================================
   FOOTER (better stacking)
   ========================================================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 2fr; }
}

/* ==========================================================================
   CONTACT / MAP SECTION
   ========================================================================== */

.contact-wrapper {
    flex-direction: column;
    gap: 2.5rem;
}

.map-frame iframe {
    height: 400px;           /* smaller on mobile */
    border-radius: 12px;
}

@media (min-width: 768px) {
    .contact-wrapper { flex-direction: row; }
    .map-frame iframe { height: 500px; }
}

/* ==========================================================================
   OTHER SECTIONS (quick fixes)
   ========================================================================== */

.experience-badge {
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
    bottom: 1rem;
    right: 1rem;
}

.experience-badge span { font-size: 1.8rem; }

.service-card,
.feature-card,
.corporate-service-card,
.testimonial-card {
    border-radius: 12px;
    overflow: hidden;
}

/* ==========================================================================
   MEDIA QUERIES SUMMARY (min-width progressive enhancement)
   ========================================================================== */

@media (min-width: 576px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 768px) {
    .section { padding: 6rem 0; }
    .hero { min-height: 85vh; }
}

@media (min-width: 992px) {
    .container { padding: 0 2.5rem; }
    .section { padding: 8rem 0; }
    .hero { min-height: 100vh; }
}

@media (min-width: 1200px) {
    .container { padding: 0 4rem; }
}


/* =============================================
   Vertical Social Sidebar - Right side of Hero
   ============================================= */

.hero-social-sidebar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;                /* space between icons */
}

.hero-social-sidebar a.social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(51, 165, 235, 0.5);   /* semi-transparent dark */
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);       /* modern glass effect (optional) */
}

.hero-social-sidebar a.social:hover {
    transform: translateX(-8px) scale(1.15);
    background: #ffffff;
    color: #447398;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Platform-specific hover colors (optional - uncomment if you want) */
.hero-social-sidebar a.youtube:hover  { background: #ff0000; color: white; }
.hero-social-sidebar a.instagram:hover { background: #e1306c; color: white; }
.hero-social-sidebar a.facebook:hover  { background: #1877f2; color: white; }
.hero-social-sidebar a.whatsapp:hover  { background: #25d366; color: white; }
.hero-social-sidebar a.call:hover      { background: #4caf50; color: white; }

/* Make it disappear on mobile (optional) */
@media (max-width: 992px) {
    .hero-social-sidebar {
        display: none;   /* or reduce size: transform: scale(0.8); right: 10px; */
    }
}


.hero-social-sidebar{
    position:fixed;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:9999;
}

/* icon design */
.hero-social-sidebar .social{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:18px;
    text-decoration:none;
}

/* colors */
.youtube{ background:#FF0000; }
.instagram{ background:#E4405F; }
.facebook{ background:#1877F2; }
.whatsapp{ background:#25D366; }
.call{ background:#0d6efd; }

/* MOBILE FIX */
@media(max-width:768px){

.hero-social-sidebar{
    right:10px;
    top:auto;
    bottom:20px;
    transform:none;
}

.hero-social-sidebar .social{
    width:40px;
    height:40px;
    font-size:16px;
}

}