/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

@media (max-width: 768px) {
    .navbar-dark .navbar-nav .nav-link {
        font-family: 'Nunito', sans-serif;
        position: relative;
        margin-left: 0px;
        padding: 35px 0;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        outline: none;
        transition: .5s;
    }
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: #ffffff;
}


.navbar-dark .navbar-nav .nav-link.active {
    color: #58dbfc;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgb(71, 203, 255);
}

@media (max-width: 768px) {

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: red;
    }
}


/* Only for screens below 992px (Bootstrap lg breakpoint) */
@media (max-width: 768px) {
    .navbar {
        background-color: #000 !important;
        /* black background on mobile */
    }

    .navbar-collapse {
        background-color: #000 !important;
        /* black when menu toggled */
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        /* white text on mobile */
    }

    .navbar-nav .nav-link.active {
        color: #58dbfc !important;
        /* active link color */
    }
}

.sticky-top.navbar-dark .navbar-nav .nav-link.active {
    color: #58dbfc;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: rgb(61, 187, 218) !important;
    border-color: rgb(61, 187, 218) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #000000c0;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(9, 30, 62, .7); */
    z-index: 1;
}

.counter-section {
    margin-top: -30px !important;


}

@media (max-width: 576px) {
    .counter-section {
        margin-top: -120px !important;
    }
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: rgb(4, 158, 200);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}





/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    height: 450px;
    /* apni need ke hisaab se increase karo */
    background: linear-gradient(rgba(0, 83, 139, 0.3), rgba(0, 0, 0, 0.5)),
        url(../img/banner/breadcrumb-1.png) center no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .bg-header {
        height: 250px;
        /* apni need ke hisaab se increase karo */
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url(../img/banner/breadcrumb.png) center no-repeat;
        background-size: cover;
    }
}


.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    /* padding-left: 5px; */
}




.header-logo {
    height: 110px;
    /* Logo ki height bada karne ke liye */
    width: auto;
    /* Width proportional rahe */
    display: block;
}

@media (max-width: 768px) {
    .header-logo {
        height: 70px !important;

    }
}

@media (max-width: 768px) {
    .logo-padding {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}


.year-container {
    background-color: #d6f8fa;
    /* background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)),
                url("../img/brick-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */

}

.counter-head {
    font-size: 45px;
    font-family: 'Cinzel', serif !important;
}

.counter-head-2 {
    font-size: 45px;
    color: #520d0d !important;
    font-family: 'Cinzel', serif !important;
}

.counter-background {

    background: linear-gradient(135deg, #078ab9, #02abd1);
    /* background: linear-gradient(rgba(59, 38, 38, 0.5), rgba(59, 38, 38, 0.5)),
                url("../img/brick-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    /* border: 1px solid rgb(155, 0, 0); */
}

.counter-paragraph {
    color: #520d0d !important;
}

.main-heading {
    /* font-family: 'Orbitron', sans-serif; */
    font-family: 'Cinzel', serif;
    font-size: 38px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900 !important;
    color: rgb(0, 45, 87) !important;
}

@media (max-width: 768px) {
    .main-heading {
        /* font-family: 'Orbitron', sans-serif; */
        font-size: 30px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 900 !important;
        color: rgb(0, 45, 87) !important;
    }
}

.why-choose-heading {
    /* font-family: 'Orbitron', sans-serif; */
    font-family: 'Cinzel', serif;
    color: #ffffff !important;
    font-weight: 300;
}

.main-heading-2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    letter-spacing: 1px;
    font-weight: 900 !important;
}

@media (max-width: 768px) {
    .main-heading-2 {
        font-size: 30px;
    }
}


.main-heading-3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    letter-spacing: 1px;
    font-weight: 900 !important;
    color: #ffffff;
}

@media (max-width: 768px) {
    .main-heading-3 {
        font-size: 30px;
    }
}

.sub-heading {
    color: rgb(4, 158, 200) !important;
}

.sub-heading-2 {
    color: rgb(238, 174, 0) !important;
}

.decode {
    font-size: 25px;
    font-weight: 600;
    color: #091E3E;
    margin-top: -20px;
}

@media (max-width: 768px) {
    .decode {
        font-size: 20px;
        font-weight: 600;
        color: #091E3E;
        margin-top: -20px;
    }
}

.paragraph {
    color: rgb(65, 65, 65);
    text-align: justify;
    font-size: 16px !important;
}

.aacharya {
    font-size: 18px;
}

.index-icon {
    font-size: 28px;
    color: orangered !important;
}

.award-cinzel {
    font-weight: 700 !important;

}

.welcome-section {
    /* background-image: url("../img/welcome-background.jpg"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* margin-top: -50px; */
}

@media (max-width: 768px) {
    .welcome-section {
        background-image: none !important;
    }
}


.shubhika-about-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slider Wrapper */
.welcome-image-changer {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slider Images */
.welcome-image-changer-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Active + Default First Image */
.welcome-image-changer-img.active,
.welcome-image-changer-img:first-child {
    opacity: 1;
}

/* Mobile Fix */
@media (max-width: 576px) {
    .shubhika-about-img-container {
        min-height: 250px;
    }
}

.center-icon {
    text-align: center;
    /* Text and icon center aligned */
}

.center-icon .icon-box {
    margin-left: auto;
    margin-right: auto;
    /* ensures icon is horizontally centered */
    background: linear-gradient(135deg, #049ec8, #007494) !important;
    /* border: 1px solid yellow; */
    /* border-radius: 50% !important; */
}

.why-icon {
    font-size: 30px;
}

.service-icon {
    font-size: 25px;
}

.rotate-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.rotate-image {
    /* border-radius: 50%;  */
    width: 330px !important;
    height: 360px !important;
    object-fit: cover;

    /* Animation */
    /* animation: rotateCircle 10s linear infinite;
    transform-origin: 50% 50%; */

}

@media (max-width: 768px) {
    .rotate-image {
        /* border-radius: 50%;  */
        width: 300px !important;
        height: 360px !important;
        object-fit: cover;

    }
}

/* Keyframes for rotation */
@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url("");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.service-head {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
}

.service-sub-head {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
}


.guidance-section {
    background-image: url("");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .service-section {
        margin-top: -100px !important;
    }

}

.guidance {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 900;
}


/* Unique Cosmic9 Service Styles */
.cosmic9-service-card .cosmic9-service-item {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cosmic9-service-card .cosmic9-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cosmic9-service-icon i {
    transition: transform 0.3s, color 0.3s;
    font-size: 42px;
    color: #ff4500 !important;
}

.cosmic9-service-card:hover .cosmic9-service-icon i {
    transform: rotate(15deg) scale(1.1);
    color: #ff6b6b;
}

.cosmic9-service-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.cosmic9-service-desc {
    color: #555;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .cosmic9-service-card {
        margin-bottom: 30px;
    }
}

.testimonial-heading {
    font-size: 22px;
}

@media (max-width: 768px) {
    .testimonial-section {
        margin-top: -50px;
        margin-bottom: -50px;
    }
}





/* Section Background */
.cosmic9-service-section {

    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}


.cosmic9-right-cards {
    display: flex;
    flex-direction: column;
    align-items: flex-end !important;
}

/* Transparent Cards with Blur */
.cosmic9-card {
    background: rgba(255, 255, 255, 0.15);
    /* halki transparent */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px !important;

    /* Adjust top-bottom padding */
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;

}

.cosmic9-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Background */
.cosmic9-card-icon-bg {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('');
    /* icon background */
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

/* Icon Image */
.icon-img {
    width: 50px;
    height: 50px;

}

/* Card Content */
.cosmic9-card-content h5 {
    /* margin-bottom: 0.5rem; */
    margin-top: 10px;
    color: #fff;
    font-weight: 500;

}

.cosmic9-card-content p {
    margin: 0;
    color: #f8f8f8;
    font-size: 0.95rem;
}

.right-content {
    justify-items: right;

}

.company-brand {
    color: #ffa318 !important;
}

.company-brand:hover {
    color: yellow !important;
}

.footer-brand {
    background-color: #041831 !important;
}

.footer-heading {
    font-size: 22px !important;
}

@media (max-width: 768px) {
    .footer-heading-2 {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-heading-3 {
        margin-top: -10px;
    }
}

@media (max-width: 768px) {
    .footer-heading-4 {
        margin-top: -40px;
    }
}

.guidance-card {
    border: 1px solid rgb(204, 204, 204) !important;
}

/* about page start */

.about-section {
    background-image: url("");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -90px;
}

.call-icon-back {
    background: linear-gradient(135deg, #0dcaf0, #006796) !important;
    /* border: 3px double yellow; */
}

.call-number {
    color: #5f5f5f !important;
}

.call-icon {
    font-size: 30px;
}



/*** Service ***/
.service-item {
    position: relative;
    /* height: 300px;  <-- remove this */
    min-height: 300px;
    /* optional, minimum height maintain karne ke liye */
    padding: 30px 30px;
    /* upar-niche padding thoda badha diya */
    transition: 0.5s;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* upar se start ho, center se replace */
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #06a3da;
    border-radius: 10px;
    transform: scaleX(0);
    /* initially invisible */
    transform-origin: center;
    /* start from center */
    transition: transform 0.5s ease;
    pointer-events: none;
}

.service-item:hover::before {
    transform: scaleX(1);
    /* expand from center to full width */
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

@media (max-width: 767px) {
    .service-item {
        padding: 20px 15px;
    }
}

/* founder section start */

.founder-section {
    background-image: url("../img/who-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .founder-section {
        background-image: url("../img/who-background.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: -150px;
    }
}

.founder-sub-head {
    color: #ffffff;
}

.founder-img-wrapper-premium {
    position: relative;
    width: 100%;
    max-width: 300px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s, box-shadow 0.5s;
}

.founder-img-wrapper-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Image Overlay Gradient */
.founder-img-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 163, 218, 0.15), rgba(255, 255, 255, 0));
    mix-blend-mode: overlay;
}

/* Image */
.founder-img-premium {
    width: 100%;
    border-radius: 25px;
}

/* Glass Card for Name + Position */
.founder-glass-card {
    position: absolute;
    bottom: 30px !important;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 100%;
    padding: 10px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #fff;

}

.founder-glass-card h5 {
    font-weight: 700;
    font-size: 16px;
}

.founder-glass-card p {
    font-size: 13px;
    margin: 0;
    color: #000000;
}

.founder-desc {
    color: #c0c0c0;
}


/* Text Column */
.founder-description-premium {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

.founder-expertise-premium {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
    color: #444;
}

.founder-expertise-premium li {
    font-size: 15px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.founder-expertise-premium li:hover {
    color: #06a3da;
}

.founder-message-premium {
    font-style: italic;
    margin-top: 20px;
    color: #555;
    border-left: 4px solid #06a3da;
    padding-left: 12px;
}

.founder-para {
    color: #000000 !important;
}



/* Responsive */
@media (max-width: 991px) {
    .founder-section-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-glass-card {
        transform: translateX(-50%) translateY(30%);
        width: 90%;
    }

    .founder-expertise-premium {
        text-align: left;
        padding-left: 20px;
    }
}


/* Founder Image - Square Shape */

.founder-card {
    border-radius: 15px;
    padding: 15px !important;
    /* border: 1px solid rgb(209, 209, 209) !important; */
}

.founder-position {
    font-size: 20px !important;
    color: #3b3b3b !important;
}

.founder-head {
    font-size: 22px;
    /* font-family: 'Cinzel', serif !important; */
}

.founder-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    /* border: 6px solid #0d6efd; */
    border-radius: 15px;
    /* square with soft edges */
    transition: 0.4s;
}

.founder-img:hover {
    transform: scale(1.05);
}

/* List Always Left */
.cosmic-list {
    list-style: none;
    padding-left: 0;
    text-align: left !important;
}

.cosmic-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
}

.cosmic-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-size: 18px;
}

.founder-message {
    border-left: 3px solid yellow;
    /* border-right: 3px solid yellow; */
    border-radius: 10px;
}

.fst-italic {
    color: #c0c0c0 !important;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .founder-content {
        text-align: left !important;
    }
}

.founder-message-heading {
    color: #ffffff !important;
}

/* .footer-back
{
    background-color: #041435 !important;
} */

.footer-back {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("../img/banner/footer-background.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;

}



/* contact page start */
.call-left-section {
    margin-bottom: 40px !important;
}

.address-para {
    font-size: 18px;
    color: rgb(0, 81, 148) !important;
}

.email-para {
    font-size: 20px;
    color: rgb(0, 81, 148) !important;
}

.contact-para {
    color: rgb(0, 81, 148) !important;
    font-size: 20px !important;
}

@media (max-width: 991px) {
    .contact-para {
        font-size: 16px !important;
    }
}

.call-left-section {
    display: flex;
    align-items: center;
    gap: 15px;
    /* space between icon and text */
}

/* Icon sizing */
.call-left-section .bg-primary {
    width: 60px;
    height: 60px;
    font-size: 24px;
    flex-shrink: 0;
    /* prevent icon from shrinking too much */
    background: linear-gradient(135deg, #006a98, #4ec6e2) !important;

}

/* Text wrapping */
.call-left-section h4,
.call-left-section h5 {
    margin: 0;
    word-break: break-word;
}

/* Small screens adjustments */
@media (max-width: 576px) {
    .call-left-section {
        flex-direction: column;
        align-items: flex-start;
        /* icon above text */
        gap: 5px;
    }

    .call-left-section .bg-primary {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .call-left-section h4 {
        font-size: 14px;
        /* smaller text for mobile */
    }

    .call-left-section h5 {
        font-size: 18px;
    }

    /* Wrap email nicely */
    .email-para {
        white-space: normal;
    }
}

.contact-section {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
}

.enquiry-section {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
}

.send-message {
    background: linear-gradient(135deg, #972106, #ff4318) !important;
}


/* Adjust card height and font size on small screens */
@media (max-width: 576px) {

    .counter-section .counter-background,
    .counter-section .year-container {
        height: 90px !important;
        /* smaller height */
        padding: 10px;
        /* less padding */
    }

    .counter-section h1 {
        font-size: 30px;
        /* smaller number */
        margin-bottom: 5px;
    }

    .counter-section h5 {
        font-size: 15px;
        /* smaller label */
    }
}



/* service section start */

.service-list-section {
    margin-top: 0px;
    margin-bottom: 0px;
}

.product-item {
    position: relative;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.product-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    /* border thickness */
    background: linear-gradient(90deg, #779dff, #00f3ff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .product-item {
        /* padding: 25px 18px; */
        border-radius: 8px;
    }

    .product-item::before {
        border-radius: 8px;
        background: linear-gradient(90deg, #779dff, #00f3ff);
    }
}


.product-img {
    width: 100%;
    max-width: 340px;
    /* jitna chhota chahiye */
    border-radius: 14px;
    object-fit: cover;
}

.product-info h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .product-info h3 {
        margin-top: 20px;
    }
}

.product-info p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-info ul {
    list-style: none;
    /* remove default bullets */
    padding: 0;
    margin: 0;
}

.product-info ul li {
    font-size: 15px;
    padding-left: 28px;
    /* extra space for bigger bullet */
    margin-bottom: 8px;
    position: relative;
    color: #000000;
}

.product-info ul li::before {
    content: "\2022";
    /* Unicode bullet • */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00718f;
    font-size: 35px;
    line-height: 1;
    margin-left: 6px;
}


/* Responsive */
@media (max-width: 991px) {
    .product-item {
        padding: 25px;
    }

    .product-info h3 {
        font-size: 22px;
    }
}

.what-different {
    font-weight: 600;
    font-size: 20px !important;
    color: #00718f !important;
}

.astrology-bg {
    display: block;
    width: 100%;
    background: linear-gradient(to right, #a1e7ff, #ffffff);
    padding: 12px 15px;
    border-radius: 5px;
}

/* service section end */


/* know more button */

.gw-all-products-btn {
    display: inline-block;
    padding: 8px 50px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    /* yellow text */
    background: linear-gradient(to right, rgb(255, 0, 0), orange);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgb(250, 76, 23);
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    transform: skewX(-60deg);
    animation: shineLTR 1.5s linear infinite;
    pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Hover effect */
.gw-all-products-btn:hover {
    color: #000000;
    background: #8dbdff;
    /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
    transform: translateY(-3px);
}

.vastu-title {
    background: linear-gradient(to right, #96eaff, #ecfbff);
    color: #000000;
    width: 100%;
    display: block;
    padding: 2px 15px;
    border-radius: 5px;
}

.about-img {
    height: 450px !important;
    /* apne hisaab se kam ya zyada karo */
    width: 80% !important;
    /* full width nahi chahiye to kam karo */
    margin: 0 auto;
    /* center me lane ke liye */
    margin-top: 20px;
    border-radius: 15px !important;
}

.about-img-tag {
    object-fit: cover;
}

@media (max-width: 768px) {
    .vastu-title {
        font-size: 27px;
    }
}

@media (max-width: 768px) {
    .about-img {
        height: 450px !important;
        margin-top: -40px;
    }

    .about-img-tag {
        position: relative !important;
        height: 390px !important;
        /* border-bottom: 2px solid orangered !important; */
    }
}

.custom-carousel {
    position: relative;
    overflow: hidden;
}

.custom-carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    /* sirf top area me shade */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

@media (max-width: 768px) {
    .custom-carousel::before {
        background: none !important;
    }
}

/* text ko overlay ke upar rakhne ke liye */
.custom-carousel .carousel-caption {
    position: relative;
    z-index: 2;
}



.dk-who-we-are-section {
    background-image: url("../img/who-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}

.brand-heading {
    color: rgb(226, 185, 1);
    font-size: 20px;
}

.dk-goal-icon {
    color: #e6cf00 !important;
    /* Green color, aap apne according change kar sakte ho */
    font-size: 1.2rem;
    /* Optional: icon size adjust karne ke liye */
}

.dk-right-content {
    margin-top: 50px !important;
    /* adjust value as needed */
}

.dk-who-we-are-section {
    color: #fff;
    position: relative;
}

.dk-who-we-are-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.dk-who-we-are-section .container {
    position: relative;
    z-index: 2;
}


.dk-right-content .dk-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    /* margin-top: 10px !important; */
    text-align: justify;
}

@media (max-width: 768px) {
    .dk-content-text {
        text-align: left !important;
    }

    .dk-content-text-1 {
        margin-top: -30px;
        text-align: left;
    }
}


.dk-goals-heading {
    font-weight: 900;
    font-size: 1.3rem;
    /* border-bottom: 2px solid #0d6efd; */
    display: inline-block;
    color: #ffffff !important;
}

.dk-goals-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .dk-goals-list li {
        font-size: 0.85rem;
        display: flex;
        align-items: center;
    }
}

.dk-goals-list li i {
    font-size: 1.2rem;
}

.dk-right-content .btn {
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 50px;
    transition: 0.3s;
}

.dk-right-content .btn:hover {
    background-color: #0b5ed7;
}

@media (max-width: 767px) {
    .dk-who-we-are-section .row {
        text-align: center;
    }

    .dk-right-content .btn {
        width: 70%;
    }
}


.gw-all-products-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    /* yellow text */
    background: #000;
    /* black background */
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgb(241, 206, 6);
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    transform: skewX(-60deg);
    animation: shineLTR 1.5s linear infinite;
    pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Hover effect */
.gw-all-products-btn:hover {
    color: #ffffff;
    background: #1a3e72;
    /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
    transform: translateY(-3px);
}

.service-footer-para {
    font-size: 15px !important;
}

.service-footer-para:hover {
    color: rgb(0, 204, 255) !important;
}

/* about page start */

/* Custom size for About section image */
.custom-about-img {
    width: 100%;
    /* image width chhoti kar di, adjust karo as needed */
    height: auto;
    /* height proportionally adjust ho jaye */
    top: 0;
    /* position maintain */
    left: 0;
    /* position maintain */
    object-fit: cover;


}

@media (max-width: 768px) {
    .custom-about-img {
        width: 100%;
        /* mobile me full width */
        height: auto;
    }
}

.founder-name {
    color: yellow;
    font-weight: 500;
    font-size: 19px;
}

/* mission vision section start */

/* Cards General Styling */
.mission-card,
.vision-card {
    background-color: #fff;
    /* White background */
    border: none;
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* Soft shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Card Icon Styling */
.card-icon i {
    color: #007bff;
    /* Bootstrap primary color */
}

/* Card Title */
.card-title {
    font-size: 22px;
    color: #333;
}

/* Card Text */
.card-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

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

    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
}

/* legacy table start */
/* Table Container */

.legacy-table-section {
    margin-top: -80px;
}

.legacy-table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: 20px;
}

/* Table Styling */
.legacy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-family: 'Poppins', sans-serif;
}

.legacy-table th {
    text-align: left;
    color: #007391;
    /* Primary color */
    font-weight: 600;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-left: 1px solid #007391;
}

.legacy-table td {
    padding: 12px 15px;
    color: #333;
    background-color: #fff;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Row Hover Effect */
.legacy-table tbody tr:hover td {
    background-color: #e9f5ff;
}

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

    .legacy-table th,
    .legacy-table td {
        padding: 10px;
        font-size: 0.95rem;
    }
}

.service-para {
    text-align: center;
    margin-bottom: 50px;
    color: #d4d4d4;
}

.farm-house-heading {
    font-size: 30px;
    font-weight: 600;
    background: linear-gradient(to right, #FFD700, #ffd900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .farm-house-heading {
        margin-top: -50px;
    }
}

.enquiry-heading {
    font-size: 30px;
    margin-bottom: 20px !important;
}

.enquiry-btn {
    background: #ffc107;
    color: #000;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .enquiry-btn {
        margin-right: 20px !important;
    }
}

.enquiry-btn:hover {
    background: #e0a800;
    color: #ffffff;
}

.navbar-nav {
    align-items: center;
}





.cf-features-section {
    padding: 50px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/why-choose-background.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.cf-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: Orbitron, sans-serif;
}

.cf-subtitle {
    color: #a8a8a8;
    margin-bottom: 35px;
}

/* feature list */

.cf-feature-list {
    position: relative;
    padding-left: 40px;
}

/* vertical thread line */

.cf-feature-list:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0px;
    bottom: 5px;
    width: 2px;
    background: #2797ca;
    height: 514px;
}

@media (max-width:991px) {

    .cf-feature-list:before {
        content: "";
        position: absolute;
        left: 20px;
        top: -30px;
        bottom: 5px;
        width: 2px;
        background: #1c6cff;
        top: 20px;
        height: 500px;
    }
}

.cf-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

/* icon */

.feature-icon {
    font-size: 20px;
    /* adjust size as needed */
    color: #ffffff;
    /* optional: change icon color */
}

.cf-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #209ec1, #407ceb);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    left: -40px;
    top: 0;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* text */

.cf-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
    margin-left: 20px;
    color: #00e1ff;
}

.cf-text p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    margin-left: 20px;
}

/* image */

.cf-features-image img {
    border-radius: 12px;
    /* box-shadow:0 15px 40px rgba(0,0,0,0.1); */
    margin-top: 140px !important;
}

@media (max-width: 992px) {
    .cf-features-image img {
        border-radius: 12px;
        /* box-shadow:0 15px 40px rgba(0,0,0,0.1); */
        margin-top: 20px !important;
    }
}

@media (max-width:991px) {

    .cf-features-section {
        padding: 60px 0;
    }

    .cf-section-title {
        font-size: 30px;
    }

    .cf-features-image {
        margin-bottom: 30px;
    }

}

@media (max-width:576px) {

    .cf-feature-list {
        padding-left: 35px;
    }

    .cf-icon {
        left: -35px;
    }

}

.cf-features-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* main image */

.cf-main-img {
    position: relative;
    z-index: 2;
    max-width: 420px;

}

/* rotating ring */

.cf-rotate-ring {
    position: absolute;
    width: 480px;
    animation: rotateRing 6s linear infinite;
    z-index: 1;
}

/* rotation animation */

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {

    .cf-main-img {
        max-width: 320px;
    }

    .cf-rotate-ring {
        width: 360px;
    }

}

@media(max-width:576px) {

    .cf-main-img {
        max-width: 260px;
    }

    .cf-rotate-ring {
        width: 300px;
    }

}

/* company detail section start */
/* Section Background */
.cd-premium-section {
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
        url("../img/company-detail-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: -50px;
}

/* Premium Card */
.cd-premium-card {
    max-width: 900px;
    margin: auto;
    padding: 35px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(0, 204, 255, 0.479);
}

@media(max-width:576px) {

    .cd-premium-card {
        max-width: 900px;
        margin: auto;
        padding: 0px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* Table */
.cd-premium-table {
    margin-bottom: 0;
    color: #fff;
}

/* Row Style */
.cd-premium-table tr {
    border-bottom: 1px solid rgba(145, 145, 145, 0.219);
    transition: 0.3s;
}

.cd-premium-table tr:hover {
    background: rgba(0, 174, 218, 0.05);
}

/* Left Heading */
.cd-premium-table th {
    width: 40%;
    padding: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00c6ff;
    font-weight: 600;
}

/* Right Content */
.cd-premium-table td {
    padding: 16px;
    font-size: 15px;
    color: #5c5a5a;
    font-weight: 500;
}

/* Remove last border */
.cd-premium-table tr:last-child {
    border-bottom: none;
}

/* product page start */

/* ============================= */
/* 🔥 UNIQUE SCOPED CSS */
/* ============================= */

.custom-product-sec {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../img/product-background.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    font-family: 'Poppins', sans-serif;
    margin-top: -100px;
    margin-bottom: -50px;
}

/* LEFT SIDE LIST */
.custom-product-sec .product-list {
    background: rgba(255, 255, 255, 0.089);
    /* transparent white */
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(10px);
    /* blur effect */
    -webkit-backdrop-filter: blur(3px);
    /* Safari support */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* optional glass border */
}

.custom-product-sec .product-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-product-sec .product-list li {
    padding: 10px 18px;
    margin-bottom: 12px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    font-weight: 500;
    color: #333;
    background: #e8e8e8;
}

.custom-product-sec .product-list li:hover {
    background: #eef2ff;
    transform: translateX(5px);
}

.custom-product-sec .product-list li.active {
    background: linear-gradient(135deg, #008fbb, #0bc0f6);
    color: #fff;
    font-weight: 600;
}

/* RIGHT SIDE OUTER BOX */
.custom-product-sec .product-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(187, 187, 187);
}

/* INNER DARK CARD */
.custom-product-sec .product-item {
    display: none;
    background: linear-gradient(135deg, #001f2c, #005272);
    color: #ffffff;
    padding: 25px;
    border-radius: 16px;
    animation: customFadeIn 0.4s ease-in-out;


}

.custom-product-sec .product-item.active {
    display: block;

}

/* IMAGE */
.custom-product-sec .product-item img {
    width: 100%;
    height: 350px; /* Apni requirement ke hisaab se change karein */
    object-fit: cover; /* Image crop hogi, stretch nahi hogi */
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid #fff;
    transition: 0.3s;
}

.custom-product-sec .product-item img:hover {
    transform: scale(1.04);
}

/* TEXT */
.custom-product-sec .product-desc h4 {
    margin-top: 18px;
    font-size: 18px;
    color: #ffd000;
    font-weight: 600;
}

.custom-product-sec .product-desc p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 8px;
}

.custom-product-sec .product-desc ul {
    padding-left: 20px;
}

.custom-product-sec .product-desc ul li {
    margin-bottom: 6px;
    color: #e2e8f0;
}

.custom-product-sec .product-desc ul li::marker {
    color: #4ff0ff;
}

/* ANIMATION (RENAMED to avoid conflict) */
@keyframes customFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .custom-product-sec .product-content {
        margin-top: 20px;
        padding: 10px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .custom-product-sec .product-item {
        padding: 20px;
    }

    .custom-product-sec .product-desc h4 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .custom-product-sec .product-desc p,
    .custom-product-sec .product-desc ul li {
        font-size: 14px;
    }
}

.product-icon {
    color: rgb(255, 208, 0);
    margin-right: 5px;
}

/* award page start */

.awards-showcase-section {
    padding: 60px 0;
    background: #f9fafc;
}

/* Card */
.award-card-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    /* IMPORTANT */
    border: 1px solid rgb(0, 176, 207);
}

/* Hover */
.award-card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Image Box */
.award-image-frame {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
    /* border-bottom: 1px solid rgb(0, 176, 207); */
}

/* Image Fit */
.award-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* Zoom */
.award-card-box:hover img {
    transform: scale(1.08);
}

/* Overlay */
.award-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.3s;

}

.award-card-box:hover .award-image-frame::after {
    opacity: 1;
}

/* Title */
.award-card-title {
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    font-size: 15px;
}

/* infrastructure page start */

/* SECTION BACKGROUND */
.infrastructure-sec {
    background: #f8fafc;
    margin-top: -90px;
    margin-bottom: -50px;

}

/* TABLE WRAPPER */
.infra-table {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(0, 171, 214);
}

.infra-table-2 {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(0, 171, 214);
    margin-top: 20px !important;
}

/* ROW DESIGN */
.infra-row {
    display: flex;
    padding: 18px 25px;
    border-bottom: 1px solid #eee;
    transition: 0.3s ease;
}

.infra-row:last-child {
    border-bottom: none;
}

/* HOVER EFFECT */
.infra-row:hover {
    background: #f1f7ff;
}

/* LEFT TITLE */
.infra-title {
    width: 35%;
    font-weight: 600;
    color: #0b0f1a;
}

/* RIGHT VALUE */
.infra-value {
    width: 65%;
    color: #555;
    line-height: 1.6;
}

/* HEAVY MACHINERY TEXT WRAP */
.infra-value {
    word-break: break-word;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .infra-row {
        flex-direction: column;
    }

    .infra-title,
    .infra-value {
        width: 100%;
    }

    .infra-title {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .infra-value {
        font-size: 14px;
    }
}

/* our clients page start */


.custom-tab-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../img/product-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    margin-top: -100px;
    margin-bottom: -50px;

}

.tab-box {
    background: #000000;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(44, 188, 255);
}

.tab-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 10px;
    border: none;
    background: #f1f1f1;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
}

.tab-btn.active {
    background: linear-gradient(135deg, #008fbb, #0bc0f6);
    color: #fff;
}

.state-box {
    background: #000000;
    border-radius: 12px;
    border-top: 12p;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(58, 216, 255);
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-radius: 10px !important;
    color: #000000;
}

.accordion-button:not(.collapsed) {
    background: #a8e6ff;
    color: #8b3800;
}

.company-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
}

@media(max-width: 768px) {
    .tab-box {
        display: flex;
        gap: 10px;
    }

    .tab-btn {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .tab-btn i {
        display: none !important;
    }
}

.enquiry-para {
    align-items: center;
    text-align: center;
    max-width: 1200px;
    justify-content: center;
    margin-bottom: 30px;
}

.form-table {
    padding: 30px;
    border: 1px solid rgb(46, 231, 255);
    background-color: #f5f4f4;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .footer-heading-2 .row {
        display: block;
    }

    .footer-heading-2 .col-6 {
        width: 100%;
    }
}



.premium-tab-sec {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
        url("../img/gear-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* DESKTOP TABS */
.tab-list .tab-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgb(92, 92, 92);
}

.tab-item:hover,
.tab-item.active {
    background: linear-gradient(135deg, #0080ae, #3abcdf);
    transform: translateX(5px);
}

.tab-content-box {
    background: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid #3abcdf;
}

.tab-img {
    display: none;
    width: 100%;
    border-radius: 12px;
}

.tab-img.active {
    display: block;
}

.tab-desc {
    display: none;
    color: #000000;
    margin-top: 15px;
}

.tab-desc.active {
    display: block;
}

/* MOBILE ACCORDION */
.accordion-tabs .acc-item {
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.left-tabs {
    align-items: center;
    text-align: center;
}

.right-tabs {
    align-items: center;
    text-align: center;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
}

.acc-icon {
    font-size: 20px;
    transition: 0.3s;
}

.acc-item.active .acc-icon {
    transform: rotate(45deg);
}

/* smooth animation */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.acc-item.active .acc-body {
    max-height: 500px;
    padding: 15px;
}

.acc-body img {
    width: 100%;
    border-radius: 10px;
}

.accordian-para {
    margin-top: 10px;
}


/* client logo slide section start */

/* Section Heading */
.be-authorized-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraph */
.para-we {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
}

/* Marquee Container */
.brands-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Marquee Track */
.brands-track {
    display: flex;
    width: max-content;
    /* Track width depends on content */
    gap: 30px;
    animation: scrollBrands 20s linear infinite;
}

/* Brand Images */
.brands-track img {
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Animation */
@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover (desktop) */
.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 1024px) {
    .brands-track {
        gap: 25px;
        animation-duration: 15s;
    }

    .brands-track img {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .brands-track {
        gap: 20px;
        animation-duration: 15s !important;
    }

    .brands-track img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .brands-track {
        gap: 15px;
        animation-duration: 10s;
    }

    .brands-track img {
        height: 50px;
    }
}


.gw-all-products-btn {
    display: inline-block;
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    /* yellow text */
    background: #000;
    /* black background */
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgb(23, 216, 250);
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    transform: skewX(-60deg);
    animation: shineLTR 1.5s linear infinite;
    pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Hover effect */
.gw-all-products-btn:hover {
    color: #ffffff;
    background: #1a3e72;
    /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
    transform: translateY(-3px);
}

/* client logo slide section end */


/* our trusted client section start */
.trusted-clients-section {
    padding: 60px 20px;
    background: #f9fafc;
    text-align: center;
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.trusted-header {
    margin-bottom: 40px;
}

.trusted-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.trusted-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Logos Row */
.trusted-logos-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

/* Logo Image */
.trusted-logo-img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover Effect */
.trusted-logo-img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .trusted-logos-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        /* pehle 20px tha → ab kam kar diya */
    }

    .trusted-logo-img {
        height: 60px;
        /* height kam ki → gap automatically kam lagega */
    }
}

@media (max-width: 576px) {
    .trusted-logos-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* our trusted client section end  */


/* updation start */

/* new trusted client section start */

.slide-multiple-image-section {
    overflow: hidden;
    background: #fff;
}

.slide-multiple-image-container {
    padding: 10px 15px;

}

.slide-multiple-image-title {
    font-size: 32px;
}

.slide-multiple-image-text {
    font-size: 16px;
    margin-top: 20px;
}

/* Row Base */
.slide-multiple-image-row {
    overflow: hidden;
    margin: 20px 0;
}

/* Track */
.slide-multiple-image-track {
    display: inline-flex;
    gap: 20px;
    width: max-content;
}

/* Image */
.slide-multiple-image-item {
    max-width: 204px;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.3s ease;
    border: 1px solid rgb(4, 158, 200, 1);
    border-radius: 10px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.slide-multiple-image-item:hover {
    /* transform: scale(1.05); */
}

/* Left to Right */
.slide-multiple-image-ltr .slide-multiple-image-track {
    animation: slideMultipleImageLTR 50s linear infinite;
}

/* Right to Left */
.slide-multiple-image-rtl .slide-multiple-image-track {
    animation: slideMultipleImageRTL 50s linear infinite;
}

/* Animations */
@keyframes slideMultipleImageLTR {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slideMultipleImageRTL {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-multiple-image-item {
        max-width: 160px;
        width: 100%;
        aspect-ratio: 16 / 7;
        height: auto;
    }
}

/* new trusted client section end */

/* excellent-delivery-section-start */
.delivery-section {
    position: relative;
    width: 100%;
    min-height: 75vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Slider Full Size */
.delivery-image {
    width: 100%;
    height: 75vh;
}

/* Image */
.delivery-image img {
    width: 100%;
    height: 75vh !important;
    object-fit: cover;
}

/* Overlay Card */
.delivery-card {
    position: absolute;
    right: 60px;
    bottom: 60px;
    width: 420px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.delivery-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111;
}

.delivery-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Button */
.know-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 18px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.know-more-btn:hover {
    background: #333;
}

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

    .delivery-section {
        min-height: auto;
    }

    .delivery-image {
        height: 35vh;
    }

    .delivery-image img {
        height: 35vh !important;
    }

    .delivery-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 92%;
        margin: 40px auto 20px auto;
        transform: translateY(-20px);
    }

    .delivery-card h2 {
        font-size: 18px;
    }

    .delivery-card p {
        font-size: 14px;
    }
}


/* excellent-delivery-section-end */


/* image slide start */
/* Card spacing */
.hproductsitem {
    padding: 10px;
}

/* Image box */
.card-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgb(0, 0, 0);
}

/* Image */
.card-img-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Bottom text overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    color: #fff;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #ffffff !important;
}

/* 🔥 Blue hover layer */
.card-img-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.6), transparent);
    transition: 0.4s ease;
    z-index: 1;
}

/* Hover effect */
.card-img-box:hover::after {
    height: 60%;
}

/* Image zoom */
.card-img-box:hover img {
    transform: scale(1.05);
}

/* Slick dots */
.slick-dots li button:before {
    color: #860000 !important;
}

.slick-dots li.slick-active button:before {
    color: #ff6600;
}

/* Section spacing */
.hoffercardmain {
    padding: 10px 0;
    margin-bottom: 20px;
}

.product-heading {
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Cinzel', serif !important;
}

.product-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    position: relative;
    display: inline-block;
    /* font-family: 'Cinzel', serif !important; */
}

.product-heading-2 {
    color: #049ec8;
}

@media (max-width: 768px) {

    .product-heading {
        text-align: center;
        /* 👈 main fix */
    }

    .product-heading h2 {
        font-size: 26px;
        /* thoda adjust kar lo mobile ke liye */
    }

    /* optional: underline bhi center ho */
    .product-heading h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

}

/* 🔥 underline effect (premium look) */
.product-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    /* background: #ff6600; */
}

/* image slide section end */

.hot-steel {
    color: #049ec8 !important;
}




/* left side 21 year section start */
/* Highlight Box */
.about-highlight-box {
    display: flex;
    flex-wrap: wrap;
    /* Wrap on smaller screens */
    gap: 30px;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 25px;
    background: #ffffff;
    padding: 10px 10px;
    /* Proper padding */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(224, 224, 224);
}




.highlight-year {
    text-align: center;
    color: #ffffff;
    padding: 15px 20px;
    /* border-radius: 10px; */
    font-size: 1rem;
    font-weight: 600;
    /* border: 3px solid #ff651f; */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), url(../img/side-background.webp) center center no-repeat;
    background-size: cover;
    border-radius: 10px;


}






.highlight-year h2 {
    font-size: 48px;
    /* Bigger number */
    margin: 0 0 10px 0;
    color: #ffffff !important;
    font-family: 'Cinzel', serif !important;
    /* font-family: "Rubik", sans-serif; */
}


.highlight-features p {
    margin-bottom: 8px;
    font-weight: 500;
}

.about-image-wrapper {
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .about-highlight-box {
        flex-direction: column;
        /* Stack vertically */
        text-align: left !important;
        /* Section text left */
        padding: 20px;
    }

    .about-highlight-box .highlight-year {
        flex: unset;
        text-align: center !important;
    }


    .about-highlight-box .highlight-features {
        flex: unset;
        text-align: left !important;
        /* Left align */
    }

    .about-highlight-box .highlight-features p {
        justify-content: flex-start;
        /* Left align icons and text */
        font-size: 13px;
    }
}

.highlight-features i {
    color: #02245b;
    margin-right: 8px;
}

/* left side 21 year section end */



/* ===== new counter section start ===== */
.new-coun-section {
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
        url("../img/counter-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* background-color: #062847 !important; */
    padding: 30px 20px;
    position: relative;
    color: #fff;
    margin-bottom: 50px;
}



/* ===== CONTAINER ===== */
.new-coun-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== CARD ===== */
.new-coun-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 15px 20px;
    background: rgba(0, 176, 207, 0.322);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    transition: 0.3s;
}

.new-coun-icon {
    width: 60px;
    /* size adjust kar lo */
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    margin-top: 10px;
}

.new-coun-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== ICON ===== */
.new-coun-icon {
    font-size: 45px;
    color: #ffd700;
    margin-bottom: 15px;
}

/* ===== NUMBER WRAPPER ===== */
.new-coun-number-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

/* ===== NUMBER ===== */
.new-coun-number {
    font-size: 32px;
    font-weight: 500;
    /* margin-top: -10px; */
}

/* ===== BIG + % SIGN ===== */
.new-coun-sign {
    font-size: 30px;
    font-weight: 800;
    color: #00daff;
}

/* ===== TITLE ===== */
.new-coun-title {
    margin-top: 0px;
    font-size: 18px;
    letter-spacing: 1px;
}



/* 1st banner updation */

.custom-carousel {
    position: relative;
    overflow: hidden;
    height: 580px;
    /* 👈 same height jo dusre banner ka hai */
}

/* Video full cover kare */
.video-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}



/* Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

/* Text */
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 👈 full height लेगा */
    z-index: 2;

    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    text-align: center;
}

@media (max-width: 768px) {
    .custom-carousel {
        height: 150px !important;
    }
}

@media (max-width: 768px) {
    .banner-subtitle {
        max-width: 300px;
    }
}

.banner-content {
    position: relative;
    display: inline-block;
    padding: 40px 70px;
    /* left-right padding bada diya */
}

/* Corners */
.banner-content::before,
.banner-content::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
}

/* Top Left */
.banner-content::before {
    top: 0;
    left: -50px;
    /* sirf left me gap badhaya */
    border-right: none;
    border-bottom: none;
}

/* Bottom Right */
.banner-content::after {
    bottom: 0;
    right: -50px;
    /* sirf right me gap badhaya */
    border-left: none;
    border-top: none;
}

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

    .banner-content::before,
    .banner-content::after {
        display: none;
    }
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.banner-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 1px;
}

.banner-heading {
    /* font-family: 'Cinzel', serif !important;  */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem !important;
    }

    .banner-subtitle {
        font-size: 0.7rem !important;

    }
}

/* welcome image changer section start */

/* New Slider Wrapper */
.welcome-about-image {
    position: relative;
    width: 80%;
    height: 70%;
    overflow: hidden;
}

/* Images */
.welcome-about-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Show active + first image */
.welcome-about-image-item.active,
.welcome-about-image-item:first-child {
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .shubhika-about-img-container {
        min-height: 400px;
    }
}


/* new choose section start */
.new-choose-section {
    padding: 60px 0;
    background: #f9fafc;
}



.new-choose-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;

}

.new-choose-header p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.new-choose-card {
    background: #fff;
    padding: 20px 10px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    border: 1px solid rgb(201, 201, 201);
}


.new-choose-card i {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 15px;
    transition: 0.3s;
}

.new-choose-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.new-choose-card p {
    font-size: 15px;
    color: #777;
}

/* Hover Effect */
.new-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.new-choose-card:hover i {
    color: #ff6600;
}

/* Responsive */
@media (max-width: 991px) {
    .new-choose-card {
        /* margin-bottom: 20px; */
    }
}

@media (max-width: 768px) {
    .new-choose-header h2 {
        font-size: 26px;
    }
}

/* new choose section end */

/* new-infrastructure paragraph */

.new-infra-video-box {
    width: 100%;
    max-width: 500px;
    height: 280px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
}


.new-infra-content {
    text-align: justify;
}

@media (max-width: 768px) {
    .new-infra-content {
        margin-top: -50px !important;
    }
}

.new-infra-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .new-infra-video-box {
        height: 150px;
    }

    .footer-brand {
        height: 200px;
    }

    .mobile-footer {
        display: none;
    }
}

.highlight-year h2::after {
    content: "+";
}


.list-d {
    left: -58px !important;
}