:root {
    --theme-primary: #1d1d6e;
    --theme-secondary: #ffc107;
    --body-color: #f6f6ef;
    --red-color: #e83720;
    --gradient-color: linear-gradient(100deg, #1d1d6e 20%, #e83720 50%, #1d1d6e 80%);
    --button-gradient: linear-gradient(45deg, #1d1d6e 0%, #e83720 100%);
}

.bg-navy {
    background: linear-gradient(135deg, #1d1d6e 20%, #e83720 48%, #1d1d6e 80%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--body-color);
}

h1, h2, h3, h4, h5 {
    color: var(--theme-primary);
    font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
}

a {
    color: var(--theme-primary);
}

.underline-img {
    width: 100%;
    max-width: 280px;
}

.yello-bar-icon {
    width: 100%;
    position: fixed;
    z-index: 10000;
    top: 8px;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
}

    .yello-bar-icon ul {
        float: right;
    }

        .yello-bar-icon ul li {
            display: inline-block;
            padding: 8px 0px 4px;
            list-style: none;
        }

            .yello-bar-icon ul li a {
                padding: 0px 12px 0px 12px;
                text-decoration: none;
            }

.yello-bar-right::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #000;
    margin-left: 5px;
    vertical-align: middle;
    position: relative;
    /* top: -8px; */
}

/* ------------------Intro----------------- */

.video-size {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.welcome-logo {
    width: 100%;
    max-width: 800px;
    padding: 10px 30px;
}

@media (max-width: 576px) {
    .welcome-logo {
        max-width: 100%;
        min-width: auto;
        padding: 8px 12px;
    }

    #welcomeBanner {
        text-align: center;
        padding: 10px 0;
    }

    .subline {
        font-size: 14px;
    }
}

/* ----------------Navbar---------------- */

.main-header {
    position: relative;
    display: block;
    width: 100%;
    z-index: 99;
    clear: both;
}

.navbar-wrapper1 {
    background: var(--gradient-color);
    border-radius: 10px;
    position: fixed;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    padding: 12px 0px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #ffc107;
}

.navbar {
    padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 10px;
}

.nav-link {
    color: #fff !important;
    padding: 10px 20px;
    transition: all 0.2s;
}

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }


.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: white;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 50%;
    margin: 0px;
}

#navbarNav {
    margin: 0px 15px;
}

.home-icon {
    font-size: 20px;
}

.yello-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1201px;
    top: 6px;
}

@media (max-width: 1400px) {
    .yello-bar {
        top: 11px;
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .yello-bar {
        top: 11px;
    }
}

@media (max-width: 992px) {
    .yello-bar {
        top: 12px;
    }
}

/* Logo */

.logo {
    position: fixed;
    top: -86%;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    z-index: 20;
    border-radius: 50%;
    padding: 6px;
}

    .logo a {
        display: block;
        position: relative;
    }

    .logo img {
        width: 100%;
        height: auto;
        display: block;
    }

/*----------------------------------------------- wn ------------------------------------*/

/* =========================== BASE DROPDOWN STYLE =========================== */
.nav-item.dropdown {
    position: static;
    /* required to prevent full-width mega behavior */
}

.dropdown-menu {
    width: 270px !important;
    background: var(--button-gradient);
    border: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease-out;
}

/* Dropdown item */
.dropdown-item {
    color: #ffffff !important;
    padding: 8px 12px;
    transition: 0.3s;
    white-space: normal;
}

/* Dropdown item */
.offcanvas-body .dropdown-item {
    color: var(--theme-secondary) !important;
    padding: 10px 20px;
    transition: 0.3s;
    white-space: normal;
    /* background: var(--red-color); */
    border-bottom: 1px solid var(--theme-secondary);
}

.dropdown-item:hover {
    background-color: var(--theme-secondary) !important;
    border-radius: 8px;
}

/* =========================== HOVER TO OPEN DROPDOWN =========================== */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    /* show */
    opacity: 1;
    /* fade-in */
    visibility: visible;
    /* ensure clickable */
    transform: translateY(0);
    /* slide-down animation */
}



/* For right-side dropdown alignment */
/* .navbar-nav.ms-auto .dropdown-menu {
  right: 0;
  left: auto;
} */


/* --------------Hero Section-------------- */

.hero {
    position: relative;
    height: calc(100vh);
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#welcomeBanner {
    transition: opacity 1s ease;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.55);
}

/* Overlay */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Center text */
.hero .center-copy {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    top: 5%;
}

.pretitle {
    letter-spacing: .2rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff;
    padding-bottom: 6px;
}

.brand-title {
    font-family: Cinzel, serif;
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--gold);
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .65);
}

.subline {
    color: #ffffff;
    margin-top: .8rem;
    letter-spacing: .6px;
}

/* ----------------Notice Board Section--------------- */

.NoticeBoard {
    height: 850px;
    background: url('../images/Notice-Board.svg');
    background-size: contain;
    background-repeat: no-repeat;
    padding: 280px 250px 0px 180px;
    width: 100%;
    background-position: center;
}

@media (max-width: 574px) {
    .NoticeBoard {
        width: 100%;
        height: 700px;
        background-position: center;
        padding: 180px 0px 0px 0px;
        background-size: 290%;
    }
}

@media (min-width: 574px) and (max-width: 1200px) {
    .NoticeBoard {
        width: 100%;
        height: 700px;
        background-position: center;
        padding: 180px 0 0 0;
        background-size: 190%;
    }
}

.NoticeBoard .title::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    height: 150px;
    width: 9px;
    background: #FFCC00;
    z-index: 1;
    border-radius: 50px;
}

.News-card-sec {
    background: #f6f6ef;
    border-radius: 10px;
    position: relative;
    padding: 10px 10px 0px 20px;
    margin-top: 10px;
    width: 100%;
}

@media (max-width: 576px) {
    .News-card-sec {
        width: 80%;
        margin: 50px auto 0px auto; /* optional: center it */
    }
}


.overlap_one {
    text-align: center;
    font-size: 75px;
    font-weight: bold;
    position: relative;
    z-index: -1;
    color: #00000017;
    top: 70px;
}

.overlap_one1 {
    text-align: center;
    font-size: 75px;
    font-weight: bold;
    position: relative;
    z-index: -1;
    color: #00000017;
    top: -50px;
}

.carousel-controls .custom-prev1,
.carousel-controls .custom-next1 {
    background: var(--button-gradient);
    width: 35px;
    height: 30px;
    border-radius: 20%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    margin-left: 10px;
    transition: 0.3s ease-in-out;
}

    .carousel-controls .custom-prev1:hover,
    .carousel-controls .custom-next1:hover {
        background: var(--theme-secondary);
        color: #000;
    }


/* ---------------------- About Section ------------------------- */
.about {
    padding: 5% 0%;
}

.about-v2 {
    padding: 96px 0px 0px 0px;
    color: #111
}

.circle-media {
    width: clamp(340px, 48vw, 720px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

    .circle-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-quote {
    text-transform: uppercase;
    font-weight: 700;
    color: transparent;
    background: var(--theme-primary);
    /* background: linear-gradient(180deg, #d83526 0%, #1d1d6e 55%, #1d1d6e 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1.35;
    margin: 0 0 18px
}

.about-quote1 {
    color: var(--Secondar-color);
    line-height: 1.35;
    margin: 0 0 18px
}

.about-body {
    color: #24324c;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 14px
}

.box-model {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 0px 20px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    transition: transform 0.3s ease;
}

    .box-model:hover {
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
        transform: translateY(-5px);
    }

.box-model1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 0px 20px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: transform 0.3s ease;
}

    .box-model1:hover {
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
        transform: translateY(-5px);
    }

.style-list li {
    line-height: 25px;
    background: url(../images/icons/Arrow.png.svg) no-repeat left 5px;
    padding: 0px 11px 10px 31px;
    list-style: none;
    margin: 0;
    vertical-align: middle;
}

/* -----------------Principal Msg Section----------------- */

.principal-desk-section {
    background: linear-gradient(110deg, #1d1d6e 20%, #1d1d6e 50%, #1d1d6ee5 80%), url('../images/Childcare-img.svg');
    /* background: var(--gradient-color); */
    position: relative;
    overflow: hidden;
    padding-top: 3% !important;
    /* padding-left: 100px !important;
  padding-right: 100px !important; */
}

.desk-content {
    position: relative;
    z-index: 2;
}

.tabs {
    display: flex;
    gap: 1.5rem;
}

.tab {
    color: #9bb4ff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

    .tab.active {
        color: #fff;
        background: #6d88ca94;
        padding: 2px 10px;
        border-radius: 6px;
    }

.continue-link {
    color: var(--theme-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid var(--theme-secondary);
    padding: 8px 15px;
    border-radius: 10px;
    border-bottom: 1px solid var(--theme-secondary);
}

    .continue-link:hover {
        color: #fff;
        border-left: 2px solid #fff;
        border-bottom: 1px solid #fff;
    }

.continue-link1 {
    color: var(--theme-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid var(--theme-primary);
    padding: 8px 15px;
    border-radius: 10px;
    border-bottom: 1px solid var(--theme-primary);
}

    .continue-link1:hover {
        color: var(--theme-secondary);
        border-left: 2px solid var(--theme-secondary);
        border-bottom: 1px solid var(--theme-secondary);
    }

/* Right side image styling */
.desk-image {
    background: none;
    position: relative;
    min-height: 450px;
}

.principal-photo {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
}

/* Decorative faint pattern (optional) */
/* .principal-desk-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  opacity: 0.1;
  z-index: 1;
} */

@media (max-width: 991px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .desk-image {
        order: -1;
        min-height: 0px;
    }

    .principal-photo {
        position: relative;
        width: 60%;
        right: 0;
    }
}

/* Custom Tabs (Remove Bootstrap underline) */
.custom-tabs .nav-link {
    color: #0775bd !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border: none !important;
    background: transparent;
    padding: 6px 18px;
    border-radius: 6px;
}

    .custom-tabs .nav-link.active {
        background: #6d88ca94;
        color: #fff !important;
        border: none !important;
    }

    .custom-tabs .nav-link:hover {
        color: #fff;
    }

/* Remove default border */
.custom-tabs {
    border-bottom: none !important;
}

/* -------------------- Toppers Section ----------------------- */


.topper-top-box {
    background: url(../images/Student-board.svg);
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 800px;
    position: relative;
    background-size: contain;
    /* margin: 0px 30px; */
    width: 98%;
}

.toppers-padding {
    padding-top: 30%;
}

.pt-lg-32p {
    padding-top: 42%;
}

@media (max-width: 576px) {

    .toppers-padding {
        padding-top: 0%;
    }

    .topper-top-box {
        background: url(../images/Student-board.svg);
        background-repeat: no-repeat;
        background-position: center;
        min-height: 424px;
        position: relative;
        background-size: 770px;
        margin: 0;
    }

    .toppers-padding {
        display: flex !important;
        flex-wrap: wrap;
        flex-direction: row !important;
    }

    .pt-lg-32p {
        padding-top: 35px !important;
    }
}

.oasis-link {
    background: linear-gradient(240deg, #1d1d6e 0%, #e83720 100%);
}

.oasis-link2 {
    background: linear-gradient(120deg, #1d1d6e 0%, #e83720 100%);
}

.oasis-link3 {
    background: linear-gradient(60deg, #1d1d6e 0%, #e83720 100%);
}

.oasis-link4 {
    background: linear-gradient(320deg, #1d1d6e 0%, #e83720 100%);
}

.Toppers-gif {
    position: absolute;
    right: 30%;
    top: 0;
    width: 380px;
    z-index: 0;
}

.Topper-student {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 1px solid #fff;
}

.round-frame {
    width: 240px;
    position: absolute;
    top: -10px;
    z-index: -1;
}

.heading-shade {
    text-transform: uppercase;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(180deg, #d83526 0%, #1d1d6e 55%, #1d1d6e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 35px;
}

.heading-shade1 {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 35px;
}

.heding-under {
    font-size: 13px;
    font-weight: 100;
}

.heding-under1 {
    font-size: 13px;
    font-weight: 100;
    color: var(--body-color);
}

.carousel-controls .custom-prev2,
.carousel-controls .custom-next2 {
    background: linear-gradient(45deg, #932c41 0%, #e83720 100%);
    /* background: var(--button-gradient); */
    width: 40px;
    height: 33px;
    border-radius: 20%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    margin-left: 10px;
    transition: 0.3s ease-in-out;
    border: none;
    /* border: 1px solid #fff; */
}

    .carousel-controls .custom-prev2:hover,
    .carousel-controls .custom-next2:hover {
        background: var(--theme-secondary);
        color: #000;
    }

/* ------------------Toppers Section-------------- */

.toppers-sec {
    /* padding: 3% 0%; */
}

.custom-swiper-btn {
    background: var(--gradient-color);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    transition: 0.3s ease-in-out;
    z-index: 10;
    margin: 0px 20px;
}

    .custom-swiper-btn:hover {
        background: var(--theme-secondary);
        color: #000;
    }

/* ----------------------- Facilities Section ------------------------- */

.facility-showcase {
    background: var(--theme-primary);
    /* background: var(--gradient-color */
    padding: 5% 0%;
}

.facility-card {
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 330px;
}

    .facility-card img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .facility-card:hover {
        transform: translateY(-5px);
    }

.facility-text {
    position: absolute;
    bottom: -15%;
    left: 40px;
    color: #fff;
}

.facility-num {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #ffd900;
    font-family: 'Rubik', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.facility-text h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.facility-text p {
    font-size: 13px;
    color: #ffd900;
    margin: 0;
}

/* Zig-zag layout */
.top-row {
    margin-top: 0;
}

.bottom-row {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .facility-card {
        height: 320px;
    }

    .bottom-row {
        margin-top: 0;
    }
}

.facility-nav button {
    background: linear-gradient(45deg, #932c41 0%, #e83720 100%);
    /* background: var(--button-gradient); */
    color: #fff;
    border: none;
    /* border: 1px solid #fff; */
    border-radius: 10px;
    width: 45px;
    height: 38px;
    margin: 0 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .facility-nav button:hover {
        background: #e0a800;
        color: #000;
    }

.read-more1 {
    color: #ffd900;
    font-weight: 600;
    text-decoration: none;
}

    .read-more1:hover {
        text-decoration: underline;
    }

.facilitySwiper {
    overflow: hidden;
    padding-bottom: 100px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* --------------------Gallery Section------------------ */

.about-gallery {
    padding: 7% 0% 5% 0%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background: var(--button-gradient);
}

/* -------------------- Achievements Section-------------------- */

.achievements-card {
    /* border-radius: 20px; */
    overflow: hidden;
    /* background: #fff; */
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .achievements-card .thumb {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    .achievements-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .45s ease;
        border-radius: 20px;
    }

    /* .achievements-card:hover img {
  transform: scale(1.04);
} */

    .achievements-card .badge-date {
        position: absolute;
        left: 14px;
        top: 14px;
        background: #fff;
        color: #111;
        border-radius: 8px;
        padding: .35rem .75rem;
        /* font-weight: 700; */
        box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    }

    .achievements-card .body {
        padding: 22px 22px 24px;
    }

    .achievements-card .title {
        /* font-weight: 800; */
        font-size: 16px;
        margin-bottom: 50px;
    }

    .achievements-card .excerpt {
        color: #6b7280;
        margin-bottom: 14px;
    }

.btn-soft {
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 500;
    background: rgba(63, 82, 97, 0.21);
    color: var(--brand);
}

    .btn-soft:hover {
        border: none;
        border-radius: 999px;
        padding: 6px 12px;
        font-weight: 500;
        background: rgba(255, 83, 15, 0.29);
        color: var(--brand-2);
    }

@media (max-width: 992px) {
    .achievements-card .thumb {
        height: 200px
    }
}

#achievementsCarousel .carousel-control-prev,
#achievementsCarousel .carousel-control-next {
    background: var(--button-gradient);
    width: 42px;
    height: 34px;
    border-radius: 10px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
}

    #achievementsCarousel .carousel-control-prev:hover,
    #achievementsCarousel .carousel-control-next:hover {
        background: var(--theme-secondary);
        color: #000;
    }

#achievementsCarousel .carousel-control-next {
    right: 43%;
    top: 350px;
}

#achievementsCarousel .carousel-control-prev {
    left: 43%;
    top: 350px;
}

@media (max-width: 768px) {

    #achievementsCarousel .carousel-control-next {
        right: 38%;
        top: 100%;
    }

    #achievementsCarousel .carousel-control-prev {
        left: 38%;
        top: 100%;
    }
}

/*  Birthday Section  */

.birthday-sec {
    padding: 2% 0% 5% 0%;
}

#birthdaySlider .swiper-button-prev,
#birthdaySlider .swiper-button-next {
    display: none;
}

.birthday-slider-nav .birthday-prev,
.birthday-slider-nav .birthday-next {
    background: var(--button-gradient);
    color: #fff;
    width: 40px;
    height: 33px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

    .birthday-slider-nav .birthday-prev:hover,
    .birthday-slider-nav .birthday-next:hover {
        background: var(--theme-secondary);
        color: #000;
    }


.overlap-left {
    position: absolute;
    bottom: 0;
    width: 45%;
    z-index: 9;
    left: -20px;
}

.overlap-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 70%;
    position: absolute;
    z-index: 9;
}

.birthday-card-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    margin-top: 10px;
}


@media (max-width: 768px) {

    .birthday-slider-nav .birthday-prev,
    .birthday-slider-nav .birthday-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* --------------------- Footer Section ---------------------- */

.logo-footer {
    width: 145px;
    z-index: 20;
    border-radius: 50%;
    padding: 6px;
    overflow: hidden;
    margin: 0px auto;
}

    .logo-footer a {
        display: block;
        position: relative;
    }

    .logo-footer img {
        width: 100%;
        height: auto;
        display: block;
    }

    .logo-footer a::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 70%);
        transform: rotate(25deg);
        animation: shine 3s infinite;
    }

@keyframes shine {
    0% {
        transform: translateX(-150%) rotate(25deg);
    }

    100% {
        transform: translateX(150%) rotate(25deg);
    }
}

/* Footer bottom */

.site-footer {
    background: linear-gradient(180deg, #162053ed 0%, #1d1d6e 100%), url('../images/footer-bg.jpg') no-repeat center center / cover;
    padding: 2% 0% 10% 0%;
    position: relative;
}

@media (max-width: 574px) {
    .site-footer {
        /* background: linear-gradient(90deg, #0b1e71f6 0%, #1855e4f6 100%), url('../images/Logo.png') no-repeat center center; */
        padding: 2% 0% 15% 0%;
        position: relative;
    }
}

.footer-logo {
    width: 100%;
    max-width: 100px;
}

.site-footer h6 {
    color: var(--theme-secondary);
}

.social-sec {
    position: absolute;
    bottom: 10%;
    left: 50%;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
    margin-left: 0rem;
    padding-left: 0rem;
}

@media (max-width: 574px) {
    .social-sec {
        bottom: 5px;
    }
}

.social-sec li {
    list-style: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: 0.3s ease;
    cursor: pointer;
}

    .social-sec li a {
        color: white;
        font-size: 18px;
        transition: 0.3s;
    }

    .social-sec li:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-5px) scale(1.05);
    }

/*  Button  */
.btn-border-flow {
    display: inline-block;
    padding: 6px 18px;
    font-size: 18px;
    color: #fff;
    background: #1d1d6e;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 12px rgba(18, 56, 150, 0.52);
}

    .btn-border-flow::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 10px;
        background: linear-gradient(135deg, #1d1d6e 20%, #e83720 48%, #1d1d6e 80%);
        background-size: 400% 400%;
        z-index: -1;
        animation: borderMove 6s linear infinite;
    }

.btn-page-flow {
    display: inline-block;
    padding: 6px 18px;
    font-size: 18px;
    color: #fff;
    background: #0B1E44;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 12px rgba(18, 56, 150, 0.52);
    width: 100%;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
}

    .btn-page-flow::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 50px;
        background: linear-gradient(270deg, var(--theme-primary), var(--theme-primary), #1450e9, var(--theme-primary));
        background-size: 400% 400%;
        z-index: -1;
        animation: borderMove 6s linear infinite;
    }

.btn-border-flow1 {
    display: inline-block;
    padding: 6px 18px;
    font-size: 18px;
    color: var(--theme-primary);
    background: #0B1E44;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 12px rgba(18, 56, 150, 0.52);
}

    .btn-border-flow1::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 50px;
        background: linear-gradient(270deg, var(--theme-secondary), #f6f6ef, #ffc400, var(--theme-secondary));
        background-size: 400% 400%;
        z-index: -1;
        animation: borderMove 6s linear infinite;
    }

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--theme-primary);
    /* background: var(--button-gradient); */
    color: var(--theme-index);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    z-index: 999;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f6f6ef;
}

@media (max-width: 574px) {
    .back-to-top {
        position: fixed;
        bottom: 100px;
        right: 20px;
        background: var(--button-gradient);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: none;
        z-index: 999;
        transition: all 0.4s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.back-to-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.311) 0%, rgba(0, 0, 0, 0) 80%);
}

.back-to-top i {
    color: #fff;
}

.founder {
    width: 100%;
    z-index: 20;
    padding: 6px 6px 0px 6px;
    overflow: hidden;
    margin: 0px auto;
    max-width: 400px;
}

    .founder img {
        width: 100%;
        height: auto;
        display: block;
    }

/* ----------------Floating pod----------------- */

.floating-pod-main {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
    display: flex;
    gap: 15px;
}

.floating-pod {
    background: var(--button-gradient);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.pod-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
}

    .pod-item i {
        font-size: 1.7rem;
        color: #f8c400;
    }

    .pod-item span {
        display: block;
        line-height: 1.1;
    }

.top-line {
    font-weight: 600;
}

.bottom-line {
    font-size: 0.8rem;
    color: #ffffff;
    /* color: #f8c400; */
}

.pod-divider {
    height: 38px;
    border-right: 2px solid #f8c400;
}

@media (max-width: 576px) {

    #floating-pod {
        display: none !important;
    }
}

/* ------------------------Page CSS---------------------- */

.hero-banner {
    background: linear-gradient(to right, #000000d4, #000000d4), url('../images/page-bg.jpg') center / cover no-repeat;
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    z-index: 3;
    padding: 15px;
    border-radius: 100px;
    width: 95%;
    max-width: 1100px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
    height: 100px;
}

.heading-shade1 {
    text-transform: uppercase;
    color: #fff;
}

.list-group li {
    line-height: 28px;
    background: url(../images/icons/arrow-right.svg) no-repeat left 6px;
    padding: 0px 0px 0px 25px;
    list-style: none;
    margin: 8px 0px;
    vertical-align: middle;
}


/* -------------------------Accordian------------------------ */

.accordion {
    border: none;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 18px;
    font-size: 1rem;
    color: #000;
    text-align: left;
    background: var(--gradient-color);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
}

.accordion-body {
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.41);
}

    .accordion-body img {
        border-radius: 10px;
        box-shadow: 1px 1px rgba(0, 0, 0, 0.41);
        margin-bottom: 10px;
    }

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
    border-radius: 10px;
}

.accordion-button .hero-about {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #967b7b;
    border: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.accordion-button span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    color: #fff;
}

.accordion-button:hover span {
    transform: translateX(5px);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.accordion-button:not(.collapsed) {
    background: var(--theme-primary);
    color: #fff;
    border-radius: 10px;
}

.accordion-header {
    margin-bottom: 5px;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.accordion-button:not(.collapsed)::after {
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


/* =============Table=============== */

thead th {
    background: var(--gradient-color) !important;
    color: white !important;
}

table {
    position: relative;
    z-index: 9;
}

/* =============Contact Us=============== */

.contact-icon {
    max-width: 100px;
    height: auto;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
