﻿.body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

@font-face {
    font-family: 'deca-serif';
    src: url('../fonts/deca-serif-new-webfont.woff') format('woff');
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans.ttf') format('truetype');
}

h1, h2, h3, h5 {
    font-family: 'deca-serif', sans-serif !important;
}

.img {
    width: 100%;
    height: auto;
}


p {
    font-family: "IBM Plex Sans", Sans-serif ;
    font-size: 18px !important;
    font-weight: 400;
    line-height: 25px;
    color: var(--e-global-color-secondary);
}

.a {
    font-family: "IBM Plex Sans", Sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

:root {
    --brand-green: #28a745;
}


.navbar-nav li{
    list-style:none;
}
/* ================= NAVBAR BASE ================= */
.navbar {
    background-color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 10px 0 !important;
}

/* ================= 3 SECTION LAYOUT ================= */
.logo-section {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-section {
    flex: 2;
    display: flex;
    justify-content: center;
}

.btn-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* ================= LOGO (3D FIXED PERFECT) ================= */
#wrapper {
    perspective: 1000px;
    display: flex;
    align-items: center;
}

.box-area {
    width: 50px;
    height: 50px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateBox 8s linear infinite;
}

.box {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Perfect cube faces */
    .box:nth-child(1) {
        transform: rotateY(0deg) translateZ(25px);
    }

    .box:nth-child(2) {
        transform: rotateY(90deg) translateZ(25px);
    }

    .box:nth-child(3) {
        transform: rotateY(180deg) translateZ(25px);
    }

    .box:nth-child(4) {
        transform: rotateY(-90deg) translateZ(25px);
    }

@keyframes rotateBox {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* Fixed logo beside cube */
.img-align-width {
    margin-left: 10px;
}

    .img-align-width img {
        max-width: 130px;
        height: auto;
    }

/* ================= NAV LINKS ================= */
.navbar-nav {
    gap: 5px; /* 🔥 gap reduce */
}

    .navbar-nav .nav-link {
        font-family: "IBM Plex Sans", Sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #000 !important;
        padding: 6px 10px !important; /* 🔥 spacing reduce */
        white-space: nowrap;
    }

.nav-link.active {
    color: #008a00 !important;
}

/* ================= DROPDOWN ================= */


/* 🔥 HOVER OPEN FIX */
.hover-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* ================= BUTTON ================= */
.case-btn1 {
    background: #008a00;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-family: "IBM Plex Sans", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

    .case-btn1 h3 {
        margin: 0 !important;
        font-size: 27px !important;
        display: flex;
        align-items: center;
    }

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    #mainNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 60px 20px;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1050;
        display: block !important;
    }

        #mainNav.show {
            right: 0;
        }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

        .navbar-nav .nav-link {
            padding: 10px 0 !important;
            font-size: 18px;
        }

    .btn-section {
        margin-top: 20px;
        width: 100%;
    }

    .case-btn1 {
   
        justify-content: space-between;
    }
}

/* ================= TABLET FIX ================= */
@media (max-width: 1205px) and (min-width: 992px) {

    .box-area {
        width: 40px;
        height: 40px;
    }

    .box {
        width: 40px;
        height: 40px;
    }

        .box:nth-child(1) {
            transform: rotateY(0deg) translateZ(20px);
        }

        .box:nth-child(2) {
            transform: rotateY(90deg) translateZ(20px);
        }

        .box:nth-child(3) {
            transform: rotateY(180deg) translateZ(20px);
        }

        .box:nth-child(4) {
            transform: rotateY(-90deg) translateZ(20px);
        }

    .img-align-width img {
        max-width: 110px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0 8px !important;
    }

    .case-btn1 {
        padding: 6px 14px;
        font-size: 13px;
    }
    .product-desc{
        margin: 0px 0px 0px 0px;
        color: #4d4d4d;
        font-size: 14px !important;
        white-space:normal !important;
    }
}
/* Mega Menu Width and Padding */
.mega-menu-content {
    min-width: 740px; /* డ్రాప్ డౌన్ వెడల్పు కోసం */
    border-radius: 4px;
    left: 50% !important;
    transform: translateX(-20%) !important; /* స్క్రీన్ బట్టి అడ్జస్ట్ చేయండి */
}

/* Product Item Styling */
.product-item {
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    transition: background 0.3s ease;
}

    .product-item:hover {
        background-color: green;
        text-decoration: none;
        border-radius: 2px;
        /* margin: 2px 3px; */
        width: 100%;
    }
   

/* Title Styling (HIMS, EMR, etc.) */
.product-title {
    color: #161616;
    font-family: "deca-serif", Sans-serif;
    font-size: 16px !important;
    line-height: 16px;
    margin: 0px 0px 0px 0px;
   
}

/* Description Styling (Hospital Information...) */
.product-desc {
    margin: 0px 0px 0px 0px;
    color: #4d4d4d;
    font-size: 14px !important;
    white-space:nowrap;
}

/* Hover effects for text */
.product-item:hover .product-title {
    color: #fcfdfe; /* మీకు నచ్చిన హోవర్ కలర్ ఇచ్చుకోండి */
}
.product-item:hover .product-desc {
    color: #fcfdfe; /* మీకు నచ్చిన హోవర్ కలర్ ఇచ్చుకోండి */
}
.navbar .dropdown-menu {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
    width:auto;
}


/* Responsive fix */
@media (max-width: 991px) {
    .mega-menu-content {
        min-width: 100%;
        transform: none !important;
        left: 0 !important;
        overflow:auto;
        height:400px !important;
    }
    .product-desc {
        margin: 0px 0px 0px 0px;
        color: #4d4d4d;
        font-size: 14px !important;
        white-space: normal !important;
    }
}
/*--------- End Navbar Styles ---------*/

.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: #2b6997;
        font-size: 18px;
    }

.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: 1300px;
    margin: auto;
}
.card-bottom h3 {
    font-size: 22px !important;
   color: #2b6997;
}
.card-bottom p{
    font-size:15px !important;
}
/* ================= 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: start;
}

/* ================= 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 h3 {
        color: #1e4f7a;
        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: 240px;
}

    .counter-overlay h1 {
        font-size: 38px;
        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 7rem;

}
    .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;
    }

   

    h1 {
        font-size: 22px;
    }
}


}


.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;
    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:2rem 8rem;
}

.custom-nested-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2.5fr 1fr 1fr;
    gap: 20px;
    overflow-x:hidden
}

.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;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: opacity 0.8s ease, transform 0.8s ease;
   
}

    .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;
}



@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: 18px;
    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: .5rem;
    border-radius: 8px;
    font-family: "IBM Plex Sans", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #161616;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: default !important;
    text-transform: uppercase;
}
    .button-label2 i {
        color: green
    }
    .button-label2 p{
        margin:0;
    }

    .button-label {
        /* ... migatha styles anni ikkada untayi ... */

        cursor: default !important; /* Hand symbol ni normal arrow la marchesthundhi */
        pointer-events: none; /* Mouse clicks mariyu hover effects ni motham block chesthundhi */
        /* Hover lo color marakunda undataniki (Bootstrap override) */
        background-color: rgb(8 31 48 / 0%) !important;
        border: solid 2px rgba(209, 214, 220, 0.3) !important;
        border-left: solid 3px #b8b8b8 !important;
        border-right: solid 3px #b8b8b8 !important;
        color: white !important;
        box-shadow: none !important;
        border-radius: 8px;
        text-transform: uppercase;
        gap: 5px;
        display: inline-flex;
        align-items: center;
        padding: .5rem;
    }
    .button-label h5 {
        font-family: "IBM Plex Sans", Sans-serif !important;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        color: #FFFFFF;
    }
    /* Okavela button tag kabatti active/focus state lo kuda emi marakunda */
    .button-label:hover,
    .button-label:focus,
    .button-label:active {
        background-color: rgba(8, 31, 48, 0.8) !important;
        color: white !important;
        outline: none !important;
        box-shadow: none !important;
        transform: none !important;
    }



    .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: 36px;
}

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;
    }
}


.office a, button {
    text-decoration: none;
}





.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: 280px;
        object-fit: cover;
        border-radius: 22px 22px 0 0;
    }

    .card3d .info h3 {
        margin: 0 0 6px;
        font-family: "DM Serif Display", serif !important;
        font-size: 18px;
        font-weight: normal;
        color:black;
    }

/* 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 !important;
        padding: 1rem;
    }
}


/* 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 {
        font-family: "IBM Plex Sans", Sans-serif;
        font-size: 18px;
        font-weight: 400;
    }

.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 {
    font-family: "IBM Plex Sans", Sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 28px;
    color: #FCFCFC;
}

/* 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 {
    font-family: "IBM Plex Sans", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #FCFCFC;
}

/* Lists */
.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 15px;
    }

        .footer-section ul li a {
            font-family: "IBM Plex Sans", Sans-serif;
            font-size: 18px;
            font-weight: 400;
            color:white;
        }

           

/* 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 {
        
        min-height: auto !important;
        padding:.5rem 1rem;
    }

    /* 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:-15px !important;
        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;
    }
    .footer-section h6{
        font-size:18px !important;
        text-align:center;
    }
}

/*model form*/
/* --- Modal Styling --- */


.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1rem 1.5rem;
}

.modal-title {
    color: #008a00; /* Suvarna Green */
    font-weight: 600;
}

.modal-body {
    
    overflow:hidden;
}

/* ఫామ్ లేబుల్స్ మరియు ఇన్పుట్స్ */
.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;
    }


    .count-content span {
        font-size: 20px !important;
    }

    .animate-card span {
        font-size: 20px !important
    }


    /* section2 */
    .button-label2 {
        padding: 5px 15px !important;
        font-size: 13px !important;
    }

    .button-label {
        font-size: 15px !important;
        padding: 5px 15px !important;
    }

    .button-label, .button-label2 {
        outline: none !important; /* Focus border ni theesesthundhi */
        box-shadow: none !important; /* Click chesinappudu vacche shadow ni theesesthundhi */
        -webkit-tap-highlight-color: transparent; /* Mobile lo click highlight ni remove chestundhi */
    }

    .swiper-pagination {
        margin-top: 2rem !important
    }

    .description-text span {
        font-size: 17px !important;
    }

    .section-div {
        padding: 0 1rem !important;
    }
}
header, .navbar {
    padding-bottom: 5px !important;
    margin-bottom: 0 !important;
    
}
.navbar {
    position: sticky;
    top: 0 !important;
    z-index:1000;
}
    /* TABLET VIEW: 2 cards per row */
    @media (min-width: 768px) and (max-width: 1024px) {
        #products .row {
        display: flex;
        flex-wrap: wrap;
    }

    #products .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .section4 {
        padding: 0 2rem !important;
    }

}

#interestedMenu {
    display: none;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
}

    #interestedMenu li {
        cursor: pointer;
    }

        #interestedMenu li:hover {
            background-color: #f1f1f1;
        }

/* Container Box */
.custom-dropdown-container {
    border: 1px solid #ced4da !important;
    border-radius: 6px !important;
    background-color: #fff !important;
    overflow: hidden;
    cursor: pointer;
}

    .custom-dropdown-container:focus-within {
        border-color: #0d6efd !important;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
    }

/* Input Field */
.custom-input {
    border: none !important;
    background: transparent !important;
    padding: 10px 15px !important;
    cursor: pointer !important;
    font-size: 14px !important;
}

/* Professional Icon Styling */
.custom-arrow {
    background: transparent !important;
    border: none !important;
    padding-right: 15px !important;
    color: black !important;
    transition: transform 0.3s ease !important; /* Rotation animation */
    font-size: 14px; /* Image lo unna size ki match avthundi */
    font-weight: bold; /* Koncham thick ga kanipinchadaniki */
    margin-left: 6px; /* Text ki icon ki madhya gap */
    vertical-align: middle; /* Center alignment */
}
/* Bootstrap default arrow ni hide chesthundhi */
.dropdown-toggle::after {
    display: none !important;
}



/* Icon rotation when menu is open */
.rotate-icon {
    transform: rotate(180deg) !important;
    color: #0d6efd !important;
}

/* Dropdown Menu Style */
.custom-menu {
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    border-radius: 8px !important;
    margin-top: 5px !important;
}

    .custom-menu .dropdown-item {
        padding: 10px 20px !important;
        transition: all 0.2s;
    }

        .custom-menu .dropdown-item:hover {
            background-color: #f8f9fa !important;
            color: #0d6efd !important;
      }

.custom-select-wrapper {
    position: relative;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    border-radius: 6px;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 14px;
}

.custom-select:focus {
    box-shadow: 0 0 6px rgba(0,123,255,0.3);
    border-color: #0d6efd;
}
.section-div{
    padding:0 5rem;
}
/* Desktop: Default (4 columns or more based on content) */
.counts-inner .d-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Items madhya chinna gap */
}

.count-1 {
    flex: 0 0 auto;
    min-width: 120px;
}

/* Tablet (991px and below): 2 Columns */
@media (max-width: 991px) {
    .counts-inner .d-flex {
        justify-content: center;
    }

    .count-1 {
        width: 48%; /* 2 Columns (padding/gap kosam 48% petta) */
        margin-right: 2%;
        margin-bottom: 15px;
        justify-content: flex-start;
        text-align: left;
    }
    .swiper-container2 .swiper-slide{
        padding:1.5rem !important;
    }
    .banner-content-section {
        text-align:center !important;
        width: 100% !important;
        padding:0 !important;
    }
}

/* Mobile (576px and below): Exact 2 Columns */
@media (max-width: 576px) {
    .count-1 {
        width: 46%; /* Side by side space adjust avthundi */
        margin-right: 4%;
        margin-bottom: 15px;
    }

        /* Last item margin fix */
        .count-1:nth-child(2n) {
            margin-right: 0;
        }

   

   
    .swiper-container2 .swiper-slide{
    text-align:center;
    width: 100% !important;
   }
}






/* Tablet & Mobile Settings */
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: hidden;
    margin-top: 4rem
}
.subdetail {
    white-space: nowrap;
}
.certification-logos img{
    height:100%;
}




/* --- Responsive --- */
    @media (max-width: 991px) {
     
        
        .banner-grid-container {
            padding-bottom: 20px;
        }

        .swiper-slide .flex-column{
             gap:0 !important;
        }   
        .card-body h2 p {
            font-size: 22px !important;
        }
        .section4 .card .card-body, .service-card .card-body, .about-us, .background-board, .class-bardg {
            padding: 0 !important;
        }
        .service-grid h4{
            margin:0 !important;
            font-weight:600;    
        }
        .terms-content,.heading-container {
            padding: 1rem !important;
        }
        .modal-open .modal {
            overflow-x: hidden;
            overflow-y: auto !important;
            margin-top: 4rem
        }
        .modal-body {
            padding-bottom: 5rem !important;
            overflow: hidden;
        }
        .aboutUs-board .text-light {
            top: 1rem;
           
        }
        .timeline-container {
            padding: 1rem 1.5rem;
        }
        .subdetail {
            margin: 0 3.8rem !important;
        }
        .counter-overlay h1{
            font-size:20px !important
        }
        
        }

.rxs{
    padding:1rem 6rem;
}
@media (max-width: 768px) {
    .count-section div {
        border-right: none !important;
        border-bottom: 1px solid #ddd !important;
    }

        .count-section div:last-child {
            border-bottom: none !important;
        }
    .rxs {
        padding: 1rem 1rem;
    }
    .service-icon {
        width: 50px;
    }
    .fa-chevron-right {
        margin-top: 2.5rem;
    }
    .fa-chevron-left {
        margin-top: 2.8rem;
    }
    .seventh-block .animate__fadeInRight{
        padding:0 !important;
    }
   
    .count-content p {
        font-size:18px;
    }
    .footer-container {
        padding: 1rem !important;
    }
}
.main-bardg h4 {
    font-family: "IBM Plex Sans", Sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 32px;
    color: #161616;
}
.main-title h4 {
    font-family: "deca-serif", Sans-serif;
    font-size: 25px;
    line-height: 28px;
}
.heading-h2 h2 {
    font-family: "deca-serif", Sans-serif;
}

.custom-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
}

.custom-menu li:hover {
    background: #f3f7ff;
}

.custom-menu li input[type="checkbox"] {
    margin: 0;
}
.Healthcare-section .elementor-element h2 {
    font-family: "deca-serif", Sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    color: #161616;
}
.title-control p {
    color: #575757;
    font-size: 20px;
}
/* మొబైల్ మరియు టాబ్లెట్ స్క్రీన్‌ల కోసం (Responsive) */
@media screen and (max-width: 576px) {
    .product-short-description h1 {
        font-size: 21px !important;
    }
}
.footer-container{
    padding:2rem 8rem;
}


/*Compliance Starts*/ 
/* Owl Carousel Dots */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    height: 10px;
    width: 10px;
    margin: 5px;
    background: #ccc !important;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

    .owl-dot.active {
        background: #2B6997 !important;
        width: 25px;
        border-radius: 20px;
    }
.cards-1 .card {
    text-align: start;
    background: #fff;
    border-radius: 16px;
    height: 360px;
    width: 100%;
    max-width: 280px;
    padding: 20px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /* Hover effect */
    .cards-1 .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }

/* Icon */
.card-icons {
    width: 120px;
    height: 120px;
    margin: auto;
    margin-bottom: 15px;
}

    .card-icons img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Title */
.cards-1 .card-title {
    font-size: 23px !important;
    color: #2b6997;
    margin-top: 10px;
}

/* Description */
.card-title1 {
    font-size: 18px;
    font-weight: 400;
    color: #575757;
}

/* Hover text color */
.card-bodycontent:hover {
    color: #2B6997;
}
@media (max-width: 768px) {
    .cards-1 .card {
        height: auto;
        padding: 15px;
    }

    .card-icons {
        width: 80px;
        height: 80px;
    }

    .cards-1 .card-title {
        font-size: 18px !important;
    }
}
/* Center card in mobile */
@media (max-width: 768px) {

    #carousel1 .item {
        display: flex;
        justify-content: center; /* horizontal center */
    }

    .cards-1 .card {
        margin: 0 auto; /* extra safety */
    }
}
#carousel1 .owl-stage {
    display: flex;
    align-items: center;
}

.cards-1 .card {
    margin: auto;
}
.card-heading {
    color: #2b6997;
    font-family: "IBM Plex Sans", Sans-serif !important;
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
}
/* Mobile & Tablet Styles */
@media (max-width: 991px) {


    .Members {
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .mission {
        padding: 0 !important;
    }
}



.banner-flex-container {
    display: flex;
    justify-content: space-between;
}

.banner-content-section h1 {
    margin-top: 0;
}

.banner-content-section {
    padding-top: 0;
}

/* LEFT CONTENT */
.banner-content-section {
    flex: 1;
    padding:0 50px;
}

/* RIGHT IMAGE */
.banner-image-section {
    flex: 1;
    text-align: center;
    min-width: 250px;
}



/* IMAGE SIZE */
.banner-img {
    width: 300px;
    height: auto;
    border-radius: 15px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .banner-flex-container {
        flex-direction: column;
        padding: 20px;
    }

    .banner-img {
        width: 280px !important;
    }
}

    

    .marquee-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
        white-space: nowrap;
    }

    .marquee-track {
        display: inline-flex;
        align-items: center;
        animation: marqueeMove 40s linear infinite;
    }

    .header-badge {
        height: 90px !important;
        width: auto;
        margin: 5px 10px;
        object-fit: contain;
        flex-shrink: 0;
    }

    @keyframes marqueeMove {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }




.background-board {
    height: auto;
    background-color: rgb(8, 31, 48); /* ఒరిజినల్ బ్యాక్‌గ్రౌండ్ కలర్ */
    color: #ffffff;
    overflow-x: hidden;
    /*padding:3px 3rem;*/
}

    .main-bardg {
        background-color: #ffffff; /* ఒరిజినల్ బ్యాక్‌గ్రౌండ్ కలర్ */
        padding: 25px;
        margin-top: 30px;
        border-radius: 15px;
        color: #0f172a;
        display: flex;
        align-items: center;
    }

        .main-bardg h2 {
            font-family: "IBM Plex Sans", Sans-serif !important;
            font-size: 22px;
            font-weight: 500;
            text-transform: uppercase;
            line-height: 32px;
            color: #161616;
        }

    .btn-solid-lg {
        display: inline-block;
       padding:5px 15px;
        border: 1px solid #2b6997;
        border-radius: 30px;
        background-color: green;
        color: white;
        font-size: 16px;
        line-height: normal;
        text-decoration: none;
        transition: all 0.2s;
        font-family: "IBM Plex Sans", Sans-serif !important;
    }
        .btn-solid-lg:hover{
            color:white !important;
            text-decoration:none !important;

        }
        .banner-main-img {
            border-radius: 10px;
            object-fit: cover;
            width: 500px !important;
        }

    /* --- Responsive Adjustments (కేవలం మొబైల్ కోసం అదనంగా చేర్చినవి) --- */

    @media (max-width: 991px) {
        /* Banner Grid Fix */
        .banner-grid-container {
            display: block !important; /* Grid ని తీసి బ్లాక్ లాగా మార్చాం */
            padding: 20px 10px !important;
        }

            .banner-grid-container .d-flex {
                flex-direction: column !important;
                text-align: center !important;
            }

        .banner-content-section {
            width: 100% !important;
            text-align: center !important;
        }

        .banner-image-section {
            width: 100% !important;
            max-width: 400px;
            /* margin-top: 30px; */
            margin: 0 auto;
        }

        .banner-main-img {
            width: 80% !important; /* మొబైల్ లో ఇమేజ్ సైజ్ */
            height: auto;
        }

        /* Sub Banner (rptSubBanner) Fix */
        .main-bardg {
            flex-direction: column;
            text-align: center;
            margin-left: 5px !important;
            margin-right: 5px !important;
        }

       

        .header-badge {
            height: 60px !important; /* మొబైల్ లో లోగో సైజ్ */
        }

  
    }

    @media (max-width: 576px) {
        .main-bardg h2 {
            font-size: 18px !important;
        }

     
    }
    /* --- Base Styles --- */
    .main-bardg {
        background-color: #ffffff;
        padding: 25px;
        margin-top: 30px;
        border-radius: 15px;
        color: #0f172a;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

        .main-bardg h2 {
            font-family: "IBM Plex Sans", Sans-serif !important;
            font-size: 22px;
            font-weight: 500;
            text-transform: uppercase;
            line-height: 1.4;
            color: #161616;
            margin: 0;
        }

    .logo-box {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap:0;
        flex-wrap: wrap;
    }

    .header-badge {
        height: 60px; /* Default height */
        width: auto;
        object-fit: contain;
        transition: transform 0.3s;
    }

        .header-badge:hover {
            transform: scale(1.05);
        }

    /* --- Responsive Media Queries --- */

    /* Tablet View (max-width: 991px) */
    @media (max-width: 991px) {
        .main-bardg {
            flex-direction: column; /* టెక్స్ట్ పైన, లోగోలు కింద */
            text-align: center;
            padding: 20px;
            margin-left: 10px;
            margin-right: 10px;
        }

            .main-bardg .col-md-7,
            .main-bardg .col-md-5 {
                width: 100%;
                max-width: 100%;
                flex: 0 0 100%;
            }

        .logo-box {
            justify-content: center !important; /* మొబైల్ లో లోగోలు సెంటర్ అవ్వడానికి */
            margin-top: 20px;
        }

        .header-badge {
            height: 50px; /* టాబ్లెట్ లో కొంచెం చిన్నగా */
        }
    }

    /* Mobile View (max-width: 576px) */
    @media (max-width: 576px) {
        .main-bardg {
            padding: 15px;
            margin-top: 15px;
        }

            .main-bardg h2 {
                font-size: 18px !important;
                line-height: 1.3;
            }

        .header-badge {
            height: 40px; /* మొబైల్ లో ఇంకా చిన్నగా */
            margin: 5px;
        }

        .logo-box {
            gap: 10px;
        }
    }

.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%);
}

}


    .bannerdiv {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    

    /* MOBILE */
    @media (max-width: 768px) {
        .bannerdiv {
            height: auto;
            min-height: 700px;
        }
        .parant-content{
            padding-top:0 !important;
        }
    }

   

    /* 1024px nundi 768px madyalo (Tablets/Small Laptops) */
    @media (max-width: 1024px) {
        .banner-flex-container {
            flex-direction: column;
            padding: 20px;
        }
        /* Position */
        .carousel-control-prev {
            left: 5px !important;
        }
        .carousel-control-next {
            right: -10px !important;
        }
        .parant-content {
            padding: 0 !important;
        }
    }

 

/*Hear From Our Trusted Clients*/
.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;
}
.parant-content{
    padding:0 50px;
}
/* Remove default icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Arrow wrapper */
.custom-arrow {
    width: auto;
}

/* Premium glass button */
.arrow-box {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Glass effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 150, 0.4);
    /* Shadow */
    box-shadow: 0 4px 20px rgba(0, 255, 150, 0.2);
    transition: all 0.4s ease;
}

    /* Icon */
    .arrow-box i {
        font-size: 18px;
        color: #00ff95;
        transition: all 0.3s ease;
    }

/* 🔥 HOVER EFFECT */
.custom-arrow:hover .arrow-box {
    background: #009639;
}

/* Icon hover */
.custom-arrow:hover i {
    color: #fff;
    transform: scale(1.2);
}

/* Click animation */
.custom-arrow:active .arrow-box {
    transform: scale(0.95);
}

/* Position */
.carousel-control-prev {
    left: -40px;
}

.carousel-control-next {
    right: 30px;
}
/* Background box */


/* Image styling */
.banner-img {
    width: 400px;
    height: auto;
    border-radius: 12px;
    transition: all 0.4s ease;
}
/* ===== DESKTOP (AS IT IS) ===== */
.fixed-counts-container {
    position: absolute;
    bottom: 100px;
    left: 20px;
    width: 100%;
    max-width: 720px;
    z-index: 10;
    padding: 0 2rem;
}



/* ===== IMAGE FIX ===== */
.banner-image-section {
    flex: 1;
}

.banner-img {
    max-width: 100%;
    height: auto;
}

/* ===== CONTENT FIX ===== */
.banner-content-section {
    flex: 1;
    z-index: 2;
}


.count-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: .6rem;
    padding-right: 15px;
}

.count-content h3 {
    font-size: 35px;
    font-family: "deca-serif", Sans-serif;
    color: #fff;
}

/* --- Responsive Fixes --- */

/* Tablets & Small Laptops (1024px and below) */
@media (max-width: 1024px) {
    .fixed-counts-container {
        position: relative !important; /* Absolute ni remove chestunnam */
        bottom: 0 !important;
        left: 0 !important;
        max-width: 100%;
        padding: 30px 15px;
        margin-top: 0;
    }
}

/* Mobile & Small Tablets (768px and below) */
@media (max-width: 768px) {
    .banner-flex-container {
        display: flex;
        flex-direction: column; /* Image and text vertical ga vasthayi */
    }

    .banner-image-section {
        margin-bottom: 20px;
    }

    .counts-grid-wrapper .d-flex {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .count-divider {
        flex: 0 0 50%; /* Oka row ki 2 items */
        max-width: 50%;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-right: 0 !important;
        padding: 15px 5px;
        text-align: center;
    }

        /* Last row ki border bottom remove chestunnam */
        .count-divider:nth-last-child(-n+2) {
            border-bottom: none;
        }

    .count-content h3 {
        font-size: 24px; /* Mobile lo size taggisthe baguntundi */
    }
}
/* ===== ONLY 1317px to 1025px RESPONSIVE ===== */
@media (max-width:1317px) and (min-width:1025px) {

    .fixed-counts-container {
        bottom: 10px;
        max-width: 600px;
        padding: 0 1rem;
    }

    .counts-grid-wrapper .d-flex {
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .count-divider {
        width: 200px;
        padding-right: 10px;
        position: relative;
    }

        

        /* EVEN ITEMS ki border remove (2nd, 4th...) */
        .count-divider:nth-child(2n)::after {
            display: none;
        }

    .count-content h3 {
        font-size: 28px;
    }

    .count-content p {
        font-size: 12px;
    }
    /* RIGHT IMAGE */
    .banner-image-section {
        flex: 1;
        text-align:start;
        min-width: 250px;
    }
}
/* ===== MOBILE (below 768px) ===== */
@media (max-width: 768px) {

    .cards-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px;
    }

    .count-ai {
        top: 20px !important;
    }
    /* center green card */
    .card-item:nth-child(3) {
        width: 95% !important;
    }
    .left-card {
        left: 0;
        width: 100%;
    }
    .left-card {
        bottom: 0 !important;
        left: 20px !important;
        width: 200px !important;
        height: 100px !important;
        top: -5px !important;
    }

    .right-card {
        bottom: 0 !important;
        left: 15px !important;
        width: 200px !important;
        height: 100px !important;
        top: 5px !important;
    }
        
}


/* ===== TABLET (768px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {

    .cards-container {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px;
    }

    .card-item {
        flex: 0 0 45% !important;
        height:400px!important;
    }

        .card-item:nth-child(3) {
            flex: 0 0 90% !important;
        }
    .left-card {
        bottom: 0 !important;
        left: 30px !important;
        width: 250px !important;
        height: 150px !important;
    }
    .right-card {
        bottom: 0 !important;
        left: 30px !important;
        width: 250px !important;
        height: 150px !important;
    }
}
@media (max-width:1317px) and (min-width:1025px){
    .Suite {
        padding: 0 !important
    }
    .Modules-section {
        padding: 20px 20px !important;
    }
}