:root {
    --butter-yellow: oklab(96.577% -0.0041 0.05284);
    --dark-green: #1f4d3a;
    --soft-green: #e6f2ee;
    --white: #ffffff;
    --text-dark: #2c2c2c;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

section {
    padding: 60px 20px;
}

/* ======================
   HERO LAYOUT
====================== */
.hero {
    min-height: 20vh;                /* ✅ Reduced from 60vh */
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    background: #fff4cc;
    position: relative;
    overflow: hidden;
}

/* Side panels */
.hero-side {
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Left image */
.hero-side.left {
    background: url("images/hero-left.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Right image */
.hero-side.right {
    background: url("images/hero-right.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Center content */
.hero-content {
    text-align: center;
    padding: 40px 20px; /* ✅ Reduced from 70px */
}

.hero-content h1 {
    font-size: 48px; /* ✅ Increased for impact */
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f4d3a; /* ✅ Dark green color */
    letter-spacing: -1px; /* ✅ Tighter spacing for modern look */
    line-height: 1.2; /* ✅ Better line spacing */
}

.hero-content p {
    max-width: 650px; /* ✅ Slightly narrower for better readability */
    margin: 0 auto 30px;
    font-size: 18px; /* ✅ Slightly larger */
    line-height: 1.7;
    color: #2c2c2c;
}

/* Button */
.hero-btn {
    background: #1f4d3a;
    color: #ffffff;
    padding: 16px 40px; /* ✅ Slightly larger padding */
    border-radius: 12px; /* ✅ More rounded */
    font-weight: 600;
    font-size: 16px; /* ✅ Explicit size */
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(31, 77, 58, 0.25); /* ✅ Green shadow */
    transition: all 0.3s ease; /* ✅ Smooth hover effect */
}

.hero-btn::before {
    content: '📞';
    filter: brightness(0) saturate(100%) invert(27%) sepia(97%) saturate(3500%) hue-rotate(350deg) brightness(95%) contrast(95%);
    margin-right: 8px;
}

/* ======================
   MOBILE
====================== */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: 45vh; /* ✅ Even smaller on mobile */
    }

    .hero-side {
        display: none;
    }

    .hero-content {
        padding: 50px 20px; /* ✅ Adjusted for mobile */
    }

    .hero-content h1 {
        font-size: 32px; /* ✅ Smaller on mobile */
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* ABOUT SECTION */
.about {
    background: var(--soft-green);
    padding: 140px 20px;
}

.about-container {
    max-width: 1100px;
    min-height:90px ;
    margin: auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 40px; /* Reduced padding slightly for better fit */
    align-items: center; /* Centers text vertically next to the photo */
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px; /* Ensures minimum height */
    max-height: 500px; /* Controls maximum height */
    object-fit: cover; /* ✅ Changed from 'contain' to 'cover' */
    object-position: center; /* Centers the image */
    border-radius: 18px;
}
.about-content {
    padding-left: 50px;
}
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 20px; /* ✅ Add gap for mobile too */
    }
    
    .about-content {
        padding-left: 0; /* ✅ Remove left padding on mobile */
    }
    
    .about-image img {
        max-height: 350px; /* ✅ Smaller on mobile */
    }
}

/* DIVIDER */
.section-divider {
    height: 30px;
    background: linear-gradient(to bottom, var(--soft-green), var(--butter-yellow));
}

/* PROBLEMS */
.problems {
    background: var(--butter-yellow);
    text-align: center;
}

.problem-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.problem-card img,
.about img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* SERVICES */
.services {
    background: #e6f2ee; /* ✅ Lightest yellow background */
    padding: 80px 20px;
}

.services h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1f4d3a;
    margin-bottom: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* ✅ Better font */
}

.services-grid {
    max-width: 1200px;
    margin: auto;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.services-grid li {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    border-left: 5px solid var(--dark-green);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* ✅ Better font */
}

.services-grid li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-left-width: 8px;
    background: #fafafa; /* ✅ Slight color change on hover */
}

/* Service Title (English) */
.services-grid li > *:first-child,
.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f4d3a;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Service Hindi Text */
.services-grid li > *:last-child,
.service-hindi {
    font-size: 15px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid li {
        padding: 25px 20px;
    }
}


/* CONTACT */
.contact {
    background: linear-gradient(135deg, #1f4d3a 0%, #2d6b4f 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact::before,
.contact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.contact::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.contact::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.contact h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-actions {
    max-width: 500px;
    margin: 0 auto 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.call {
    background: #fff4cc;
    color: #1f4d3a;
}

.call:hover {
    background: #ffe8a1;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.email {
    background: #ff7b7b;
    color: white;
}

.email:hover {
    background: #ff5c5c;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 123, 123, 0.4);
}

/* ✅ THIS IS THE IMPORTANT PART FOR TEXT SIZE */
.contact .note {
    font-size: 20px !important; /* ✅ Very large - using !important to override anything */
    line-height: 2 !important;
    margin-top: 40px !important;
    font-weight: 600 !important;
    color: white !important;
    position: relative;
    z-index: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .contact {
        padding: 60px 20px;
    }

    .contact h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-actions {
        max-width: 100%;
    }

    .contact-btn {
        padding: 16px 25px;
        font-size: 16px;
    }

    .contact .note {
        font-size: 19px !important;
    }
}
/* MAP */
.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 12px;
}

/* STICKY CALL */
.sticky-call {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    z-index: 999;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .section-divider {
        height: 40px;
    }
}
