/* ===== Base Styles ===== */
:root {
    --primary: #FFD700;      /* Mustard Yellow */
    --secondary: #2E8B57;    /* Green */
    --dark: #2C3E50;        /* Dark Blue */
    --light: #F8F9FA;       /* Light Gray */
    --white: #FFFFFF;
    --text: #333333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 10px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* call */

/* ===== Header ===== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;

    height: 100px;
    padding: 0;
    display: flex;
    align-items: center;
}

.header.scrolled {
    height: 100px;
    padding: 0;
    background-color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
} */
    .logo-img {
    height: 100px;
    width: auto;
    max-height: 100%;
    object-fit: contain;

}

/* .logo span {
    color: var(--primary);
} */

.nav-menu {
    display: flex;
    gap: 30px;
   
}
.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    margin-left: 30px;
}
.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s ease;

}
.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* ===== Image Carousel Section ===== */
.img-carousel-section {
    padding: 30px 0;
}

.img-carousel {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.img-carousel-track {
    display: flex;
    width: 100%;
    transform: translateX(0);
    transition: transform 400ms ease;
    will-change: transform;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.img-carousel-slide {
    flex: 0 0 100%;
}

.img-carousel-slide img {
    width: 100%;
    height: clamp(164px, 45vw, 420px);
    object-fit: cover;
    display: block;
}

/* ===== About Section ===== */
.about-section {
    background-color: var(--light);
}

.about-content {
    margin-top: 50px;
}

.about-text {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark);
    margin: 40px 0 20px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Feature Box */
.feature-box {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.feature-text {
    flex: 1;
}

/* Benefits List */
.benefits-list {
    margin: 20px 0 30px;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-size: 20px;
}

/* Quality List */
.quality-list {
    margin: 20px 0 30px;
    padding: 0 0 0 25px;
}

.quality-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.quality-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* How to Use Section */
.how-to-use {
    margin: 60px 0;
}

.use-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.use-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.use-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary), #3aa76d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.use-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Testimonials */
.testimonials {
    margin: 80px 0;
    text-align: center;
}

.testimonial-slider {
    margin-top: 40px;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--secondary), #3aa76d);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .feature-icon {
        margin: 0 auto 20px;
    }
    
    .use-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 0;
    }
}

/* Why Mustard Oil is Essential Section */
.importance-section .about-content {
    display: flex;
    flex-direction: row; /* Keep image on right, text on left */
    align-items: center;
    gap: 50px;
}

.importance-section .about-text {
    flex: 1;
    padding: 20px;
}

.importance-section .about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.importance-section .about-image img {
    width: 100%;
    /* width: 800px; */
    height: 80vh;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mobile view */
@media (max-width: 768px) {
    .importance-section .about-content {
        flex-direction: column;
    }
    
    .importance-section .about-image {
        margin: 20px 0;
        width: 100%;
    }
    /* .section[style*="background-color: #f9f9f9;"] .about-image img {
    width: 100%;
    height: 70vh;
    display: block;
    transition: transform 0.5s ease;
} */
    
    .importance-section .about-image img {
               max-width: 114%;
        position: relative;
        left: 62px;
        height: 221px;
        bottom: 75px;
    }
    
    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px;
    }
}

/* About Section Layout */
.about-content {
    display: flex;
    flex-direction: row-reverse; /* This will put the image on the left */
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
}

.about-image img {
       width: 524px;
    position: relative;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile view */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin: 20px 0;
        width: 100%;
    }
    
    .about-image img {
        max-width: 100%;
        margin: 0 auto;
    }
} 

.about-image {
    border-radius: 10px;
    
    /* overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}
/* .about-image img {
    width: 50%;
} */

.about-text h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Essential */
/* ===== Importance Section ===== */
.importance-section {
    background-color: #fff;
    padding: 80px 0;
}

.importance-section .about-content {
    align-items: center;
}

.importance-section .about-text {
    padding-right: 40px;
}

.importance-section .section-title {
    text-align: left;
    margin-bottom: 30px;
    color: #2E8B57;
    position: relative;
    padding-bottom: 15px;
}

.importance-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FFD700;
}

.importance-points {
    margin: 30px 0;
}

.importance-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.importance-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.importance-item i {
    font-size: 24px;
    color: #FFD700;
    margin-right: 15px;
    margin-top: 5px;
}

.importance-item h4 {
    color: #2E8B57;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.importance-item p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E8B57;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .importance-section .about-content {
        flex-direction: column;
    }
    
    .importance-section .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .importance-section .about-image {
        order: -1;
    }
}

@media (max-width: 575.98px) {
    .importance-item {
        flex-direction: column;
        text-align: center;
    }
    
    .importance-item i {
        margin: 0 auto 10px;
        display: block;
    }
    
    .experience-badge {
        position: relative;
        display: inline-block;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }
}
/* Why Mustard Oil is Special Section */
.section[style*="background-color: #f9f9f9;"] .about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

.section[style*="background-color: #f9f9f9;"] .about-text {
    flex: 1;
    padding: 20px 0 20px 20px;
}

.section[style*="background-color: #f9f9f9;"] .about-text h3 {
    color: var(--secondary);
    margin: 25px 0 10px;
    position: relative;
    padding-left: 20px;
    font-size: 1.3rem;
}

.section[style*="background-color: #f9f9f9;"] .about-text h3:first-child {
    margin-top: 0;
}

.section[style*="background-color: #f9f9f9;"] .about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 25px;
    background-color: var(--primary);
    border-radius: 4px;
}

.section[style*="background-color: #f9f9f9;"] .about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

.section[style*="background-color: #f9f9f9;"] .about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.section[style*="background-color: #f9f9f9;"] .about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.section[style*="background-color: #f9f9f9;"] .about-image img {
    width: 100%;
    height: 90vh;
    display: block;
    transition: transform 0.5s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section[style*="background-color: #f9f9f9;"] .about-content {
        gap: 30px;
    }
    
    .section[style*="background-color: #f9f9f9;"] .about-text h3 {
        font-size: 1.2rem;
    }
    
    .section[style*="background-color: #f9f9f9;"] .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section[style*="background-color: #f9f9f9;"] .about-content {
        flex-direction: column;
    }
    
    .section[style*="background-color: #f9f9f9;"] .about-text {
        padding: 20px 0 0 0;
        text-align: center;
    }
    
    .section[style*="background-color: #f9f9f9;"] .about-text h3::before {
        display: none;
    }
    
    .section[style*="background-color: #f9f9f9;"] .about-text h3 {
        padding-left: 0;
        text-align: center;
    }

    .section[style*="background-color: #f9f9f9;"] .about-image img {
        height: 70vh;
    }
}

/* ===== Benefits Section ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
}

.benefit-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: var(--light);
    padding: 50px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 40px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    /* background-color:#FFD700; */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-text h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}

.contact-text p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-about p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #bbb;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: inherit;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary);
    color: var(--white);
}
/* our location */

 .footer-location p {
     color: #bbb;
     margin-bottom: 10px;
     line-height: 1.6;
 }

 .footer-location i {
     margin-right: 8px;
     color: var(--primary);
 }

 .footer-map-link {
     display: inline-block;
     color: var(--primary);
     margin-bottom: 12px;
 }

 .footer-map-link:hover {
     color: var(--white);
 }

 .footer-map-embed {
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
 }

 .footer-map-embed iframe {
     width: 100%;
     height: 180px;
     border: 0;
     display: block;
 }
/* location end */
.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}
/* call */
/* ===== Call Button ===== */
.call-btn {
    position: fixed;
    bottom: 30px;
    right: 92%; /* Position to the left of WhatsApp button */
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Green color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn:hover {
    background-color:#25D366; /* Darker green on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Adjust position on smaller screens */
@media (max-width: 767.98px) {
    .call-btn {
        bottom: 20px;
        right: 80%;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Make sure the pulse animation is defined (add this if not already present) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 991.98px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--dark);
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:first-child {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link {
        display: block;
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: #f9f9f9;
        padding-left: 35px;
        color: var(--primary);
    }
    
    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Adjust header height on mobile */
    .header {
        min-height: 70px;
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-img {
        width: 168px;
        height: auto;
        position: relative;   /* height force मत करो */
    }
}

@media (max-width: 767.98px) {
    .hero {
        margin-top: 60px !important; /* Adjust this value as needed */
    }
    
    .section {
        padding: 60px 0;
    }

    .slide h1 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 5px;
        padding: 12px;
    }
}

@media (max-width: 575px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 575.98px) {
    .logo {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    } */

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links,
    .footer-newsletter {
        margin-top: 30px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}
/* contact */
/* Add these styles to your style.css file */
.footer-contact {
    flex: 1;
    padding: 0 20px;
    position: relative;
    left: -30px;
}

.footer-contact h3 {
    /* color: var(--primary); */
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-info a:hover {
    color: var(--primary);
}

/* Make the footer responsive */
@media (max-width: 992px) {
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-contact,
    .footer-links,
    .footer-about,
    .footer-newsletter {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-contact,
    .footer-links,
    .footer-about,
    .footer-newsletter {
        flex: 0 0 100%;
    }
}   

/* center footer */

/* ===== Enquiry Modal ===== */
.enquiry-btn {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #ff3b3b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
    .enquiry-btn {
               bottom: 88px;
        right: 21px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

.enquiry-modal {
    position: fixed;
    inset: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 2000;
}

.enquiry-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.enquiry-modal-content {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 18px;
    padding: 26px 22px 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(18px) scale(0.96);
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.enquiry-modal.open .enquiry-modal-content {
    transform: translateY(0) scale(1);
}

.enquiry-modal-content h2 {
    margin: 0 0 18px;
    text-align: center;
    color: #e60000;
    font-size: 28px;
    font-weight: 700;
}

.enquiry-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #ffcc66;
    color: #111;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid #e7e7e7;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 12px 12px;
    margin-bottom: 12px;
    font-size: 15px;
    outline: none;
}

.enquiry-form textarea {
    min-height: 120px;
    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.enquiry-submit {
    width: 160px;
    display: block;
    margin: 12px auto 0;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    background: #e60000;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(230, 0, 0, 0.25);
}

/* ===== Thank You Toast ===== */
.thankyou-toast {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
    z-index: 2500;
}

.thankyou-toast.show {
    opacity: 1;
    pointer-events: auto;
}

.thankyou-toast-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 22px 18px 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(18px) scale(0.96);
    transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    text-align: center;
}

.thankyou-toast.show .thankyou-toast-card {
    transform: translateY(0) scale(1);
}

.thankyou-toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #ffcc66;
    color: #111;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.thankyou-toast-card h3 {
    margin: 0 0 8px;
    color: var(--secondary);
    font-size: 22px;
}

.thankyou-toast-card p {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}
