 :root {
            --emerald: #10b981;
            --emerald-dark: #059669;
            --emerald-light: #34d399;
            --gold: #fbbf24;
            --gold-dark: #f59e0b;
            --black: #111827;
            --white: #f9fafb;
            --gray: #6b7280;
            --gray-light: #e5e7eb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Jost', sans-serif;
            line-height: 1.6;
            color: var(--black);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            font-family: 'Jost', sans-serif;
        }
        
        .btn-primary {
            background-color: var(--emerald);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--emerald-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--emerald);
            border: 2px solid var(--emerald);
        }
        
        .btn-secondary:hover {
            background-color: rgba(16, 185, 129, 0.1);
            transform: translateY(-3px);
        }
        
        .btn-gold {
            background-color: var(--gold);
            color: var(--black);
        }
        
        .btn-gold:hover {
            background-color: var(--gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
        }
        
        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        
            z-index: 1000;
            background-color: transparent;
            transition: all 0.4s ease;
        }
        
        .navbar.scrolled {
            background-color: transparent;
            padding: 15px 0;
            
        }
        
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo:hover {
    transform: translateY(-2px);
}



.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}
 .logo {
        font-size: 1.8rem;
        font-weight: 500;
        /*color; #14c794;*/;
        color:white;
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: #00e6a4;
      }

      .logo i {
        margin-right: 8px;
        color: var(--emerald);
      }

      .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}
        
        .nav-links {
            display: flex;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: white;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gold);
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--gold);
        }
        
        .nav-links a.active:after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .page-hero {
            height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .page-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .page-hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* HERO BACKGROUND */
.contact-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.6)
        ),
        url("image\ -\ 2026-01-25T151321.227.webp");
    background-size: cover;
    background-position: center 45%;
 /* 🔑 THIS is the key */
    background-repeat: no-repeat;
    z-index: -1;
}

/* CONTENT */
.hero-content {
    max-width: 850px;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--emerald-light);
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
    color: #f2f2f2;
}

        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .footer-logo .logo-img {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            margin-right: 10px;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: var(--gray-light);
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
            left: 0;
            bottom: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--gray-light);
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--emerald);
        }
        
        .contact-info li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--gray-light);
        }
        
        .contact-info i {
            color: var(--emerald);
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--emerald);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        /* Contact Page Specific Styles */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .contact-info-box {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--emerald);
        }
        
        .contact-info-box h2 {
            font-size: 1.8rem;
            color: var(--black);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info-box h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--emerald);
            left: 0;
            bottom: 0;
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .contact-detail:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            color: var(--emerald);
            font-size: 1.2rem;
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            color: var(--black);
            margin-bottom: 5px;
        }
        
        .contact-text p {
            color: var(--gray);
            margin-bottom: 5px;
        }
        
        .contact-text a {
            color: var(--emerald);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--emerald-dark);
            text-decoration: underline;
        }
        
        .contact-form-box {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--gold);
        }
        
        .contact-form-box h2 {
            font-size: 1.8rem;
            color: var(--black);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-form-box h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--gold);
            left: 0;
            bottom: 0;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--black);
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--gray-light);
            border-radius: 5px;
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--emerald);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        .contact-social {
            text-align: center;
            margin-top: 50px;
        }
        
        .contact-social h3 {
            font-size: 1.8rem;
            color: var(--black);
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .social-link-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            width: 120px;
            transition: transform 0.3s ease;
        }
        
        .social-link-item:hover {
            transform: translateY(-5px);
        }
        
        .social-link-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 1.3rem;
            color: white;
        }
        
        .social-link-icon.facebook {
            background-color: #1877F2;
        }
        
        .social-link-icon.twitter {
            background-color: #1DA1F2;
        }
        
        .social-link-icon.instagram {
            background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FFDC80);
        }
        
        .social-link-icon.linkedin {
            background-color: #0077B5;
        }
        
        .social-link-icon.youtube {
            background-color: #FF0000;
        }
        
        .social-link-text {
            font-weight: 500;
            color: var(--black);
        }
        
        .map-section {
            margin-top: 60px;
        }
        
        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-light);
        }
        
        .map-placeholder {
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1771&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        .map-placeholder h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .page-hero h1 {
                font-size: 2.8rem;
            }
            
            .page-hero p {
                font-size: 1.2rem;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--black);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .nav-links a {
                font-size: 1.3rem;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .contact-grid {
                gap: 30px;
            }
            
            .contact-info-box, .contact-form-box {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            .contact-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.63),
            rgba(0, 0, 0, 0.6)
        ),
        url("image\ -\ 2026-01-25T151321.227.webp");
    background-size: cover;
    background-position: center 25%;
 /* 🔑 THIS is the key */
    background-repeat: no-repeat;
    z-index: -1;
}
            .page-hero p {
                font-size: 1.1rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                left: 20px;
            }
            
            .social-link-item {
                width: 100px;
                padding: 15px;
            }
            
            .map-container {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .contact-info-box, .contact-form-box {
                padding: 25px 20px;
            }
            
            .contact-detail {
                flex-direction: column;
            }
            
            .contact-icon {
                margin-bottom: 15px;
            }
        }