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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 70px;
    background: #fff url('./makhana_making_steps.png') no-repeat center top;
    /* background-size: contain; */
    background-size: cover;
    background-attachment: fixed;
    background-color: #ffffff;
    /* fallback color */
    color: #212121;
    overflow-x: hidden;

}


/* linear-gradient(90deg, #d32f2f, #ff9800); */
header {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 50%, #42A5F5 100%);
    color: #fff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar h1 {
    font-size: 1.5rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: opacity 0.3s;
    padding-top: 5px;
}

.nav-links a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background: white;
    transition: all 0.3s ease;
}

.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);
}

.hero-section {
    text-align: center;
    padding: 3rem 1rem;
    min-height: auto;
    background: linear-gradient(180deg, #1565C0 0%, #1976D2 50%, #42A5F5 100%);
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 1.5rem;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 8px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    margin-left: -150px;

}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.download-btn {
    position: relative;
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #18921e, #598a5b, #81c784);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /* important for shine effect */
}

/* Hover scaling effect */
.download-btn:hover {
    background: linear-gradient(135deg, #388e3c, #66bb6a);
    transform: scale(1.05);
}

/* ---- SHINE EFFECT ---- */
.download-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

/* On hover, move the shine across the button */
.download-btn:hover::after {
    left: 130%;
    transition: all 0.7s ease;
}


.image-showcase {
    padding: -1rem 0rem;
    background-color: #dfebff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.wave-top svg,
.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.image-showcase h2 {
    font-size: 1.8rem;
    color: #d32f2f;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.image-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.features-section {
    padding: 3rem 1rem;
    background: linear-gradient(180deg, #1565C0 0%, #1976D2 50%, #42A5F5 100%);
    text-align: center;
    position: relative;
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1866c1;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    color: #d32f2f;
    font-size: 1.2rem;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
}

.wave-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    background-color: #fff;
}

.wave-section-alt {
    background-color: #dfebff;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.section-content h2 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.feature-list {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.feature-list p.note {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #d32f2f;
    padding: 0.5rem;
    background: #dfebff;
    border-radius: 6px;
}

.feature-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.feature-item {
    background: #dfebff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #1866c1;
}

.feature-item h3 {
    color: #d32f2f;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.screenshots-section {
    padding: 2rem 1rem;
    position: relative;
    background: #f9f9f9;
}

.screenshots-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #d32f2f;
    font-size: 1.8rem;
}

.mobile-frame {
    position: absolute;
    width: 275px;
    height: 534px;
    border: 15px solid #000;
    border-radius: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
    /* display: none; */
}



#scrollContainer {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
    height: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#scrollContainer::-webkit-scrollbar {
    display: none;
}

.screenshot {
    width: 250px;
    height: 450px;
    object-fit: contain;
    cursor: grab;
    user-select: none;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    scroll-snap-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.screenshot:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
    background: #fff url('./pageHeadBg.jpg') no-repeat center center / cover;
    padding: 3rem 1rem;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff9800;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.2);
}

.send-btn {
    padding: 0.8rem;
    background: #388e3c;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-section {
    padding-top: 10px;
    /* padding: 3rem 1rem; */
    background-color: #dfebff;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.faq-section h2 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    /* gap: 1.2rem; */
}

.faq-item {
    background: white;
    /* padding: .8rem; */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #d32f2f;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer {
    background: #1565c0;
    color: white;
    padding: 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 5%;
}

.footer-column {
    padding: 0.5rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #00004a;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    opacity: 0.8;
    background-color: #efefef;
    border: #ffffff;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.c-button {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    border: 4px solid transparent;
    border-top-color: white;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: white;
    background-color: #0073f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
}

.c-button span {
    transform: rotate(45deg);
    display: block;
    width: 100%;
    text-align: center;
    /* padding: 5px; */
}

.c-button:hover {
    transform: rotate(-45deg) scale(1.1);
    background-color: #1a508e;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.c-button.a {
    border-top-color: #d32f2f;
    border-left-color: #ba2929;
}

.c-button.b {
    border-top-color: rgb(255, 0, 162);
    border-left-color: rgb(252, 3, 190);
}

.c-button.c {
    border-top-color: #ff9800;
    border-left-color: #ea9007;
}

.c-button.whatsapp-btn {
    border-top-color: #18d222;
    border-left-color: #18d222;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-icon:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

.whatsapp-icon img {
    width: 30px;
    height: 30px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }

    .navbar h1 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 4rem 2rem;
        min-height: 50vh;
    }

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

    .download-btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }

    .image-showcase {
        padding: -1rem 0rem;
    }

    .image-showcase h2 {
        font-size: 2.2rem;
    }

    .features-section h2 {
        font-size: 2.5rem;
    }

    .contact-form {
        grid-template-columns: 1fr 1fr;
    }

    .form-group.full-width,
    .send-btn {
        grid-column: span 2;
    }

    .mobile-frame {
        display: block;
    }

    .screenshot {
        width: 260px;
        height: 490px;
    }

    #scrollContainer {
        height: 600px;
    }

    .c-button {
        width: 80px;
        height: 70px;
        font-size: 14px;
    }

    .whatsapp-icon {
        width: 70px;
        height: 70px;
    }

    .whatsapp-icon img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #1866c1;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

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

    .menu-toggle {
        display: flex;
    }

    .feature-list p.note {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .buttons-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .navbar h1 {
        font-size: 1.3rem;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .section-content h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .buttons-container {
        bottom: 10px;
        right: 10px;
    }

    .c-button {
        width: 50px;
        height: 50px;
        font-size: 10px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon img {
        width: 25px;
        height: 25px;
    }

    .wave-top svg,
    .wave-bottom svg {

        height: 40px;
    }
}

.icon-matka {
    font-size: 1.8em;
    /* h1 default size */
    font-weight: bold;
    /* h1 is bold */

}




.fancy-button {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(135deg, #4caf50, #81c784);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fancy-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.5s ease-in-out;
}

.fancy-button:hover {
    background: linear-gradient(135deg, #388e3c, #66bb6a);
    transform: scale(1.05);
}

.fancy-button:hover::after {
    left: 125%;
}





/* ---- Video Container ---- */
.video-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    z-index: 2;
}

/* ---- The Video ---- */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

/* ---- Overlap the Waves on Video ---- */
.wave-top {
    margin-bottom: -80px;
    z-index: 200;
    /* pulls wave over video */
}

.hero-data {
    display: flex;
}

.wave-bottom {
    margin-top: -80px;
    /* pulls bottom wave over video */
    z-index: 200;
}

/* ---- Responsive Design ---- */
@media (max-width: 768px) {
    .video-container {
        height: 300px;
    }

    .wave-top svg,
    .wave-bottom svg {
        height: 80px;
    }

    .wave-top {
        margin-bottom: -50px;
    }

    .wave-bottom {
        margin-top: -50px;
    }

    .wave-top svg,
    .wave-bottom svg {

        height: 40px;
    }

    .hero-data {
        display: contents;
    }

    .hero-content {
        margin-left: 0px
    }

    /* .hero-image {
        margin-left: -120px;
    } */

}



.hero-image {
    z-index: 50;
}

/* .hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 50;
} */

/* Optional: fine-tune for smaller screens */
@media (max-width: 768px) {
    .hero-image {
        height: 250px;
        /* adjust as needed */
        object-position: center;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 180px;
        /* fits smaller phones */
    }
}




.wave-section {
    position: relative;
    background: #f8fbff00;
    overflow: hidden;
    text-align: center;
    padding: 5rem 2rem;
}

.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* .wave-top {
    top: 0;
    transform: rotate(180deg);
} */

.wave-bottom {
    bottom: 0;
}

.section-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.4rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* .section-content .intro-text {
    color: #e8d73e;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
} */
.section-content .intro-text {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    background: #1566c196;
}

/* Features grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    flex: 1 1 280px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    color: #1976D2;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1565C0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-content h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        width: 100%;
        max-width: 400px;
    }
}






/* Products Section */
.products-section {
    position: relative;
    text-align: center;
    background: #cde2ff;
    padding: 5rem 2rem;
    overflow: hidden;
}

.products-section h2 {
    font-size: 2.4rem;
    color: #1565C0;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #ff9800;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Product grid */
.products-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex: 1 1 280px;
    max-width: 330px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    color: #1976D2;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.product-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 1rem 1.5rem;
}

/* Waves */
.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* .wave-top {
    top: 0;
    transform: rotate(180deg);
}

.wave-bottom {
    bottom: 0;
} */

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
        max-width: 400px;
    }

    .products-section h2 {
        font-size: 1.9rem;
    }
}


.outlined-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1565C0;
    /* Normal text color */
    text-align: center;
}

.outlined-title {

    /* Text fill color */
    -webkit-text-stroke: 1.5px #9d1110;
    /* Blue outline */
    text-stroke: 1.5px gray;
    /* Optional non-prefixed */
    text-shadow:
        -1px -1px 0 gray,
        1px -1px 0 gray,
        -1px 1px 0 gray,
        1px 1px 0 gray;
    /* Fallback for Firefox */
}

.outlined-text {
    color: white;
}

/* F&Q */

/* ===== FAQ Section ===== */
.faq-section {
    /* background: linear-gradient(to bottom, #ffffff, #f5f9ff); */
    background: transparent;
    /* padding: 4rem 2rem; */
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.08);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.15);
}

.faq-question {
    background: #f9fbff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: #1565C0;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e3f2fd;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #333;
    padding: 0 1.5rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 1rem 0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 1.5rem;
}

.arrow {
    font-size: 1.5rem;
    color: #1565C0;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {


    .faq-question {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}


.main-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    color: #1565C0;
    margin: 1.5rem auto;
    line-height: 1.3;
    position: relative;
    letter-spacing: 0.5px;
}

/* Elegant underline */
.main-heading::after {
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #1565C0, #42A5F5);
}



.hero-image {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: none;
    object-fit: cover;
}

/* Show desktop image on large screens */
@media (min-width: 769px) {
    .hero-image .desktop-img {
        display: block;
    }
}

/* Show mobile image on small screens */
@media (max-width: 768px) {
    .hero-image .mobile-img {
        display: block;
    }
}