﻿.body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: times new roman, times, serif;
}


.img {
    width: 100%;
    height: auto;
}

.h1 {
    font-size: 32px;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: black;
    line-height: normal;
    margin-bottom: 0px;
}


:root {
    --brand-green: #28a745;
}
/* --- Unwanted Markers and Bullets Remove cheyadaniki --- */
li::marker {
    content: none !important;
}

ul {
    list-style-type: none !important;
    padding: 0;
    margin: 0;

}

/* --- Base Styles --- */
.navbar {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    z-index: 2000 !important; /* ఇది బ్యానర్ కంటే పైన ఉండాలి */
    position:fixed; /* లేదా fixed */
    top: 0;
}
    /* డ్రాప్‌డౌన్ మెనూ బ్యానర్ పైన కనిపించడానికి */
    .navbar .dropdown-menu {
        z-index: 9999 !important; /* అన్నిటికంటే పైన ఉండాలి */
        position: absolute !important;
        display: none; /* Default గా దాచాలి */
    }

.navbar-brand {
    margin-left: 8%;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 10px 15px !important;
}

/* --- Product Item Styles (Common) --- */
.product-item {
    display: block;
    padding: 3px 10px;
    margin: 2px;
    border-radius: 8px;
    text-decoration: none !important;
    color: #333;
    transition: all 0.3s ease;
}
    .product-item p{
        font-size:15px;
    }

    .product-item:hover {
        background: #008a00 !important; /* Suvarna Green */
        color: #fff !important;
    }

        .product-item:hover p,
        .product-item:hover h5,
        .product-item:hover h6 {
            color: #fff !important;
        }
/* --- Underline Animation for non-dropdown nav items --- */
@media (min-width: 992px) {
    /* dropdown లేని ఐటమ్స్ కి మాత్రమే */
    #navbarExample .navbar-nav > .nav-item:not(.dropdown) > .nav-link {
        position: relative;
        color: #333 !important;
        transition: color 0.3s ease;
        padding: 10px 15px !important;
    }

        /* హోవర్ చేసినప్పుడు కలర్ మారడం (Optional) */
        #navbarExample .navbar-nav > .nav-item:not(.dropdown) > .nav-link:hover {
            color: #008a00 !important; /* Suvarna Green */
        }

        /* లైన్ సెటప్ */
        #navbarExample .navbar-nav > .nav-item:not(.dropdown) > .nav-link::after {
            content: "";
            position: absolute;
            bottom: 5px; /* టెక్స్ట్ కి ఎంత కింద ఉండాలో ఇక్కడ మార్చుకోవచ్చు */
            left: 50%;
            width: 0;
            height: 2px; /* లైన్ మందం */
            background-color: #008a00; /* లైన్ కలర్ */
            transition: all 0.3s ease-in-out;
            transform: translateX(-50%); /* మధ్య నుండి రావడానికి */
        }

        /* హోవర్ చేసినప్పుడు లైన్ వెడల్పు పెరగడం */
        #navbarExample .navbar-nav > .nav-item:not(.dropdown) > .nav-link:hover::after {
            width: 80%; /* లైన్ ఎంత పొడవు ఉండాలో ఇక్కడ సెట్ చేయండి */
        }
}

/* --- MOBILE VIEW (max-width: 991px) --- */
@media (max-width: 991px) {
    #mainNav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        padding: 80px 0 20px;
        transition: all 0.4s ease;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
        z-index: 1050;
        overflow-y: auto;
    }

        #mainNav.show {
            left: 0;
        }

   
    .hover-dropdown:hover > .dropdown-menu {
        display: block !important;
    }
}

/* --- DESKTOP VIEW (min-width: 992px) --- */
@media (min-width: 992px) {
    #mainNav {
        position: static !important;
        height: auto !important;
        width: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav {
        flex-direction: row !important;
        margin: 0 auto;
    }

    /* హోవర్ చేసినప్పుడు మాత్రమే డ్రాప్‌డౌన్ రావాలి */
    .hover-dropdown:hover > .dropdown-menu {
        display: block !important;
        visibility: visible;
        opacity: 1;
    }

 
   
}

/* Menu Close Button */
#menuClose {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: green;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
}
.product-item h5 {
    margin: 0; /* top & bottom gap remove */
}

.product-item p {
    margin: 0; /* safety kosam */
    font-size: 15px;
    line-height: 1.2; /* optional – text close ga undadaniki */
}

@media (max-width: 991px) {
    /* మెనూ ఐటమ్స్ కిందకి జారేలా (Slide effect) */
    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        display: block !important;
        transition: max-height 0.3s ease-out;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }

        /* క్లిక్ చేసినప్పుడు షో అవ్వడానికి */
        .dropdown-menu.show-mobile {
            max-height: 1000px; /* తగినంత హైట్ */
            padding: 10px 0 !important;
        }

    /* క్లిక్ చేసినప్పుడు ఆరో (Arrow) తిరగడానికి */
    .dropdown-toggle.open::after {
        transform: rotate(180deg);
    }

    .dropdown-toggle::after {
        transition: transform 0.3s;
    }
}
@media (max-width: 768px) {
    .dropdown-menu div {
        grid-template-columns: 1fr !important; /* Mobile lo okkati kinda okkati vasthayi */
    }
}
.background-board {
    height: auto;
    background-color: rgb(8, 31, 48);
    color: #ffffff;
    overflow-x: hidden;
    padding: 7rem 8rem;
}

@media (max-width: 991px) {

    .background-board {
        padding: 80px 20px 20px 20px !important;
    }


    .swiper-slide .row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }


    .swiper-slide .col-md-6:first-child {
        order: 1;
        padding-top: 20px;
    }


    .swiper-slide .col-md-6.text-end {
        order: 2;
        text-align: center !important;
        margin-top: 50px !important;
        margin-bottom: 30px;
    }


    .childran-content {
        position: relative !important;
        transform: none !important;
        width: 100% !important;
        left: 0 !important;
        margin-top: 30px !important;
        order: 3;
    }


    .main-bardg {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}


@media (max-width: 576px) {
    .background-board {
        padding-top: 60px !important;
    }

    .h2-large {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .main-bardg {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }
}

.content h1 {
    line-height: 1.3;
    color: #ffffff;
}

#word-switcher {
    color: #fafafa;
    transition: opacity 0.5s ease-in-out;
    display: inline-block;
    min-width: 150px;
}

.content p {
    color: #cbd5e1;
}

.list-items2 {
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
}

    .list-items2 h1 {
        color: #ffffff;
    }

    .list-items2 p {
        font-size: 15px;
        color: #f4f6f9;
        margin: 0;
    }

.doctor-image {
    margin-top: 3%;
    width: 700px;
}


.main-bardg,
.main-bardg2 {
    background-color: #ffffff;
    padding: 25px;
    margin-top: 30px;
    border-radius: 15px;
    color: #0f172a;
    align-items: center;
}

.logo-box img {
    height: 50px;
    margin: 5px 0px;
}

.marquee-container {
    overflow: hidden;
    display: flex;
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
}

    .marquee-content img {
        height: 50px;
        margin: 0 30px;
    }

y
@keyframes scroll {
    from

{
    transform: translateX(0);
}

to {
    transform: translateX(-50%);
}

}


.header-badge {
    height: 70px !important;
    width: auto;
    margin: 5px 10px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .main-bardg {
        margin-left: 2px !important;
        margin-right: 2px !important;
        padding: 20px;
    }

        .main-bardg .col-md-5 {
            text-align: center !important;
        }

    .header-badge {
        height: 60px !important;
    }
}

@media (max-width: 576px) {
    .main-bardg {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .marquee-content img {
        height: 40px;
        margin: 0 15px;
    }
}

.heding-tag {
    font-weight: bold;
}

.button-type1 {
    width: auto;
    margin-bottom: 2%;
    border-radius: 10px;
    border: 1px rgb(54, 54, 54);
    box-shadow: 1px 1px 2px;
}

    .button-type1 i {
        color: green;
        padding: 0 20px;
    }

.button-type3 {
    width: auto;
    border-radius: 10px;
    border: 1px rgb(54, 54, 54);
    box-shadow: 1px 1px 2px;
    margin-left: 45%;
}

    .button-type3 i {
        color: green;
        padding: 0 20px;
    }

.button-type3heeading {
    margin-left: 30%;
    padding-top: 1%;
}

.paragraph-content {
    gap: 10px;
}

    .paragraph-content i {
        margin-right: 5px;
        color: rgb(100, 78, 244);
    }

.heding-content i {
    color: rgb(100, 78, 244);
    padding-right: 20px;
}

/* hero Section2*/
.background-board1 {
    background-color: rgb(250, 250, 250);
    background-image: url("../images/SVG.png");
    min-height: 100vh;
    padding: 0 50px;
    width: 100%;
}
/* ================= SECTION ================= */

.why-choose-section {
    background: #fff;
    padding: 0 4.6rem;
    background-image: url("../images/SVG.png")
}

/* ================= ANIMATION ================= */
.animate-card {
    opacity: 0;
    transform: translateY(40px) scale(.95);
    transition: all .6s cubic-bezier(.22,.61,.36,1);
}

    .animate-card.active {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

/* ================= WRAPPER ================= */
.cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    max-width: 1400px;
    margin: auto;
}

/* ================= CARD BASE ================= */
.why-card {
    width: 280px;
    border-radius: 6px;
    background: #f4f5f3;
    transition: all .6s ease;
}

/* ================= HEIGHT STEPS ================= */
.card-width1,
.card-width5 {
    height: 470px;
}

.side-card .image-wrap img {
    margin-top: 4.5rem;
}

.card-width2,
.card-width4 {
    height: 530px;
}

.main-card {
    height: 620px;
    background: green;
    color: #fff;
    z-index: 2;
}

/* ================= BODY ================= */
.card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    text-align: center;
}

/* ================= ICONS ================= */
.icon-round {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.side-icon {
    width: 50px;
}

/* ================= CENTER LOGO ================= */
.main-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.main-logo-svg {
    width: 180px;
    filter: brightness(0) invert(1);
}

/* ================= TITLES ================= */
.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e4f7a;
    margin-bottom: 12px;
}

    .card-title h3 {
        color: #1e4f7a;
        font-weight: 600;
        font-size: 25px;
    }

.main-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* ================= CONTENT ================= */
.card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.main-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #eaf6ee;
}


/* ================= COUNTER ================= */
.counter-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12.8rem;
}

    .counter-overlay h1 {
        font-size: 48px;
        font-weight: 700;
        margin: 0;
    }

    .counter-overlay p {
        font-size: 13px;
        letter-spacing: 1px;
        margin: 0;
    }

.main-card .counter-overlay {
    margin-top: 25rem;
}

    .main-card .counter-overlay p {
        color: white;
    }
/* ================= RESPONSIVE ================= */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {

    .why-choose-section {
        padding: 0 2rem;
    }

    .cards-wrapper {
        flex-direction: column; /* one by one */
        align-items: center;
        gap: 24px;
        display:flex none
    }

    .why-card {
        width: 90%;
        max-width: 420px;
        height: auto; /* fixed height remove */
    }

    .card-width1,
    .card-width2,
    .card-width4,
    .card-width5,
    .main-card {
        height: auto;
    }

        .counter-overlay,
        .main-card .counter-overlay {
            position: static;
            margin-top: 20px;
        }
}

/* ---------- MOBILE (max-width: 576px) ---------- */
@media (max-width: 576px) {

    .why-choose-section {
        padding: 0 1rem;
    }

    .why-card {
        width: 100%;
    }

    .card-title h3,
    .main-title {
        font-size: 20px;
    }

    .card-desc,
    .main-desc {
        font-size: 14px;
    }

    .main-logo-svg {
        width: 140px;
    }

    .side-card .image-wrap img {
        margin-top: 1.5rem;
    }
}

/* section3 */
.about-us {
    background-image: url("../images/SVG.png");
    width: auto;
    min-height: auto;
    padding: 10px 50px;
}

.section4 {
    min-height: auto;
    background-color: rgb(8, 31, 48);
    padding: 0 10rem;

}
    .section4 .card .card-body{
        text-align:start
    }

    .borad-section {
        text-align: center
    }

.btn-button:hover {
    background-color: aliceblue;
    transform: translateX(5px);
    color: rgb(92, 90, 90);
    box-shadow: 1px 1px 0px rgb(120, 120, 120);
}

.card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card-badge {
    width: 60px;
    height: auto;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    pointer-events: none;
}

.box-1 {
    overflow: hidden;
    padding-top: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    .section4 {
        padding: 30px 20px;
        flex-wrap: wrap;
    }
}

/* service section */
.service-content {
    background-color: rgb(246, 247, 248);
    background-image: url("../images/SVG.png");
    padding: 10px 20px;
    overflow-x: hidden;
    flex-wrap: wrap;
}

.borad-section {
    text-align: center;
}

.card-shadow {
    box-shadow: 1px 1px 0px rgb(204, 204, 204);
}

.cards-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    h1 {
        font-size: 22px;
    }
}

.carousel-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    justify-content: center;
    width: 100%;
}

    .carousel-cards .card {
        flex: 0 0 22%;
        max-width: 22%;
        border-radius: 12px;
        transition: 0.3s;
    }


@media (max-width: 992px) {
    .carousel-cards .card {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

@media (max-width: 576px) {
    .carousel-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

        .carousel-cards .card {
            flex: 0 0 100%;
            max-width: 100%;
        }

    .carousel {
        padding: 10px !important;
    }

    h1 {
        font-size: 22px;
    }
}

.text-hover:hover {
    color: rgb(38, 109, 131);
    transform: translate(5px);
}

.image-hover {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: 0.3s;
}



.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bbb;
}

.carousel-indicators .active {
    background-color: #086405;
}

.carousel-indicators li:hover {
    background-color: #333;
}

.certifications-content {
    text-align: center;
    padding: 30px 200px;
}

    .certifications-content .pb-5, .py-5 {
        padding-bottom: 5rem !important;
    }

.button-logo {
    background-color: green;
    font-weight: 500;
    border-radius: 15px;
    margin-top: 80px;
}

.image-flex img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.cert-desktop {
    display: flex;
    gap: 15px;
}

.cert-mobile {
    display: none;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bbb;
}

.carousel-indicators .active {
    background-color: #086405;
}

.carousel-indicators li:hover {
    background-color: #333;
}


@media (max-width: 992px) {
    .certifications-content {
        padding: 0 20px;
    }

    .cert-desktop {
        display: none !important;
    }

    .cert-mobile {
        display: block !important;
    }

    .carousel-item img {
        width: 140px;
        height: auto;
    }

    h1 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        width: 120px;
    }
}


.section {
    text-align: center;
    padding: 60px 20px;
    height: auto;
    background-color: rgb(8, 31, 48);
    padding-bottom: 50px;
    background-image: url("../images/SVG.png");
    font-family: Segoe UI, sans-serif;
    overflow: hidden;
}

.stage {
    position: relative;
    height: 420px;
    perspective: 1200px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card3d {
    width: 400px;
    height: 420px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 0.8s ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

    .card3d img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 22px 22px 0 0;
    }

    .card3d .info {
        text-align: start;
        padding-top: 15px;
        padding-left: 15px;
    }

.left {
    transform: translate(-160%, -50%) scale(0.75) rotateY(30deg);
    opacity: .6;
    z-index: 1;
}

.center {
    transform: translate(-50%, -50%) scale(1) rotateY(0);
    opacity: 1;
    z-index: 3;
}

.right {
    transform: translate(60%, -50%) scale(0.75) rotateY(-30deg);
    opacity: .6;
    z-index: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .play-button:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: 22px solid #000;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
    }

.carousel-controls {
    position: absolute;
    bottom: 200px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    gap: 250px;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: start;
    z-index: 1000;
}

.lightbox-content {
    width: 80%;
    max-width: 900px;
    height: 600px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.lightbox iframe {
    width: 100%;
    height: 100%;
}

.lightbox .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 1100;
}

@media(max-width: 600px) {
    .lightbox-content {
        width: 40%;
        max-width: 20px;
        height: 80px;
        padding-bottom: 100%;
    }
}

@media(max-width: 600px) {
    .carousel-controls {
        position: absolute;
        bottom: -40px;
        width: 25%;
        display: flex;
        justify-content: space-between;
        gap: 5px;
        z-index: 1;
    }
}

.TRUSTEDCLIENTS-system {
    text-align: center;
    padding: 80px 80px;
}

.custom-nested-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2.5fr 1fr 1fr;
    gap: 20px;
}

.grid-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.center-stack {
    display: flex;
    flex-direction: column;
}

    .center-stack .big-logo-wrapper {
        flex-grow: 1;
        margin: 0;
    }

.logo-card {
    border: 1px solid #f0f0f0;
    height: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 200px;
}

    .logo-card.fade-out {
        opacity: 0;
        transform: scale(0.95);
    }

    .logo-card.fade-in {
        opacity: 1;
        transform: scale(1)
    }

    .logo-card img {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
    }

.big-logo-wrapper {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.main-brand-img {
    max-width: 200px;
    height: auto;
}

/* Mee patha code alaage untundi */
.case-btn1 {
    background: #009639;
    color: #fff;
    padding: 5px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-circle {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
}


@media (max-width: 768px) {
    .case-btn1 {
        margin-top: 20px;
        padding: 8px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .case-btn1 {
        margin-top: 25px;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .btn-circle {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 1100px) {
    .custom-nested-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards */
        gap: 20px;
        justify-items: center;
    }

    .grid-col {
        width: 100%;
        align-items: center;
    }

    .logo-card {
        width: 100%;
        max-width: 260px;
    }

    .center-stack {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .custom-nested-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-col {
        width: 100%;
        align-items: center;
    }

    .logo-card {
        width: 100%;
        max-width: 100%;
    }

    .center-stack {
        order: -1;
    }

    .TRUSTEDCLIENTS-system {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .clients-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px;
        justify-items: center;
    }

    .logo-card {
        width: 100% !important;
        max-width: none !important;
        height: 90px;
    }

    .center-card-fixed {
        grid-column: span 3;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .logo-card {
        height: 80px;
        padding: 8px;
    }

    .center-card-fixed {
        grid-column: span 2;
    }

    .TRUSTEDCLIENTS-system {
        padding: 40px 10px !important;
    }

    .main-brand-img {
        max-width: 140px;
    }
}


/* section9 */
.section9 {
    background-color: aliceblue;
    min-height: 100vh;
    width: auto;
    padding-top: 20px;
}

/* HERO SECTION */
.hero-section {
    background-image: url(images/SVG.png);
    background-color: rgb(8, 31, 48);
    border-radius: 18px;
    padding: 10px 50px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    line-height: 1.3;
}


.hero-text {
    font-size: 17px;
    color: #cfdfe3;
    max-width: 550px;
}

.demo-btn i {
    margin-left: 6px;
}


.hero-image img {
    max-height: 420px;
    object-fit: contain;
}


@media (max-width: 992px) {
    .hero-section {
        padding: 40px 25px;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/* section2 */
.button-label2 {
    color: #000;
    border: 1px solid #dce6f2;
    border-left: 3px solid #2f6db5;
    border-right: 3px solid #2f6db5;
    padding: 10px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

    .button-label2.ecg {
        color: #2ecc71;
        font-size: 18px;
        font-weight: 600;
    }

.button-label {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border-left: 3px solid #f4f6f9;
    border-right: 3px solid #eff0f1;
    padding: 12px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(6px);
}

    .button-label i {
        color: #2ecc71;
        font-size: 20px;
        font-weight: bold;
    }

.ul a {
    text-decoration: none;
}

.swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h2-large {
    margin-bottom: 1.75rem;
    color: white
}

.text-gradient, .text-gradient sup {
    background: linear-gradient(to right, #dce6f2, #fafafa, #eff0f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

h4tag {
    color: white;
}

element.style {
    font-size: 20px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
    line-height: 2.5rem;
    letter-spacing: -0.4px;
    
}


h4 {
    font-size: 25px;
    line-height: 2rem;
    letter-spacing: -0.2px;
}

h5 {
    font-size: 20px;
    line-height: 1.625rem;
}

h6 {
    font-size: 16px;
    line-height: 1.375rem;
}

@media (min-width: 992px) {
    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        color: white;
    }
}

.btn-solid-lg {
    display: inline-block;
    padding:10px;
    border: 1px solid #2b6997;
    border-radius: 30px;
    background-color: green;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-solid-lg i {
        padding-left: 0.2rem
    }

    .btn-solid-lg:hover {
        background-color: green;
        color: #bbb;
        text-decoration: none;
    }

.btn-solid-sm {
    display: inline-block;
    border: 1px solid #2b6997;
    border-radius: 30px;
    background-color: green;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-solid-sm:hover {
        background-color: transparent;
        color: #2b6997;
        text-decoration: none;
    }

.btn-button a {
    text-decoration: none;
    color: white
}

.count-1 {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.parant-content {
    position: relative
}

.childran-content {
    position: absolute;
    transform: translate(4rem,-5rem)
}

.card-body h2 p {
    font-size: larger;
    color: #055372;
    font-weight: bolder;
}

.card-icon {
    display: flex !important;
    align-items: center;
}




#carousel1 .item {
    display: flex;
    justify-content: center;
}


.compliance-1 {
    width: 220px; /* all cards same width */
    height: 260px; /* all cards same height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
}


.card-icons {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


    .card-icons img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.card-bodycontent {
    display: inline-flex; /* IMPORTANT */
    align-items: center;
    font-weight: 700;
    color: #000;
    will-change: transform;
    transition: transform 0.25s ease, color 0.25s ease;
}

    .card-bodycontent:hover {
        transform: translate3d(5px, 0, 0);
        color: #2B6997;
    }

-


.cards-1 .card {
    text-align: center;
    background-color: transparent;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.cards-1 .card-icon {
    height: 66px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7px;
}

.cards-1 .card-title {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    padding-left: 5px;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.cards-1 .card-body p {
    margin-bottom: 0.125rem;
    color: black;
}

.cards-1 .card-title:hover {
    padding-left: 10px;
    color: #2B6997;
}

element.style {
    margin-top: 10rem;
}

.office a, button {
    text-decoration: none;
}

.counts {
    max-width: 900px;
}


.count-1 {
    gap: 10px;
    flex-wrap: nowrap;
}

.count-content {
    white-space: nowrap;
    max-width: 70%;
}

    .count-content h3 {
        font-size: 18px;
        margin-bottom: 4px;
        font-weight: 800;
    }

    .count-content p {
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.icon-width {
    width: 45px;
    flex-shrink: 0;
}

.count-img-2 {
    width: 40px;
    height: auto;
}

.swiper-pagination {
    position: unset !important;
    margin-top: 7.5rem;
}

h4 {
    font-size: 25px;
    line-height: 2rem;
    letter-spacing: -0.2px;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0.5rem
}

.button-label2 i {
    color: green
}


.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 12px;
    max-width: 1250px;
    margin: 0 auto;
}

.logo-card {
    height: 80px;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: opacity 0.5s ease-in-out;
}

    .logo-card img {
        max-width: 100%;
        max-height: 50px;
        object-fit: contain;
    }


.center-card-fixed {
    grid-column: 3 / span 2;
    grid-row: 2 / span 2;
    z-index: 5;
}

.big-logo-wrapper {
    background: #fff;
    height: 100%;
    border: 1px solid #eef0f2;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}


.hide-logo {
    display: none;
}

.show-logo {
    display: flex;
    animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stage {
    position: relative;
    height: 450px;
    perspective: 1200px;
    overflow: hidden;
}

.card3d {
    position: absolute;
    width: 350px;
    height: 420px;
    background: #fff;
    border-radius: 22px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 1s ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

    .card3d img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 22px 22px 0 0;
    }

    .card3d .info {
        padding: 15px;
        color: #333;
    }

/* Positions */
.left {
    transform: translate(-120%, -50%) scale(0.8) rotateY(30deg);
    opacity: 0.6;
    z-index: 1;
}

.center {
    transform: translate(-50%, -50%) scale(1) rotateY(0);
    opacity: 1;
    z-index: 3;
}

.right {
    transform: translate(20%, -50%) scale(0.8) rotateY(-30deg);
    opacity: 0.6;
    z-index: 1;
}

.play-button {
    position: absolute;
    top: 110px; /* Image మధ్యలో వచ్చేలా */
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.certification-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

    .certification-logos img {
        transition: transform 0.3s ease;
    }

        .certification-logos img:hover {
            transform: scale(1.1);
        }

.Enhance {
    background-color: aliceblue;
    padding: 20px 0;
    background-image: url("../images/SVG.png")
}
/* ---------- GRID LAYOUT ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* desktop */
    gap: 25px; /* cards madhya space */
    margin-top: 30px;
}

/* Cards */
.service-card {
    border-radius: 12px;
    transition: 0.3s ease;
}

/* Icon */
.service-icon {
    width: 60px;
    height: auto;
}

/* Hover effect (optional) */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ---------- TABLET ---------- */
@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards */
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr; /* 1 card */
    }

    .service-icon {
        width: 50px;
    }

    .service-card p {
        font-size: 14px;
    }
}


/* Footer Main Section */
.footer-section {
    background-color: #040e16; /* Solid dark background from image */
    color: #cbd5e1;
    padding: 60px 0 0;
    font-size: 15px;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-section p{
    color: #cbd5e1;
}

.footer-top-row {
    border-bottom: 1px solid #1e293b;
    padding-bottom: 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    max-width: 280px;
}

.footer-tagline {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Social Icons at the Top */
.social-connect-text {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

    .social-icons a {
        width: 35px;
        height: 35px;
        background: #2a5a83; /* Blueish tone from image */
        color: #fff !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 14px;
    }

/* Headers */
.footer-section h6 {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
}

/* Lists */
.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 15px;
    }

        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.2s;
        }

            .footer-section ul li a:hover {
                color: #0a8f2d;
            }

/* Contact & Location Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.label-bold {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.contact-info-text {
    margin-bottom: 5px;
    display: block;
}

.location-title {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #0a8f2d; /* Green bar */
    padding: 15px 0;
    margin-top: 40px;
}

    .footer-bottom p, .bottom-links a {
        color: #fff;
        margin: 0;
        font-size: 15px;
    }

.bottom-links a {
    margin-left: 30px;
    text-decoration: none;
}
/* Links clickable kaani white color lo undali */
.contact-info-text a,
.location-content a {
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block; /* Clickable area correct ga undataniki */
    cursor: pointer !important; /* Hand icon chupistundi click chesetappudu */
    pointer-events: auto !important; /* Click functionality enable chestundi */
}

    /* Hover chesinappudu kuda color maaradu, underline raadu */
    .contact-info-text a:hover,
    .location-content a:hover {
        color: #ffffff !important;
        text-decoration: none !important;
    }
/* Horizontal Rule style to match the image better */
hr {
    opacity: 0.2;
    margin: 2rem 0;
}
/* HR and Sales ni side-by-side pettadaniki grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Rendu samanamaina columns */
    gap: 30px; /* HR ki Sales ki madhya gap */
}
/* --------- COMBINED RESPONSIVE CSS --------- */

/* 1. TABLET & MOBILE RESPONSIVE (1024px and below) */
@media (max-width: 1024px) {

    /* Pricing Cards Fixes */
    .pricing-wrapper {
        align-items: stretch !important;
        gap: 1.5rem;
        display: flex;
        justify-content: center;
    }

    .card-container {
        flex: 1 1 300px;
        max-width: 350px;
        display: flex;
    }

    .card {
        height: 100% !important;
        min-height: auto !important;
    }

    /* FOOTER TOP ROW - One by One Stack */
    .footer-top-row {
        flex-direction: column !important; /* Row ni Column ga marchuthundi */
        align-items: center !important; /* Annitini center chestundi */
        text-align: center !important;
        gap: 2rem !important; /* Prathi element madhya gap isthundi */
    }

    /* Logo Row */
    .footer-logo {
        margin: 0 auto !important;
        max-width: 220px;
        display: block;
    }

    /* Tagline Row */
    .footer-tagline {
        font-size: 16px;
        margin-top: 10px;
        display: block; /* Tagline separate row lo untundi */
    }

    /* Social Icons Row */
    .social-connect-text {
        display: block;
        margin: 0 0 10px 0 !important; /* Right margin teesi bottom margin ichanu */
        font-size: 16px;
    }

    .social-icons {
        justify-content: center !important;
        margin-top: 10px !important;
    }

    /* Recommended Label Center Fix */
    .button-label3 {
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 0;
        position: absolute;
    }
}

/* 2. SPECIFIC FOR MOBILE (Below 600px) */
@media (max-width: 600px) {
    .pricing-wrapper {
        display: block; /* Mobile lo cards okati kinda okati */
    }

    .card-container {
        margin-bottom: 30px;
        max-width: 100% !important;
    }

    .footer-logo {
        max-width: 180px;
    }

    .contact-grid {
        grid-template-columns: 1fr; /* Contact details vertical */
        text-align: center;
    }

    .footer-section .col-6 {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-bottom .d-flex {
        flex-direction: column !important;
        gap: 10px;
    }
}

/*model form*/
/* --- Modal Styling --- */


.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 7rem;
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1rem 1.5rem;
}

.modal-title {
    color: #008a00; /* Suvarna Green */
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

/* ఫామ్ లేబుల్స్ మరియు ఇన్పుట్స్ */
.form-group label {
    font-weight: 500;
    font-size: 14px;
    color: #444;
}

.form-control, .form-select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 15px;
}

    .form-control:focus {
        border-color: #008a00;
        box-shadow: 0 0 0 0.2rem rgba(0, 138, 0, 0.15);
    }

.mandatory {
    color: red;
    margin-left: 3px;
}


/* --- Responsive Adjustments --- */

/* Tablet View (max-width: 991px) */
@media (max-width: 991px) {
    .modal-dialog {
        max-width: 90%; /* టాబ్లెట్‌లో స్క్రీన్ కి తగ్గట్టుగా వెడల్పు */
        margin: 1.5rem auto;
    }
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem; /* మొబైల్‌లో చుట్టూ కొంచెం గ్యాప్ */
        max-width: calc(100% - 2rem);
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-header h4 {
        font-size: 1.2rem;
    }

    
}