 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: #333;
     overflow-x: hidden;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header */
 header {
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
 }

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

 .logo {
     display: flex;
     align-items: center;
     text-decoration: none;
     gap: 15px;
 }

 .logo img {
     height: 50px;
     width: auto;
 }

 .logo-text {
     font-size: 1.8rem;
     font-weight: bold;
     color: #7CB342;
 }

 .logo-text .facilities {
     color: #1565C0;
 }

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

 .nav-links a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .nav-links a:hover {
     color: #7CB342;
 }

 .menu-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, #7CB342 0%, #1565C0 100%);
     color: white;
     padding: 120px 0 80px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
     opacity: 0.3;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-size: 3.5rem;
     margin-bottom: 1rem;
     font-weight: 700;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero p {
     font-size: 1.3rem;
     margin-bottom: 2rem;
     opacity: 0.9;
 }

 .cta-button {
     display: inline-block;
     background: #fff;
     color: #1565C0;
     padding: 15px 35px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: bold;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .cta-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
     background: #7CB342;
     color: white;
 }

 /* Services Section */
 .container-img {
     display: flex;
     justify-content: center;
     margin-bottom: 40px;
     
 }
 .container-img img {
     width: 350px;
     height: auto;
 }
 .services {
     padding: 80px 0;
     background: #f8fafc;     
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: #1e293b;
     margin-bottom: 1rem;
 }

 .section-title p {
     font-size: 1.1rem;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .service-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: transform 0.3s ease;
     border-top: 4px solid #7CB342;
 }

 .service-card:hover {
     transform: translateY(-5px);
     border-top-color: #1565C0;
 }

 .service-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #7CB342, #1565C0);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     font-size: 2rem;
     color: white;
 }

 .service-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: #1e293b;
 }

 .service-card p {
     color: #64748b;
     line-height: 1.6;
 }

 /* Benefits Section */
 .benefits {
     padding: 80px 0;
     background: white;
 }

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

 .benefit-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }

 .benefit-icon {
     width: 50px;
     height: 50px;
     background: #7CB342;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     flex-shrink: 0;
 }

 .benefit-item:nth-child(even) .benefit-icon {
     background: #1565C0;
 }

 .benefit-content h4 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
     color: #1e293b;
 }

 .benefit-content p {
     color: #64748b;
     font-size: 0.95rem;
 }

/* Contact Section (light theme to match site) */
.contact {
    padding: 80px 0;
    background: #f8fafc; /* light background consistent with services */
    color: #1e293b;
}

 .contact-content {
     display: grid;
     grid-template-columns: 1fr; /* make contact-info take full width so cards span across */
     gap: 2rem;
     align-items: start;
 }

 .contact-info h3 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: #1e293b;
 }

 .contact-info p {
     margin-bottom: 2rem;
     color: #64748b;
     font-size: 1.1rem;
 }

 .contact-details {
     list-style: none;
 }

/* contact-details as responsive cards */
.contact-details {
    list-style: none;
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.contact-details li {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
    border-left: 4px solid #7CB342; /* default accent */
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    font-size: 1rem;
}

.contact-details li:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(16,24,40,0.08);
}

.contact-details .icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
    background: linear-gradient(135deg, #7CB342, #1565C0);
}

/* Alternate accent for even items to match brand colors */
.contact-details li:nth-child(even) {
    border-left-color: #1565C0;
}

.contact-details li:nth-child(even) .icon {
    background: linear-gradient(135deg, #1565C0, #7CB342);
}

/* Text block inside card */
.contact-details li > div {
    color: #1e293b;
}

.contact-details li strong {
    display: block;
    color: #0f172a;
    margin-bottom: 4px;
}

@media (max-width: 480px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
    .contact-details .icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* Contact action alignment */
.contact-action {
    margin-top: 1rem;
}

.contact-action .whatsapp-cta {
    display: inline-block;
}

@media (max-width: 768px) {
    .contact-action {
        text-align: center;
    }
    .contact-action .whatsapp-cta {
        width: 100%;
        max-width: 480px;
    }
}

 .contact-form {
     background: #ffffff;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 6px 20px rgba(16,24,40,0.06);
     border: 1px solid #e6eef5;
     color: #1e293b;
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #cbd5e1;
     border-radius: 10px;
     background: #fff;
     color: #1e293b;
     font-size: 1rem;
     transition: border-color 0.3s ease, box-shadow 0.15s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: #7CB342;
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: #94a3b8;
 }

 .form-group select option {
     background: #fff;
     color: #1e293b;
 }

 .submit-btn {
     width: 100%;
     background: linear-gradient(135deg, #7CB342, #1565C0);
     color: white;
     padding: 15px;
     border: none;
     border-radius: 10px;
     font-size: 1.1rem;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .submit-btn:hover {
     background: linear-gradient(135deg, #689F38, #0D47A1);
     transform: translateY(-2px);
 }

 /* Footer */
 footer {
     background: #0f172a;
     color: white;
     text-align: center;
     padding: 2rem 0;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .menu-toggle {
         display: block;
     }

     .nav-links {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: white;
         flex-direction: column;
         padding: 1rem;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     }

     .nav-links.active {
         display: flex;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero p {
         font-size: 1.1rem;
     }

     .contact-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .services-grid,
     .benefits-grid {
         grid-template-columns: 1fr;
     }

     .logo-text {
         font-size: 1.4rem;
     }

     .logo img {
         height: 40px;
     }
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .fade-in-up {
     animation: fadeInUp 0.6s ease-out;
 }

 /* Success Message */
 .success-message {
     background: #7CB342;
     color: white;
     padding: 1rem;
     border-radius: 10px;
     margin-bottom: 1rem;
     display: none;
 }

 /* Scroll to top button */
 .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366; /* WhatsApp green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1000;
 }

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.2);
}

/* Style the SVG inside the WhatsApp button */
.scroll-top svg {
    display: block;
    width: 28px;
    height: 28px;
    pointer-events: none; /* clicks bubble to the button */
}

/* Optional white ring to make icon pop on light backgrounds */
.scroll-top::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
    pointer-events: none;
}

 .scroll-top.show {
     display: flex;
 }

/* Floating WhatsApp anchor (bottom-right) */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1200;
    font-size: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.whatsapp-float i {
    pointer-events: none;
    color: #fff;
}

/* CTA button inside contact section that opens WhatsApp (uses company colors) */
.whatsapp-cta {
    display: inline-block;
    background: linear-gradient(135deg, #7CB342, #1565C0);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(16,24,40,0.08);
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
}

 /* Custom scrollbar */
 ::-webkit-scrollbar {
     width: 8px;
 }

 ::-webkit-scrollbar-track {
     background: #f1f1f1;
 }

 ::-webkit-scrollbar-thumb {
     background: linear-gradient(135deg, #7CB342, #1565C0);
     border-radius: 4px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(135deg, #689F38, #0D47A1);
 }