/* ---------- GENERAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    margin: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    margin-top: 90px;
}

@media (max-width: 768px) {
    body {
        margin-top: 90px;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 90px;
    }
}
.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* ---------- CAROUSEL ---------- */
.carousel-section {
    width: 100%;
    background: #fff;
}

/* CAROUSEL ITEM */
.carousel-item {
    position: relative;
    height: 75vh;
    background: #fff;
    overflow: hidden;
}

/* MAIN IMAGE ONLY */
.carousel-img {
    width: 100%;
    height: 75vh;
    object-fit: contain;
    /* cover karna ho to change kar sakti ho */
    display: block;
}

/* LOGO TOP RIGHT */
.carousel-logo {
    position: absolute;
    top: 15px;
    right: 15px;

    height: 45px;
    /* base size */
    width: auto;

    max-height: 45px;
    /* 🔥 prevent growth */
    max-width: 120px;

    object-fit: contain;

    background: rgba(255, 255, 255, 0.95);
    padding: 3px 6px;

    border-radius: 6px;

    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .carousel-logo {
        height: 30px;
        /* 👈 same style, just smaller */
        max-height: 30px;
        width: auto;

        max-width: 90px;

        top: 8px;
        right: 8px;

        padding: 2px 5px;
        border-radius: 5px;
    }
}

/* TEXT BOTTOM LEFT */
.carousel-text {
    position: absolute;
    bottom: 20px;
    left: 20px;

    color: #fff;
    font-size: 20px;
    font-weight: 600;

    background: rgba(0, 0, 0, 0.55);
    padding: 8px 12px;
    border-radius: 6px;

    z-index: 999;
}

@media (max-width: 992px) {
    .carousel-item {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 40vh;
    }
}

/* INDICATORS (dots) */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5bbad5;
    /* green */
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .carousel-item img {
        height: 50vh;
    }
}

/* ===================================================
   GLOBAL FIX
=================================================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* ===================================================
   NAVBAR
=================================================== */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    background: #fff;

    z-index: 9999;

    padding: 18px 20px;

    transition: all 0.3s ease;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* SHRINK NAVBAR */

.navbar.shrink{
    padding: 10px 20px;
}

/* ===================================================
   CONTAINER FIX
=================================================== */

.navbar .container,
.navbar .container-fluid{
    width: 100%;
    max-width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-left: 0;
    padding-right: 0;
}

/* ===================================================
   LOGO
=================================================== */

.navbar-brand{
    margin: 0;
    padding: 0;
}

.navbar-brand img{
    height: 90px;
    width: auto;

    display: block;

    transition: 0.3s ease;
}

/* SHRINK LOGO */

.navbar.shrink .navbar-brand img{
    height: 55px;
}

/* ===================================================
   NAVBAR COLLAPSE
=================================================== */

.navbar-collapse{
    flex-grow: 0;
}

/* ===================================================
   NAV LINKS
=================================================== */

.navbar-nav{
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-link{
    position: relative;

    color: #000 !important;

    text-decoration: none;

    padding: 8px 12px;
}

/* HOVER LINE */

.navbar-nav .nav-link::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0%;

    height: 2px;

    background: #000;

    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after{
    width: 100%;
}

/* REMOVE LINE FROM DROPDOWN */

.navbar-nav .dropdown > .nav-link::after{
    display: none !important;
}

/* ===================================================
   HAMBURGER BUTTON
=================================================== */

.navbar-toggler{
    border: none !important;

    outline: none !important;

    box-shadow: none !important;

    padding: 6px 10px;

    margin-right: 0 !important;
}

.navbar-toggler:focus{
    box-shadow: none !important;
}

/* ===================================================
   DROPDOWN
=================================================== */
/* ================= DROPDOWN BASE ================= */

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* ================= DESKTOP HOVER (TOP LEVEL ONLY) ================= */

@media (min-width: 992px){
    .navbar-nav > .dropdown:hover > .dropdown-menu{
        display: block;
    }
}

/* ================= NESTED DROPDOWN ================= */

.dropdown-submenu{
    position: relative;
}

.dropdown-submenu > .dropdown-menu{
    position: absolute;
    top: 0;
    left: 100%;

    display: none;
}

.dropdown-submenu > .dropdown-menu.show{
    display: block;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 991px){
    .dropdown-menu{
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .dropdown-submenu > .dropdown-menu{
        position: static !important;
        margin-left: 10px;
    }
}

/* ===================================================
   MOBILE RESPONSIVE
=================================================== */

@media (max-width: 991px){

    /* NAVBAR */

    .navbar{
        padding: 12px 15px;
    }

    /* LOGO */

    .navbar-brand img{
        height: 65px;
    }

    .navbar.shrink .navbar-brand img{
        height: 50px;
    }

    /* COLLAPSE MENU */

    .navbar-collapse{
        background: #fff;

        width: 100%;

        margin-top: 10px;

        padding: 10px 0;

        border-radius: 10px;
    }

    /* NAV LINKS */

    .navbar-nav{
        align-items: flex-start;
    }

    .navbar-nav .nav-link{
        width: 100%;

        padding: 12px 15px;
    }

    /* DROPDOWN */

    .dropdown-menu{
        position: static !important;

        width: 100%;

        box-shadow: none;

        padding-left: 10px;
    }

    .dropdown-submenu > .dropdown-menu{
        position: static !important;

        margin-left: 10px;
    }
}

/* ===================================================
   SMALL MOBILE
=================================================== */

@media (max-width: 576px){

    .navbar{
        padding: 10px 12px;
    }

    .navbar-brand img{
        height: 55px;
    }

    .navbar.shrink .navbar-brand img{
        height: 45px;
    }
}

.hero {
    background: linear-gradient(135deg, #44c2d3, #89cfd9);
    color: #fff;
    border-radius: 20px;
    padding: 80px 50px;
    margin: 20px auto;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
}

.hero-left .tagline {
    font-weight: bold;
    color: #102f4c;
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
}

/* RIGHT SIDE */
.hero-right {
    flex: 1;
}

.hero-right .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
    max-width: 650px;
}

/* BUTTON + CONTACT */
.actions {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.actions .btn {
    background: #102f4c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.actions .btn:hover {
    background: #fff;
    color: #102f4c;
}

.contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact .icon {
    width: 50px;
    height: 50px;
    background: #102f4c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.contact .small {
    font-size: 12px;
}

.contact h3 {
    font-size: 18px;
    margin: 0;
}

/* ---------------- RESPONSIVE ---------------- */
@media(max-width: 992px) {
    .hero {
        padding: 60px 30px;
    }

    .hero-left h1 {
        font-size: 38px;
    }
}

@media(max-width: 768px) {
    .hero {
        padding: 50px 20px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .actions {
        flex-direction: column;
        gap: 15px;
    }

    .actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media(max-width: 576px) {
    .hero {
        padding: 40px 15px;
        border-radius: 15px;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left .tagline {
        font-size: 16px;
    }

    .hero-right .description {
        font-size: 14px;
    }

    .actions .btn {
        padding: 12px 20px;
    }

    .contact h3 {
        font-size: 16px;
    }
}


/* ---------- FOOTER ---------- */
.footer-section {
    background: #5bbad5;
    color: #ffffff;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    background: #ffffff20;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #2aa3d6;

}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #ffffff30;
    font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */
@media(max-width: 992px) {
    .navbar-brand img {
        height: 80px;
    }

    #mainNavbar.shrink .navbar-brand img {
        height: 50px;
    }

    .dropdown-submenu>.dropdown-menu {
        left: 0 !important;
        top: 100% !important;
    }
}

@media(max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .actions {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .carousel-item img {
        height: 250px;
    }

    .left-box,
    .right-box {
        flex: 100%;
        max-width: 100%;
        text-align: center;
    }

    .image-box img {
        width: 250px;
        height: auto;
        top: -50px;
    }
}


.feature-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* GLASS CARD */
.overlay-box {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);

    width: 340px;   /* FIX */
    min-height: 320px;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.overlay-box {
   width: 100px;
}
/* TEXT */
.title {
    color: #2aa3d6;
    font-weight: 600;
    margin-bottom: 20px;
}

.point {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.point span {
    color: #2aa3d6;
    font-weight: bold;
    font-size: 18px;
}

.point p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* 🔽 TABLET */
@media (max-width: 992px) {
    .overlay-box {
        right: 20px;
        width: 320px;
        padding: 20px;
    }

    .main-img {
        height: 420px;
    }
}

/* 🔽 MOBILE */
@media (max-width: 768px) {
    .feature-card {
        display: flex;
        flex-direction: column;
    }

    .overlay-box {
        position: relative;
        top: unset;
        right: unset;
        transform: none;
        width: 100%;
        margin-top: -60px;

        /* Slight overlap effect */
        border-radius: 15px;
    }

    .main-img {
        height: 300px;
        border-radius: 20px 20px 0 0;
    }
}

/* 🔽 SMALL MOBILE */
@media (max-width: 480px) {
    .overlay-box {
        padding: 15px;
    }

    .title {
        font-size: 18px;
    }

    .point p {
        font-size: 13px;
    }
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2aa3d6;

}

.section-subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
    max-width: 650px;
    margin: 0;
}

/* mobile spacing */
@media (max-width: 768px) {
    .section-title {
        text-align: center;
    }

    .section-subtitle {
        text-align: justify;
    }
}

.stats-section {
    background: #f7f9fb;
}

/* HOVER */
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* ICON BOX */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2f7f83, #6ba8a9);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NUMBER */
.counter {
    font-size: 42px;
    font-weight: 700;
    color: #2f7f83;
}

/* TEXT */
.stat-card p {
    color: #666;
    margin: 0;
}

.heading {
    text-align: center;
    color: #5bbad5;
    letter-spacing: 4px;
    font-size: 16px;
    margin-bottom: 60px;
}

/* Card Design */
.stat-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 25px;
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
}

/* Number */
.stat-number {
    color: #5bbad5;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Title */
.stat-title {
    color: #777;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Text */
.stat-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    max-width: 300px;
}

.hero-carousel .carousel-item {
    height: 85vh;
    background: #fff;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* full image show */
    object-position: center;
}

/* Product Card */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    background: linear-gradient(to top, rgba(96, 208, 227, 0.95), transparent);

    color: #fff;
    padding: 20px;

    transform: translateY(100%);
    transition: 0.4s ease;
}

/* Hover Effect */
.product-card:hover .overlay {
    transform: translateY(0);
}

/* Text */
.overlay h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* Card */

/* Card */
/* make all columns equal height */
.blog-section .row>div {
    display: flex;
}

/* equal card height */
.blog-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
}

/* HOVER EFFECT */
.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Image */
.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay colors */
.blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.blog-img.red::after {
    background: linear-gradient(to top, rgba(180, 50, 50, 0.7), transparent);
}

.blog-img.blue::after {
    background: linear-gradient(to top, rgba(30, 90, 180, 0.7), transparent);
}

/* Tag */
.blog-tag {
    position: absolute;
    top: 15px;
    left: -30px;
    background: #fff;
    color: #333;
    padding: 5px 40px;
    font-size: 12px;
    transform: rotate(-45deg);
    font-weight: 600;
}

/* Content */
.blog-content {
    padding: 25px;
    text-align: center;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #777;
}

/* Date */
.blog-date {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

/* videos section */

.section-title {
    color: #5bbad5;
    font-weight: 700;
    letter-spacing: 1px;
}

/* MAIN VIDEO */
.main-video img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* RIGHT CARDS */
.video-card {
    cursor: pointer;
}

.video-thumb {
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 40px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a6c8e;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .main-video img {
        height: 250px;
    }

    .video-thumb {
        width: 100px;
        height: 70px;
    }
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
    padding: 80px 0;
}

.about-section .row {
    align-items: center;
}

/* IMAGE */
.about-img {
    position: relative;
    /* 👈 MUST */
    border-radius: 20px;
    overflow: hidden;
    height: 800px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* RESPONSIVE IMAGE */
@media (max-width: 992px) {
    .about-img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about-img {
        height: 280px;
    }
}

/* =========================
   EXPERIENCE BOX (CARD)
========================= */
.experience-box {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(91, 186, 213, 0.9);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 200px;
    z-index: 10;
    /* 👈 always on top */
}

.experience-box i {
    font-size: 20px;
}

.experience-box h2 {
    font-size: 40px;
    color: #0d2c44;
    margin: 0;
}

.experience-box p {
    font-size: 14px;
}

/* MOBILE CARD FIX 🔥 */
@media(max-width: 768px) {
    .experience-box {
        position: absolute !important;
        top: 10px;
        left: 10px;

        width: 120px;
        padding: 10px;
        border-radius: 10px;
    }

    .experience-box i {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .experience-box h2 {
        font-size: 20px;
    }

    .experience-box p {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* =========================
   CONTENT
========================= */
.about-content h2 {
    color: #5bbad5;
    font-weight: 600;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

.highlight {
    border-left: 4px solid #ffc107;
    padding-left: 15px;
    margin: 20px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 14px;
    }
}

/* =========================
   HERO SECTION
========================= */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    isolation: isolate;
}

/* IMAGE */
.hero-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* DARK LAYER */
.hero-blur-layer {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* CARD / OVERLAY */
.hero-overlay {
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 650px;
    max-width: 90%;

    padding: 30px;
    background: rgba(13, 44, 68, 0.85);
    color: #fff;
    border-radius: 12px;
    text-align: center;
}

/* TEXT */
.hero-overlay h2 {
    font-size: 28px;
}

.hero-overlay p {
    font-size: 15px;
}

/* TABLET */
@media (max-width: 992px) {
    .hero-wrapper {
        height: 400px;
    }

    .hero-overlay {
        width: 80%;
    }
}

/* MOBILE FIX 🔥 (IMPORTANT) */
@media (max-width: 576px) {
    .hero-wrapper {
        height: 320px;
        /* ❗ auto mat karo */
    }

    .hero-wrapper img {
        height: 100%;
    }

    .hero-overlay {
        position: absolute !important;
        /* 🔥 FORCE SHOW */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 90%;
        padding: 15px;
    }

    .hero-overlay h2 {
        font-size: 20px;
    }

    .hero-overlay p {
        font-size: 13px;
    }
}
/* ================= CONTACT HERO ================= */

.contact-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    padding-top: 0;
    margin-top: 40px; /* FIXED */
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* OVERLAY */
.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.85) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
}

/* HERO TEXT */
.contact-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 500px;
    z-index: 2;
}

.contact-text h1 {
    font-size: 48px;
    color: #1d2b53;
    letter-spacing: 3px;
}

.contact-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* RIGHT SHAPE */
.contact-hero::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 80px 0;
    background: #f5f7fa;
}

/* CONTACT BOX */
.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;

    background: #fff;
    padding: 15px;
    margin-bottom: 15px;

    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ICON */
.contact-box .icon {
    min-width: 50px;
    height: 50px;
    background: #5bbad5;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    font-size: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .contact-text h1 {
        font-size: 36px;
    }
}

/* TABLET + MOBILE */
@media (max-width: 768px) {

    .contact-hero {
        height: 55vh;
    }

    .contact-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
        padding: 10px;
    }

    .contact-text h1 {
        font-size: 24px;
        letter-spacing: 1px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .contact-text p {
        font-size: 14px;
        color: #333;
    }

    .contact-hero::after {
        display: none;
    }

    .contact-section {
        padding: 60px 15px;
    }

    .contact-box {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-box .icon {
        min-width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .contact-hero {
        height: 50vh;
    }

    .contact-text h1 {
        font-size: 22px;
    }

    .contact-text p {
        font-size: 13px;
    }
}
/* FORM CARD */
.form-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* INPUT STYLE */
.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #ccc;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #5bbad5;
}

/* BUTTON */
.btn-info {
    background: #5bbad5;
    border: none;
    padding: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .form-card {
        padding: 20px;
    }

    .contact-box {
        flex-direction: row;
    }
}

/* projects */

.project {
    background: #fff;
    padding-top: 60px;
    color: #5bbad5;
}

/* CARD STYLE */
.project {
    background: #fff;
    padding-top: 60px;
    color: #5bbad5;
}

/* CARD STYLE */
.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.project-img,
.project-img1 {
    width: 100%;
    height: auto;
    /* 🔥 FIX */
    max-height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* CONTENT */
.project-body {
    padding: 30px;
    /* 🔥 reduced */
}

.project-body p {
    font-size: 15px;
    color: #555;
}

/* BUTTON */
.read-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: #0dcaf0;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.read-btn:hover {
    background: #0aa2c0;
}

@media (max-width: 768px) {

    .project {
        padding-top: 40px;
    }

    .project-body {
        padding: 15px;
    }

    .project-body p {
        font-size: 14px;
    }

    .project-img,
    .project-img1 {
        max-height: 220px;
        /* 🔥 mobile height control */
    }
}

/* news */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.articlle {
    color: #0aa2c0;
    padding-top: 100px;
}

/* SECTION */
.blog-section {
    padding: 40px 20px;

}

.new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 80px;
}

/* CARD */
.blog-card {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.blog-card img {
    width: 100%;
    height: 250px;
    /* important: fixed height use karo */
    object-fit: cover;
    display: block;
}

/* CONTENT */
.content {
    padding: 20px;
}

.content h2 {
    font-size: 20px;
    color: #777;
    line-height: 1.4;
    margin-bottom: 10px;
}

.category {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #4fb3d8;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn:hover {
    background: #3498db;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .new {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .new {
        grid-template-columns: 1fr;
    }

    .content h2 {
        font-size: 18px;
    }
}

.article {
    text-align: center;
    padding: 40px 15px;
}

.article-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    margin-top: 60px;
}

.article-image {
    display: flex;
    justify-content: center;
}

.article-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    /* 🔥 IMPORTANT FIX */
    border-radius: 12px;
}

/* CONTENT SECTION */
.article-container {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

/* ARTICLE CARD */
.article-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    margin-top: 100px;
    margin-bottom: 30px;
}

.article-card:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
.article-card h2 {
    margin-top: 25px;
    font-weight: 700;
    color: #0d1b2a;
    position: relative;
}

/* UNDERLINE EFFECT */
.article-card h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #4fb3d8;
    display: block;
    margin-top: 8px;
    border-radius: 5px;
}

/* PARAGRAPH */
.article-card p {
    color: #555;
    line-height: 1.8;
    margin-top: 10px;
    font-size: 16px;
}

/* LIST */
.article-card ul {
    padding-left: 0;
    margin-top: 15px;
}

.article-card ul li {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #444;
    font-size: 15px;
}

/* CUSTOM BULLET */
.article-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4fb3d8;
    font-weight: bold;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .article-hero {
        height: 45vh;
    }

    .article-hero-text h1 {
        font-size: 26px;
    }

    .article-card {
        padding: 25px;
    }
}

.content-block {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.content-title {
    font-size: 26px;
    margin-bottom: 10px;
    padding-top: 100px;
}

/* 👇 IMAGE KO CHOTA KAR DIYA */
.content-media img {
    width: 100%;
    max-height: 300px;
    /* 👈 yahan control hai size ka */
    object-fit: contain;
    display: block;
    margin: auto;
}

/* 👇 DESCRIPTION BILKUL NEECHAY */
.content-box {
    margin-top: 10px;
}

.content-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* clients css */


.section-title {
    font-weight: 700;
    font-size: 32px;
}

/* ✅ FIXED SCROLL */
.scroll-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-y: hidden;
    max-width: 100%;
    scroll-behavior: smooth;
    width: 100%;
    padding-bottom: 10px;
}

/* hide scrollbar */
.scroll-container::-webkit-scrollbar {
    display: none;
}

/* CARD FIX */
.health-card {
    width: 170px;
    height: 170px;

    flex: 0 0 auto;
    /* 🔥 MUST */

    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;

    transition: transform 0.2s ease;
}

.health-card:hover {
    transform: scale(1.05);
}

/* IMAGE */
.health-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* TITLE */
.card-title {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    font-size: 14px;
}

/* BUTTONS (optional) */
.scroll-btn {
    border: none;
    background: #0d6efd;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.btn-group-custom {
    display: flex;
    gap: 10px;
}

.content-MRI {
    font-size: 17px;
}


.inquiry-btn {
    background: #007bff;
    /* medical blue */
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* hover effect */
.inquiry-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* click effect */
.inquiry-btn:active {
    transform: scale(0.98);
}

/* mobile responsive */
@media (max-width: 768px) {
    .inquiry-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px;
    }
}

/* BACKDROP */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* BOX */
.modal-box {
    background: #fff;
    width: 90%;
    max-width: 450px;
    margin: 8% auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

/* TITLE */
.modal-box h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

/* INPUTS + SELECT */
.modal-box input,
.modal-box select,
.modal-box textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* FOCUS EFFECT */
.modal-box input:focus,
.modal-box select:focus,
.modal-box textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

/* TEXTAREA */
.modal-box textarea {
    height: 90px;
    resize: none;
}

/* BUTTON */
.modal-box button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-box button:hover {
    background: #0056b3;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    animation: scaleUp 0.3s ease;
}

.checkmark {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 10px;
}

@keyframes scaleUp {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.content-images{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.img-box{
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.img-box img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* MOBILE */
@media(max-width: 768px){
    .content-images{
        flex-direction: column;
    }
}

/* SECTION */
.scroll-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: start;
    margin-top: 30px;
}

/* CARD WRAPPER */
.scroll-container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* CIRCLE LOGO */
.health-card {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e5e5e5;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.health-card:hover {
    transform: scale(1.05);
}

/* IMAGE */
.health-card img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

/* NAME */
.card-title {
    margin-top: 12px;
    width: 150px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    word-break: break-word;
}

/* LARGE TABLET */
@media (max-width: 1200px) {
    .scroll-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* TABLET */
@media (max-width: 768px) {
    .scroll-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .health-card {
        width: 140px;
        height: 140px;
    }

    .card-title {
        width: 140px;
        font-size: 12px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .scroll-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .health-card {
        width: 120px;
        height: 120px;
    }

    .card-title {
        width: 120px;
        font-size: 11px;
        line-height: 1.3;
    }
}