/********** 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: #ffe05b;
}

.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: #fde50d !important;
        /* active link color */
    }
}

.sticky-top.navbar-dark .navbar-nav .nav-link.active {
    color: yellow;
}

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

.navbar-dark .navbar-toggler {
    color: rgb(255, 217, 0) !important;
    border-color: rgb(255, 217, 0) !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(128, 68, 0);
    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 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../img/banner/breadcrumb.png) center 45% no-repeat;
    background-size: cover;
}



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

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




.header-logo {
    height: 100px;
    /* 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: 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(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: 'Cinzel', serif;
    font-size: 45px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900 !important;
    color: rgb(0, 45, 87) !important;
}

.main-heading-2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    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(128, 68, 0) !important;
}

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

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

.paragraph {
    color: rgb(90, 90, 90);
    text-align: justify;
}

.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: -90px;
}

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


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

.shubhika-about-img {
    width: 100%;
    max-width: 500px;
    /* desktop pe limit */
    height: auto;
    object-fit: cover;
    margin-top: 30px;
}

@media (max-width: 576px) {
    .shubhika-about-img {
        max-width: 600px;
        margin-top: -40px !important;
        /* mobile pe aur chhota */
    }
}

.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, #061935, #465e83) !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("../img/holistic-background.webp");
    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("../img/light-background-1.webp");
    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("../img/service-background.jpg");
    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('img/service-icon-bg.png');
    /* icon background */
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

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

}

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

}

.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("../img/light-background-2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -90px;
}

.call-icon-back {
    background: linear-gradient(135deg, #061935, #465e83) !important;
    border: 3px double yellow;
}

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





/*** 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-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, #061935, #465e83) !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: -100px;
    margin-bottom: -100px;
}

.product-item {
    position: relative;
    background: #ffffff;
    padding: 35px 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%;
    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;
}

@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;
    }
}

.custom-carousel {
    position: relative;
}

.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: yellow !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: 1.5rem;
    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;
}

.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;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #6B6A75;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;

    left: 50%;
    right: auto;
    transform: translateX(-50%);
}



@media (max-width: 768px) {
    .dropdown-menu {
        left: 0;
        right: auto;
        transform: translateX(0);
        min-width: 100%;
    }

    .mobile-hide {
        display: none;
    }
}

/* gallery section start */

.media-section {
  padding: 50px 20px;
  background: #ffffff;
  font-family: 'Arial', sans-serif;
  margin-top: -50px;
}

.tabs {
  text-align: center;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 30px;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  background: #e0e0e0;
  color: #333;
  font-size: 16px;
  border-radius: 30px;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #007bff;
  color: #fff;
}

.tab-content {
  display: none;
}

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

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.photo-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  height: 300px; /* fixed card height */
}

.photo-card img {
  width: 100%;
  height: 240px; /* fixed image height */
  object-fit: cover; /* ensures image fills without distortion */
  display: block;
}

.photo-card h4 {
  padding: 20px;
  font-size: 16px;
  color: #333;
  margin: 0;
}

.photo-card:hover {
  transform: scale(1.05);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  height: 300px; /* same fixed height */
  display: flex;
  flex-direction: column;
}

.video-card iframe {
  flex: 1; /* iframe fills remaining space */
  width: 100%;
  object-fit: cover;
}

.video-card h4 {
  padding: 10px;
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Hover effect */
.photo-card:hover, .video-card:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .video-card iframe {
    height: 180px;
  }
  .photo-card {
    height: 280px;
  }
}
/* gallery section end */

