@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

}

/* Headings */
/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
} */

:root {
    --green: #00B0EC;
    --darkblue: #001338;
    --white: #FFF;
    --textblue: #001338;
}

/* ================= NAVBAR ================= */
.custom-navbar {
    background: var(--darkblue);
    background-color: var(--white);

}

.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
}

.navbar-nav {
    position: relative;
}

.nav-link {
    color: var(--white) !important;
    color: var(--textblue) !important;
    padding: 12px 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--green) !important;
}

.nav-link.active {
    color: var(--green) !important;
}

/* Animated underline */
.nav-underline {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: var(--green);
    width: 0;
    left: 0;
    transition: all 0.4s ease;
    border-radius: 10px;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    padding: 10px 18px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--green);
    color: var(--white) !important;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    height: 87vh;
    height: 89vh;
}

.hero-slider .swiper-slide {
    height: 88vh;
    height: 89vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-slider .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            #00133890, #001338a2);
    z-index: -1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    animation-delay: 0.4s;
}

.hero-content p {
    max-width: 600px;
    opacity: 0.9;
    font-size: 18px;
    animation-delay: 0.7s;
}

.hero-content .btn {
    background: var(--green);
    border: none;
    padding: 14px 34px;
    font-weight: 600;
    animation-delay: 1s;
    color: #FFF;
}

/* Text animation */
.swiper-slide-active .animate {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 330px;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--green);
    opacity: 1;
}

/* ================= FOOTER ================= */
.site-footer {
    background: var(--darkblue);
    color: var(--white);
    padding: 70px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.site-footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.site-footer h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--green);
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}

.site-footer p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.site-footer ul li a:hover {
    color: var(--green);
    padding-left: 5px;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .site-footer {
        text-align: center;
    }

    .site-footer .row>div {
        margin-bottom: 30px;
    }

    .site-footer ul {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 50px 15px 20px;
    }

    .site-footer h5 {
        font-size: 16px;
    }

    .site-footer p,
    .site-footer ul li a {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

.site-footer i {
    margin-right: 8px;
    color: var(--green);
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: var(--green);
}

/* ===== Footer About Social Icons ===== */
.footer-about-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-about-social .social-icon {
    display: inline-flex;
    /* Flex for perfect center */
    align-items: center;
    /* Vertical center */
    justify-content: center;
    /* Horizontal center */
    width: 40px;
    height: 40px;
    background: var(--white);
    /* Circle background */
    color: var(--darkblue);
    /* Default icon color */
    border-radius: 50%;
    /* Circle */
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    line-height: 0;
    /* Remove extra spacing */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    /* subtle shadow */
}

/* Icon inside */
.footer-about-social .social-icon i {
    display: block;
    /* width: 100%;
    height: 100%; */
    text-align: center;
    margin: 0px !important;
}

/* Hover effect - float + color change */
.footer-about-social .social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Individual social color on hover */
.footer-about-social .social-facebook i:hover {
    color: #3b5998;
}

.footer-about-social .social-instagram i:hover {
    color: #e1306c;
}

.footer-about-social .social-linkedin i:hover {
    color: #0077b5 !important;
}

.footer-about-social .social-youtube i:hover {
    color: #ff0000;
}

@media(max-width:720px) {
    .site-footer h5::after {
        content: "";
        width: 50px;
        /* line width */
        height: 3px;
        /* line height */
        background: var(--green);
        position: absolute;
        left: 50%;
        /* horizontal center */
        bottom: -8px;
        /* distance from heading */
        transform: translateX(-50%);
        /* perfect center */
        border-radius: 2px;
    }

    .footer-about-social {
        display: flex;
        justify-content: center !important;
    }

}




/* Optional responsive tweak */
@media (max-width: 576px) {
    .footer-about-social {
        justify-content: flex-start;
    }

    .footer-about-social .social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}


/* ===== About Section ===== */
.about-section {
    background: #f9f9f9;
}

.about-section .main-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--darkblue);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about-section .main-heading::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--green);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
    transition: transform 0.5s ease;
}

.about-img-wrapper img:hover {
    transform: scale(1.05);
}

.about-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.about-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.about-text ul li {
    margin-bottom: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .about-section .main-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-section .main-heading {
        font-size: 24px;
    }
}





.main-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--darkblue);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.main-heading::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--green);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .main-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 24px;
    }
}



/* ================= WHY CHOOSE US ================= */

.why-choose-section {
    background: url("../banner/ban-1.png") center/cover fixed;
    /* padding: 100px 0; */
    position: relative;
}

.why-overlay {
    background: rgba(0, 19, 56, 0.75);
    padding: 100px 0;
}

/* Card */
.why-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Icon */
.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #A4D039;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: #001338;
    transform: rotate(10deg) scale(1.1);
}

/* Text */
.why-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #001338;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Button */
.why-btn {
    background: #A4D039;
    color: #fff;
    padding: 12px 34px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.why-btn:hover {
    background: #fff;
    color: #001338;
}

/* Responsive */
@media (max-width: 768px) {

    .why-choose-section,
    .why-overlay {
        /* padding: 70px 0; */
    }

    .navbar-brand img {
        width: 200px;
    }
}


/* ================= STATS SECTION ================= */

.stats-section {
    padding: 90px 0;
    background: linear-gradient(120deg, #f6fbf8, #eef5f1);
}

/* Card */
.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.stat-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: #A4D039;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #001338;
    transform: scale(1.1) rotate(5deg);
}

/* Counter */
.stat-card h3 {
    font-size: 40px;
    font-weight: 700;
    color: #001338;
    margin-bottom: 8px;
}

/* Text */
.stat-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-card {
        padding: 30px 20px;
    }

    .stat-card h3 {
        font-size: 34px;
    }
}


/* ================= PRODUCT GALLERY SWIPER ================= */

.product-gallery-section {
    padding: 90px 0;
    background: #f9fbfa;
}

/* Swiper spacing */
.productGallerySwiper {
    padding-bottom: 50px;
}

/* Slide card */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 19, 56, 0.9), rgba(0, 19, 56, 0.25));
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Pagination dots */
.productGallerySwiper .swiper-pagination-bullet {
    background: #A4D039;
    opacity: 0.4;
}

.productGallerySwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-item img {
        height: 220px;
    }
}


/* ================= CTA BANNER ================= */

.cta-banner {
    position: relative;
    padding: 80px 0;
    background: url('../banner/banner-1.jpg') center/cover no-repeat fixed;

    background: url('../banner/cta-ban-1.png') center/cover no-repeat fixed;
    color: #fff;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 0, 80, 0.663), rgba(41, 0, 60, 0.674));
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 17px;
    opacity: 0.95;
    max-width: 650px;
}

/* Buttons */
.cta-btn-primary,
.cta-btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.35s ease;
    margin-left: 10px;
}

.cta-btn-primary {
    background: #A4D039;
    color: #fff;
    text-decoration: none;
}

.cta-btn-primary:hover {
    background: #00b14f;
    color: #fff;
}

.cta-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}

.cta-btn-outline:hover {
    background: #fff;
    color: #00502d;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 30px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        margin-left: 0;
        margin-right: 10px;
        margin-top: 10px;
    }
}

.faq-section {
    padding: 70px 0;
    padding-top: 0px;
    background: #f9f9f9;
    /* background: url(../banner/banner-right.jpg); */
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--darkblue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(0, 147, 62, 0.05);
}

.faq-icon {
    font-size: 22px;
    color: var(--green);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 22px;
}

.faq-answer p {
    margin: 15px 0 20px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Floating CTA Wrapper */
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common Button Style */
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1ebe5b;
}

/* Scroll To Top Button */
.scroll-top-btn {
    background: var(--darkblue);
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn:hover {
    background: var(--green);
    transform: translateY(-4px);
}

/* Show Scroll Button */
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Adjust */
@media (max-width: 576px) {
    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}


.result-marquee {
    background: var(--white);
    padding: 14px 0;
    overflow: hidden;
}

.result-container {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
}

.result-title {
    background: var(--green);
    color: var(--white);
    padding: 10px 22px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 30px 30px 0;
    flex-shrink: 0;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 45px;
    animation: marqueeMove 18s linear infinite;
}

.marquee-content span {
    color: var(--textblue);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    /* 🔥 ICON & TEXT GAP */
}

/* Check icon */
.marquee-content span::before {
    content: "✔";
    color: var(--green);
    font-size: 14px;
}

/* Hover stop marquee */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Animation */
@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.aloe-float-section {
    position: fixed;
    right: -10px;
    bottom: 148px;
    z-index: 999;
    padding: 0;
    pointer-events: none;
    /* agar click nahi chahiye */
}

/* wrapper */
.aloe-wrapper {
    position: relative;
    display: inline-block;
}

/* MAIN IMAGE */
.aloe-img {
    width: 90px;
    /* floating icon ke liye chhota */
    animation: floatAloe 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
}

/* FLOAT ANIMATION */
@keyframes floatAloe {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

/* GLOW EFFECT */
.aloe-wrapper::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 147, 62, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(25px);
    z-index: -1;
}

/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
    position: relative;
    padding: 80px 0;
    background: url("") center/cover no-repeat;
    color: var(--text-white);

    /* IMAGE + GRADIENT OVERLAY */
    background:
        linear-gradient(120deg,
            rgba(118, 0, 147, 0.477),
            rgba(0, 19, 56, 0.815)),
        url("../banner/ban-1.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media(max-width:720px) {
    .breadcrumb-section {
        background-position: left;
    }
}


/* Dark overlay */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(15, 15, 15, 0.7); */
}

/* Content */
.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

/* Title */
.breadcrumb-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

/* Breadcrumb nav */
.breadcrumb-nav {
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--white);
}

.breadcrumb-nav a {
    color: var(--text-white);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--brand-red);
}

.breadcrumb-nav span {
    margin: 0 6px;
    color: #ccc;
}

.breadcrumb-nav .active {
    color: var(--brand-red);
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 30px;
    }

    .breadcrumb-section {
        padding: 60px 0;
    }
}

.why-choose-simple {
    padding: 80px 0;
    background: #ffffff;
}

.why-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--textblue);
    margin-bottom: 40px;
}

.why-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--green);
    margin: 35px 0 15px;
}

.why-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.contact-page {
    padding: 80px 0;
    background: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--textblue);
}

.contact-header p {
    max-width: 800px;
    margin: 15px auto 0;
    font-size: 16px;
    line-height: 1.7;
}

.contact-details h4 {
    color: var(--green);
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.enquiry-form label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--green);
}

.product-checkbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
    margin-top: 12px;
}

.product-checkbox label {
    display: flex;
    align-items: center;
    /* 🔥 MAIN FIX */
    gap: 8px;
    /* checkbox & text gap */
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
}

.product-checkbox input[type="checkbox"] {
    margin: 0;
    /* remove default offset */
    width: 16px;
    height: 16px;
    accent-color: var(--green);
    /* modern checkbox color */
    flex-shrink: 0;
    /* text push nahi karega */
}

@media (max-width: 576px) {
    .product-checkbox {
        grid-template-columns: 1fr;
    }
}


.submit-btn {
    background: var(--green);
    color: var(--white);
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--darkblue);
}


.academics-page {
    padding: 70px 0;
    background: #f8faf8;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d1b2a;
}

.academic-block {
    margin-bottom: 35px;
}

.academic-block h2,
.academic-block h3,
.academic-block h5 {
    color: #0a7c3a;
    font-weight: 600;
    margin-bottom: 12px;
}

.academic-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.academic-block ul {
    padding-left: 18px;
}

.academic-block ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.disease-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .disease-grid {
        grid-template-columns: 1fr;
    }
}

/* alll product page css  */
.product-page {
    padding: 70px 0;
    background: #f9fbf9;
}

.product-top {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.product-image img {
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.product-info h1 {
    font-size: 34px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 10px;
}

.tagline {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.info-block {
    margin-bottom: 20px;
}

.info-block h3 {
    color: #0a7c3a;
    font-size: 18px;
    margin-bottom: 8px;
}

.info-block ul {
    padding-left: 18px;
}

.info-block ul li {
    font-size: 15px;
    margin-bottom: 6px;
}

.product-content h2 {
    font-size: 24px;
    color: #0a7c3a;
    margin: 35px 0 15px;
}

.product-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.benefits-list {
    padding-left: 18px;
}

.benefits-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

.highlight-text {
    margin-top: 30px;
    padding: 20px;
    background: #e9f5ee;
    border-left: 4px solid #0a7c3a;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .product-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-image img {
        margin: auto;
    }
}

#health-care {
    scroll-margin-top: 250px;
    /* navbar height se thoda zyada */
}

#home-pro {
    scroll-margin-top: 120px;
    /* navbar height se thoda zyada */
}


.welcome-toast {
    position: fixed;
    top: 120px;
    /* sticky navbar ke niche */
    right: -380px;
    /* start outside screen */
    width: 320px;
    background: var(--darkblue);
    color: var(--white);
    padding: 16px 20px;
    border-left: 5px solid var(--green);
    border-radius: 8px 0 0 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: right 0.6s ease;
}

.welcome-toast strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.welcome-toast p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.4;
}

.welcome-toast.show {
    right: 20px;
}


.product-info ul li::marker {
    color: #A4D039;
    /* bullet ka color (example green) */
}


.benefits-list li::marker {
    color: #A4D039;
    /* bullet ka color (example green) */
}

@media(min-width:1230px) {
    .nav-link {
        font-size: 15px !important;

    }
}

a {
    text-decoration: none !important;
}

/*  M section*/

.mission-section {
    background: #f8fbff;
}

.mission-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border-top: 4px solid var(--green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-card h4 {
    color: var(--darkblue);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-card ul {
    padding-left: 18px;
    margin: 0;
}

.mission-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    position: relative;
}

.mission-card ul li::marker {
    color: var(--green);
}

/* section 2 new  */

.proprietor-section {
    background: #f8fbff;
}

.proprietor-img {
    border-radius: 15px;
    max-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.proprietor-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.proprietor-card h3 {
    color: var(--darkblue);
    font-weight: 600;
    margin-bottom: 5px;
}

.designation {
    color: var(--green);
    font-weight: 500;
    margin-bottom: 15px;
}

.proprietor-card p {
    font-size: 15px;
    color: #333;
}

.btn-read {
    background: var(--darkblue);

    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-read:hover {
    background: var(--green);
}

.linkedin-btn {
    display: inline-block;
    color: var(--darkblue);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid var(--green);
    transition: 0.3s;
}

.linkedin-btn:hover {
    color: var(--green);
}

/* new css */
.biotech-section {
    background: #ffffff;
}

.biotech-img {
    border-radius: 15px;
    max-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.biotech-card {
    background: #f8fbff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.biotech-card:hover {
    transform: translateY(-6px);
}

.biotech-card h3 {
    color: var(--darkblue);
    font-weight: 600;
    margin-bottom: 5px;
}

.designation {
    color: var(--green);
    font-weight: 500;
    margin-bottom: 15px;
}

.biotech-card p {
    font-size: 15px;
    color: #333;
}

.btn-read {
    display: inline-block;
    margin-top: 10px;
    background: var(--darkblue);

    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-read:hover {
    background: var(--green);
}

/* css */

.core-services {
    background: #f8fbff;
}

.core-content p {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
}

.btn-core {
    display: inline-block;
    margin-top: 10px;
    background: var(--darkblue);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-core:hover {
    background: var(--green);
}

.core-img-box {
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.core-img {
    border-radius: 10px;
    max-height: 350px;
    object-fit: contain;
}

/* css */


.products-section {
    background: #ffffff;
}

.product-card {
    display: block;
    text-decoration: none;
    background: #f8fbff;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    text-align: center;
    border-top: 4px solid var(--green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: var(--darkblue);
}

.product-card:hover h4,
.product-card:hover p {
    color: #fff;
}

.product-card h4 {
    color: var(--darkblue);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-card p {
    font-size: 14px;
    color: #555;
}



.service-row {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    /* आइटम के बीच की दूरी */
    padding-left: 5px;
    /* मोबाइल पर गोले को जगह देने के लिए */
}

/* गोले का स्टाइल */
.circle {
    position: absolute;
    left: -8px;
    /* स्ट्रिप के बाहर */
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ddd;
    /* हल्का बॉर्डर */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    /* टेक्स्ट से ऊपर */
}

/* रंगीन स्ट्रिप का स्टाइल */
.service-content {
    background-color: #fff;
    /* डिफ़ॉल्ट */
    padding: 10px 15px 10px 45px;
    /* गोले के लिए बायीं ओर जगह */
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* टेक्स्ट को बाहर जाने से रोकने के लिए */
}

/* टेक्स्ट का स्टाइल - इमेज जैसा ही */
.service-text {
    font-weight: 400;
    /* हल्का फ़ॉन्ट */
    margin: 0;
    font-size: 0.95rem;
    /* रेस्पॉन्सिव टेक्स्ट */
    color: #fff;
    /* रंगीन बैकग्राउंड पर सफ़ेद टेक्स्ट */
    word-wrap: break-word;
    /* मोबाइल पर लंबे शब्दों को तोड़ने के लिए */
}

/* हर स्ट्रिप के लिए अलग-अलग रंग */
.item-1 .service-content {
    background-color: #f3db56;
}

/* Yellow */
.item-2 .service-content {
    background-color: #f7a941;
}

/* Orange */
.item-3 .service-content {
    background-color: #f77b84;
}

/* Pink */
.item-4 .service-content {
    background-color: #6687ca;
}

/* Blue */
.item-5 .service-content {
    background-color: #5ab8ab;
}

/* Cyan */
.item-6 .service-content {
    background-color: #77b886;
}

/* Green */

/* मोबाइल पर टेक्स्ट को और साफ़ दिखाने के लिए छोटा फ़ॉन्ट */
@media (max-width: 576px) {
    .service-text {
        font-size: 0.85rem;
    }

    .service-content {
        padding: 8px 10px 8px 40px;
    }

    .circle {
        width: 30px;
        height: 30px;
        left: -3px;
    }
}








/* about card section */



:root {
    --yellow: #f7d54d;
    --orange: #f6ac19;
    --pink: #f08c86;
    --purple: #b1b9db;
    --green2: #a9d9c6;
}

/* body {
            font-family: 'Outfit', sans-serif;
            background-color: #f0f2f5;
            padding-top: 50px;
        } */

/* 5 Column Setup for Desktop */
@media (min-width: 992px) {
    .col-lg-2-custom {
        flex: 0 0 auto;
        width: 20%;
    }
}

.category-card {
    position: relative;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    height: 450px;
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Image Section */
.img-wrapper {
    height: 200px;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    transition: all 0.5s ease;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Section */
.content-wrapper {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.content-wrapper h6 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.4s ease;
}

/* Description (Initially Hidden) */
.desc-text {
    font-size: 0.9rem;
    /* opacity: 0; */
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: #555;
    line-height: 1.5;
}

/* Hover Effects */
.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-card:hover .img-wrapper {
    height: 160px;
}

.category-card:hover .desc-text {
    opacity: 1;
    transform: translateY(0);
    color: #000000;
}

.category-card h6 {
    color: #fff;
}

.category-card .desc-text {
    color: #FFF;
}

.category-card .desc-text:hover {
    color: #333;
}

.category-card:hover h6 {
    color: #333;
    transform: scale(1.1);
}

.card-yellow:hover {
    background-color: #FFF;
}

.card-orange:hover {
    background-color: #FFF;
}

.card-pink:hover {
    background-color: #FFF;
}

.card-purple:hover {
    background-color: #FFF;
}

.card-green:hover {
    background-color: #FFF;
}

/* Dynamic Background Colors on Hover */
.card-yellow {
    background-color: var(--yellow);
}

.card-orange {
    background-color: var(--orange);
}

.card-pink {
    background-color: var(--pink);
}

.card-purple {
    background-color: var(--purple);
}

.card-green {
    background-color: var(--green2);
}

/* Icon or Badge on Image */
.overlay-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 8px;
    border-radius: 50%;
    font-size: 12px;
    z-index: 3;
}


/*---------------------- deaul section ---------------------- */

.dual-section .left-box {
    background: #00B0EC;
    /* green (your variable) */
    color: #ffffff;
}

.dual-section .right-box {
    background: #001338;
    /* dark blue */
    color: #ffffff;
}

.dual-section h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.dual-section p {
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .dual-section .content {
        padding: 30px 20px;
    }
     .hero-content h1{
             font-size: 25px;
    }
      .hero-content p{
             font-size: 15px;
    }
}