:root {
    --primary-color: #092c6c;
    --primary-dark: #0b50bc;
    --gradient-color: linear-gradient(90deg, #0b50bc 0%, #092c6c 50%, #092c6c 100%);
    --gradient-color1: linear-gradient(270deg, #092c6c 0%, #0b50bc 100%);
    --gradient-light: linear-gradient(90deg, #fdf2e5, #fdf2e5);
    --light-color: #fceac2;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Asap Condensed", sans-serif;
    letter-spacing: .5px;
}

body {
    background: #EFEBE4;
    /* background: linear-gradient(90deg, #fffcf7, #fffcf9); */
}

p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0px;
}

.primary-color {
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
        padding: 0px;
    }
}

/* =====================Nav Bar======================== */


/* Base Configuration Rules */
.main-header {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
}

/* Master Fixed Capsule Base Frame */
.navbar-wrapper1 {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(0deg, #eef6ff 0%, #fff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    height: 75px;
    position: relative;
    /* overflow: hidden; */
}

.navbar-wrapper1::before {
    content: "";
    position: absolute;
    left: 0;
    height: 75px;
    background: url(../images/Curve-Pattern.png) no-repeat center center / cover;
    width: 100%;
    max-width: 460px;
    border-radius: 15px 0px 0px 15px;
}

/* ================= LEFT SECTION: WAVE BADGE DESIGN RULES ================= */
.logo-outer-badge {
    position: relative;
    height: 100%;
    /* width: 480px;
    min-width: 480px; */
    z-index: 2;
}

.badge-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-content-badge {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 30px 0px 20px;
    /* background: url(../images/Curve-Pattern.png) no-repeat center center / cover; */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-img-element {
    width: 130px;
    /* height: 62px; */
    object-fit: contain;
    /* border-radius: 50%; */
    /* background-color: #ffffff; */
    /* padding: 3px; */
    /* box-shadow: 0 3px 10px rgba(0,0,0,0.15); */
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-text p {
    color: var(--primary-dark);
    font-size: 14px;
    margin: 0px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
}

/* ================= CENTER SECTION: NAVIGATION LINKS ================= */
.navbar-wrapper1 .navbar {
    flex-grow: 1;
    padding: 0 30px 0 10px;
    z-index: 3;
}

.navbar-wrapper1 .navbar-nav {
    width: 100%;
    justify-content: space-evenly;
}

.navbar-wrapper1 .nav-item {
    position: relative;
}

.navbar-wrapper1 .nav-link {
    color: var(--primary-color) !important;
    font-size: 14px;
    /* font-weight: 700; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0px !important;
    transition: color 0.25s ease;
}

.navbar-wrapper1 .nav-link i {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.2s ease, color 0.25s ease;
    height: 20px;
}

/* Hover States Styles */
.navbar-wrapper1 .nav-link:hover,
.navbar-wrapper1 .nav-link.active {
    color: #007bff !important;
}

.navbar-wrapper1 .nav-link:hover i,
.navbar-wrapper1 .nav-link.active i {
    color: #007bff;
    /* transform: translateY(-1px); */
}

/* Underline Highlight Elements for Selected Link Items */
.navbar-wrapper1 .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 45px;
    height: 3px;
    background-color: #007bff;
    border-radius: 4px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-wrapper1 .nav-link.active::after,
.navbar-wrapper1 .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ================= RIGHT SECTION: CORNER DECORATION ARTIFACTS ================= */
.right-corner-curve {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 75px;
    z-index: 1;
    pointer-events: none;
    /* Prevents layout event blocks over navigation clicks */
}

.right-corner-curve svg {
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 15px 0px;
}

/* ================= DROPDOWN LAYOUT CONFIGURATION ================= */
.custom-mega-dropdown {
    width: 420px;
    min-width: 420px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    margin-top: 10px !important;
}

.dropdown-row {
    display: flex;
    gap: 15px;
}

.dropdown-image-side {
    width: 40%;
}

.dropdown-image-side img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.dropdown-links-side {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.dropdown-links-side .dropdown-item {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    border-radius: 8px;
}

.dropdown-links-side .dropdown-item:hover {
    background-color: #f1f5f9;
    color: #007bff;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }

}

.dropdown-menu {
    border-radius: 10px !important;
    background: #fff;
    border: none;
    border-top: 3px solid var(--primary-dark);
}

.dropdown-fixed {
    width: 260px;
    min-width: 260px;
    padding: 0px;
    margin-top: 3px;
}

.dropdown-menu li {
    border-bottom: 1px solid #312F2C2E;
}

.dropdown-item {
    color: var(--primary-color);
    padding: 8px 18px;
    transition: all 0.25s ease;
    border-radius: 20px;
    white-space: normal;
}

/* ================= RESPONSIVE VIEWPORTS MEDIA BREAKPOINTS ================= */
@media (max-width: 1199px) {

    /* .logo-outer-badge {
        width: 410px;
        min-width: 410px;
    } */
    .logo-text h1 {
        font-size: 17px;
    }

    .navbar-wrapper1 .nav-link {
        /* padding: 10px 10px !important; */
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .navbar-wrapper1 {
        max-width: 600px;
    }
}

@media (max-width: 1280px) {
    .navbar-wrapper1 {
        height: 65px;
    }

    .navbar-wrapper1::before {
        content: "";
        height: 65px;
    }
}

@media (max-width: 1010px) {
    .navbar-wrapper1 {
        height: 65px;
        padding-right: 15px;
        border-radius: 12px;
    }

    .main-header {
        position: fixed;
        top: 32px;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 0 10px !important;
    }

    .logo-content-badge {
        position: relative;
        z-index: 5;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0px 10px 0px 10px !important;
    }

    .logo-img-element {
        width: 110px;
    }

    .navbar-wrapper1::before {
        content: "";
        border-radius: 13px;
        height: 65px !important;
    }

    /* .logo-text h1 {
        font-size: 14px;
    } */

    .logo-text p {
        font-size: 12px;
    }

    .navbar-toggler {
        color: #092c6c;
        font-size: 36px;
        border: none;
        padding: 0;
    }

    .right-corner-curve {
        display: none;
        /* Keeps layout clean on smaller mobile resolutions */
    }
}

.offcanvas {
    background-color: var(--primary-color);
}

.offcanvas {
    width: 320px;
    background: var(--gradient-color1);
}

/* Header */

.offcanvas-header {
    padding: 20px;
}

/* Menu */

.mobile-menu {
    padding: 15px;
}

.mobile-menu .nav-link {
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: .3s;
}

.mobile-menu .nav-link i {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.mobile-menu .nav-link:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--light-color);
    padding-left: 24px;
}

.mobile-menu .nav-link.active {
    background: rgba(255, 255, 255, .15);
    color: var(--light-color);
}

/* Accordion */

.accordion {
    background: transparent;
}

.accordion-item {
    background: transparent;
    border: none;
}

.accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 500;
}

.accordion-button span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, .12);
    color: var(--light-color);
}

.accordion-body {
    padding: 8px 0 8px 18px;
}

.accordion-body a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    padding: 6px;
    border-radius: 8px;
    transition: .3s;
}

.accordion-body a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding-left: 24px;
}




/* =======================================================================
                                     HERO
========================================================================== */

#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ===================================
   MEDIA CONTAINERS
=================================== */

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: all .9s cubic-bezier(.22, 1, .36, 1);
}

/* ===================================
   SWIPER
=================================== */

.mySwiper {
    width: 100%;
    height: 100vh;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

#sliderContainer .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   COMMON OVERLAY
=================================== */

#hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .60));

    z-index: 5;

    pointer-events: none;
}

/* ===================================
   HERO NAVIGATION
=================================== */

#hero .news-prev,
#hero .news-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    z-index: 30;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .3);

    transition: .35s ease;
}

#hero .news-prev {
    left: 30px;
}

#hero .news-next {
    right: 30px;
}

#hero .news-prev:hover,
#hero .news-next:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.08);
}

#hero .news-prev i,
#hero .news-next i {
    font-size: 18px;
}

#sliderContainer.compress .hero-prev,
#sliderContainer.compress .hero-next {
    opacity: 0;
    visibility: hidden;
}

/* ===================================
   VIDEO
=================================== */

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   FLOATING ROUND BUTTON
=================================== */

#mediaSwitcher {
    position: absolute;
    right: 100px;
    bottom: 150px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    /* background: rgba(255, 255, 255, .08); */
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, .4);
    overflow: visible;
}

/* ===================================
   ANTENNA EFFECT
=================================== */

#mediaSwitcher::before,
#mediaSwitcher::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    animation: radarPulse 2.5s linear infinite;
}

#mediaSwitcher::after {
    animation-delay: 1.2s;
}

/* ===================================
   RADAR ANIMATION
=================================== */

@keyframes radarPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

/* ===================================
   CENTER TEXT
=================================== */

.switch-content {

    position: relative;
    z-index: 2;

    text-align: center;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    line-height: 1.4;

    letter-spacing: .5px;
}

/* ===================================
   GLOWING LIVE EFFECT
=================================== */

#mediaSwitcher {

    animation: liveGlow 2s ease infinite;
}

@keyframes liveGlow {

    0% {
        box-shadow:
            0 0 10px rgba(255, 255, 255, .4);
    }

    50% {
        box-shadow:
            0 0 25px rgba(255, 255, 255, .9),
            0 0 50px rgba(255, 255, 255, .5);
    }

    100% {
        box-shadow:
            0 0 10px rgba(255, 255, 255, .4);
    }
}

/* ===================================
   VIDEO HIDDEN INITIALLY
=================================== */

#videoContainer {

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: scale(.15);
}

/* ===================================
   ACTIVE VIDEO
=================================== */

#videoContainer.active {

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: scale(1);
}

/* ===================================
   SLIDER SHRINK
=================================== */

#sliderContainer.compress {

    opacity: 0;

    transform:
        translate(calc(50vw - 110px),
            calc(50vh - 250px)) scale(.08);
}

/* ============================================
                    Header Link
===============================================*/


.header-links {
    position: absolute;
    right: 10px;
    top: -26px;
}

.header-links a i {
    /* color: var(--primary-light);
  font-size: 22px; */
    /* padding: 5px 0px; */
}

.header-links a {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    margin-right: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.82);
}

.header-links a span {
    background-color: var(--primary-light);
    border-radius: 50px;
    padding: 3px 10px;
    font-weight: 500;
}


/* =====================================================
                      section padding
======================================================== */

.section-padding {
    padding: 60px 0px;
}

.section-padding-new {
    padding: 60px 0px;
    background: linear-gradient(0deg, #EFEBE4, #EFEBE4E3, #EFEBE4), url(../images/Slider/slider-4.jpg) center center / cover no-repeat;
}

.section-padding-gallery {
    padding: 60px 0px 240px 0px;
    background: linear-gradient(90deg, #EFEBE4, #EFEBE4E3), url(../images/Slider/slider-4.jpg) center center / cover no-repeat;
}


/* ===========================buttons=================================== */

.news-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: var(--gradient-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
    cursor: pointer;
    border-radius: 50%;
}

.news-nav button:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.news-nav1 button {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: var(--gradient-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
    cursor: pointer;
    border-radius: 50%;
}

.news-nav1 button:hover {
    background: #fff;
    color: var(--primary-dark);
    border: 1px solid #fff;
}

/* =============================news section=============================== */
/* ======================================================================== */

.news-card {
    border-radius: 15px 10px 10px 15px;
    width: 100%;
    margin-bottom: 25px;
    background: #fff;
}

/* .newsSwiper {
    border-radius: 30px;
} */

.news-card p {
    font-size: 14px;
}

.news-card .side-round {
    background: var(--gradient-color1);
    width: 90px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px 0px 0px 10px;
    border: none;
}

.news-card .side-round p {
    font-size: 12px;
    color: #EFEBE4;
    font-weight: 300;
}

.news-card .side-round .big-date {
    font-size: 30px;
    color: #EFEBE4;
}


.news-section {
    padding: 30px 0px;
    width: auto;
}




/* ========================About Us Section============================ */


.aboutus-h3 {
    font-weight: 700;
    color: transparent;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}



/* ==============================Quick Link========================== */

.quick-link {
    background: linear-gradient(90deg, #092c6ceb, #007ae4de), url(../images/Slider/slider-2.jpg) center center / cover no-repeat fixed;
    /* height: 400px; */
    display: flex;
    align-items: center;
}

.quick-link .quick-link-sec {
    text-align: center;
    background: #0000004f;
    border-radius: 10px;
    transition: 0.3s all ease-in-out;
}

.quick-link .quick-link-sec:hover {
    text-align: center;
    background: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.55);
}

.quick-link .quick-link-sec h6 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: 16px;
}

@media (max-width: 1330px) {
    .quick-link .quick-link-sec h6 {
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 15px;
        margin-top: 20px;
        font-size: 12px;
    }

    .quick-link-sec svg {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 10px;
    }
}

@media (min-width: 990px) and (max-width: 1086px) {
    .quick-link .quick-link-sec h6 {
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 15px;
        margin-top: 20px;
        font-size: 10px;
    }

    .quick-link-sec svg {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 10px;
    }
}

/* =================================== */


.quick-link .quick-link-sec img {
    width: 100%;
    max-width: 100px;
}

/* .quick-link-sec lord-icon {
	width: 100%;
	height: 70px;
	margin-bottom: 10px;
} */

.quick-link-sec svg {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.quick-link-sec a {
    display: inline-block;
}

.svg-bg {
    fill: #0b4483;
    opacity: .35;
}



/* ==========================principal Section==========================
======================================================================== */

.message-content-wrapper {
    position: relative;
    min-height: 400px;
}

.management-title {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    margin-bottom: 1.5rem;
}

.management-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-color);
    margin-top: 10px;
    border-radius: 2px;
}

.management-message p {
    font-style: italic;
    margin-bottom: 1rem;
}

.management-author {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.2rem;
}

.management-designation {
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Smooth Text Switch Transitions */
.fade-content {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Right Column - Interactive Image Stack Grid */
.image-stack-container {
    position: relative;
    height: 450px;
    width: 100%;
}

.img-trigger {
    position: absolute;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Inactive State Opacity */
.img-trigger:not(.active) {
    opacity: 0.35;
    filter: grayscale(20%);
}

.img-trigger:not(.active):hover {
    opacity: 0.8;
    filter: grayscale(0%);
    transform: scale(1.05) !important;
}

/* Circular Position Layout Slots */
.slot-top {
    width: 110px;
    top: 0;
    left: 6%;
}

.slot-center {
    width: 310px;
    right: 0%;
    z-index: 3;
    top: 0%;
}

.slot-bottom {
    width: 120px;
    bottom: 5%;
    left: 0%;
}


/* ===================================================================
                            FACILITY SECTION                          
====================================================================== */

/* Full Width Edge-to-Edge Reset */
.facilities-section {
    width: 100%;
    overflow: hidden;
}

.facilities-swiper {
    width: 100%;
    height: 460px;
    /* Adjust slide height here */
}

/* Swiper Item Cards Container */
.facility-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-card:active {
    cursor: grabbing;
}

/* Background Image Setup */
.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dark overlay matching the image layout reference */
.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.69);
    z-index: 1;
    transition: background 0.4s ease;
}

/* Center Content Alignment (Icon + Title + Bar) */
.facility-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 90%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Dynamic Floating Icons */
.facility-icon-wrapper {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.facility-title {
    color: #ffffff;
    font-size: 15px;
    /* font-weight: 700; */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
}

/* Custom Golden/Light Accent Underline Bar */
.facility-bar {
    width: 50px;
    height: 5px;
    background-color: #0063ff;
    margin-top: 12px;
    border-radius: 2px;
    transition: width 0.4s ease, background-color 0.4s ease;
}

/* Hover Interaction Effects */
.facility-card:hover .facility-img {
    transform: scale(1.08);
}

.facility-card:hover::before {
    background: rgba(0, 0, 0, 0.658);
}

.facility-card:hover .facility-icon-wrapper {
    transform: translateY(-5px);
    color: var(--light-color);
}

.facility-card:hover .facility-bar {
    width: 80px;
    background-color: #0063ff;
}




/* =========================================================
                         Gallery Section
==========================================================*/


/* ===================Gallery============== */


.image-container-activity {
    height: 400px;
    overflow: hidden;
    width: 100%;
    border-radius: 25px;
    border: 2px solid #0b50bc;
    margin-top: 5px;
}

.image-container-activity img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures all images fill the container consistently */
}

.underline-single-gall {
    width: 50%;
    height: 2px;
    background-color: var(--Secondary-color);
    margin: 2px auto;
    border-radius: 20px;
}

/* Gradient overlay for album name */
.gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.745) 0%, rgba(0, 0, 0, 0.526) 50%, transparent 100%);
    z-index: 2;
}

.gradient-overlay h6 {
    font-weight: 700;
}


/* Ensure swiper container has proper height */
.ActivitySwiper {
    height: auto;
    border-radius: 20px;
}

.ActivitySwiper h5 {
    color: var(--primary-color);
}


.activity-prev {
    position: absolute;
    z-index: 99;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.activity-next {
    position: absolute;
    z-index: 99;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.galler-carousels {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: var(--gradient-color1);
    color: #fff;
    font-size: 14px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    border-radius: 50%;
}

.galler-carousels:hover {
    background: var(--gradient-color);
    color: white;
}

.gallery-date {
    color: var(--primary-dark);
}

.gallery-textarea span {
    background: #FF0005;
    padding: 4px 6px;
    text-align: left;
    font: normal normal medium 10px/13px Rubik;
    letter-spacing: 1.1px;
    color: #fff;
    text-transform: uppercase;
    opacity: 1;
    position: relative;
    left: 0;
    top: -5px;
    line-height: 12px;
    border-radius: 5px;
    font-size: 12px;
}

.gallery-textarea span::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #FF0005;
    position: absolute;
    left: 4px;
    bottom: -5px;
}

.gallery-textarea .gallery-date {
    color: var(--primary-color);
}

/* ---------------- */

.single-gallery-img {
    object-fit: cover;
    width: 100%;
    height: 220px !important;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.single-gallery-img-overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 185px 0 10px;
    border-radius: 0 0 20px 20px;
    font-size: 14px;
    height: 100%;
    z-index: 1;
}

#gallery-album-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

#gallery-album-slider {
    border-radius: 20px;
}


/* Center icon */
.gallery-view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.27);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    z-index: 2;
    transition: all 0.35s ease;
}

/* Hover effect */
.gallery-card:hover .gallery-view-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

.gallery-card:hover .single-gallery-img {
    transform: scale(1.08);
}



/* ============================Achievements=========================== */

.achievemetSwiper {
    padding-bottom: 20px;
}

.achieve-padding {
    background: linear-gradient(90deg, #092c6ceb, #007ae4de), url(../images/Slider/slider-3.jpg) center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    padding: 60px 0px;
    position: relative;
}

.image-container-single {
    height: 260px;
    /* Same height as column 7 images */
    overflow: hidden;
    width: 100%;
    /* border-radius: 25px; */
}

.image-container-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0px 0px;
}

.achieve-card {
    background: #fff;
    border-radius: 25px 25px 15px 15px;
    margin: 10px;
}

.achieve-names {
    padding: 0px 20px 10px 20px;
    text-align: center;
}

.achieve-names h5 {
    color: var(--primary-dark);
}

.underline-single-gall {
    width: 50%;
    height: 2px;
    background-color: var(--Secondary-color);
    margin: 2px auto;
    border-radius: 20px;
}

/* Gradient overlay for album name */
.gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.745) 0%, rgba(0, 0, 0, 0.526) 50%, transparent 100%);
    z-index: 2;
}

.gradient-overlay h6 {
    font-weight: 700;
}

/* Custom pagination styling */
.single-gallery-pagination {
    position: relative;
    bottom: 0;
    text-align: center;
    margin-top: 1rem;
}

.single-gallery-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid var(--primary-dark);
    opacity: 1;
    transition: transform .3s ease, opacity .3s ease;
}

.single-gallery-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-dark);
    transform: scale(1.2);
}



/* Ensure swiper container has proper height */
.SingleGallerySwiper {
    height: auto;
    border-radius: 20px;
}

.SingleGallerySwiper h5 {
    color: var(--primary-dark);
    /* font-weight: 700; */
}

.gallery-title h6 {
    text-shadow: 0 1px 1px rgb(255, 255, 255);
    color: var(--Dark-color);
}

.underline-gall {
    width: 100%;
    max-width: 330px;
    height: 2px;
    background-color: var(--Secondary-color);
    border-radius: 20px;
    margin: 10px auto;
}


.achievement-button {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: var(--gradient-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    border-radius: 50%;
}

.achievement-button:hover {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.achievement-prev {
    position: absolute;
    z-index: 99;
    left: 20px;
    top: 45%;
    transform: translateY(-50%);
}

.achievement-next {
    position: absolute;
    z-index: 99;
    right: 20px;
    top: 45%;
    transform: translateY(-50%);
}


/* =======================Toppers======================= */

.toppers-gif-file {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    z-index: -1;
    width: 90%;
    opacity: 0.4;
}

.toppers-card-img {
    position: relative;
    width: 190px !important;
    height: 240px !important;
    object-fit: cover;
    margin-top: 10px;
    border: 1px solid #fff;
    padding: 3px;
    border-radius: 20px;
}

.toppers-card .round-frame {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 215px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 280px;
}

.toppers-card h6 {
    color: #fff;
    white-space: normal;
    font-weight: 600;
}

.toppers-card p {
    color: var(--light-color);
    font-size: 14px;
}


.birthday-prev {
    position: absolute;
    z-index: 99;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.birthday-next {
    position: absolute;
    z-index: 99;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.birthday1-prev {
    position: absolute;
    z-index: 99;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.birthday1-next {
    position: absolute;
    z-index: 99;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ----------birthday */

.toppers-card .round-frame1 {
    width: 265px;
    object-fit: cover;
    position: absolute;
    top: -19px;
    left: 49%;
    transform: translateX(-50%);
}



/* ===============================Viideo Code=========================== */

.video-container {
    height: 280px;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 25px;
    border: 2px solid var(--primary-dark);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =============happy Birthday=================== */

.birthday-cake-gif {
    position: absolute;
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

#BirthdaySlider .round-frame {
    width: 295px;
    object-fit: cover;
    position: absolute;
    top: -20px;
    left: 49%;
    transform: translateX(-50%);
}

#BirthdaySlider1 .round-frame {
    width: 295px;
    object-fit: cover;
    position: absolute;
    top: -20px;
    left: 49%;
    transform: translateX(-50%);
}

#BirthdaySlider .toppers-card-img {
    position: relative;
    width: 180px;
    height: 210px;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 20px;
    border: 3px solid var(--primary-dark);
}

#BirthdaySlider1 .toppers-card-img {
    position: relative;
    width: 180px;
    height: 210px;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 150px;
    border: 5px solid var(--primary-dark);
}

/* #BirthdaySlider .toppers-card {
    background: #000;
} */

#BirthdaySlider h6 {
    background: transparent;
    padding: 6px;
    border-radius: 40px;
    color: var(--primary-color);
    white-space: normal;
}

#BirthdaySlider1 h6 {
    background: transparent;
    padding: 6px;
    border-radius: 40px;
    color: var(--Secondary-color);
    white-space: normal;
}

#BirthdaySlider h3 {
    padding: 10px 0px 0px 0px;
    border-radius: 40px;
    color: #fff;
    white-space: normal;
    margin: 0px;
}

#BirthdaySlider1 h3 {
    padding: 10px 0px 0px 0px;
    border-radius: 40px;
    color: #fff;
    white-space: normal;
    margin: 0px;
}

#BirthdaySlider p {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 12px;
}

#BirthdaySlider1 p {
    color: #fff;
    font-weight: 400;
    font-size: 13px;
}

.birthday-balloon {
    position: absolute;
    z-index: 9;
    top: 15%;
    left: 20px;
    width: 140px;
}

.birthday-balloon1 {
    position: absolute;
    z-index: 9;
    top: 15%;
    right: 20px;
    width: 140px;
}

@media (max-width: 1196px) {
    .birthday-balloon {
        position: absolute;
        z-index: 9;
        top: 8%;
        left: 0px;
        width: 120px;
    }

    .birthday-balloon1 {
        position: absolute;
        z-index: 9;
        top: 8%;
        right: 0px;
        width: 120px;
    }
}

.birthday-flag {
    position: absolute;
    top: -14%;
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.birthday-button button {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: var(--gradient-color1);
    color: #fff;
    font-size: 14px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    border-radius: 50%;
}

.birthday-button button:hover {
    background: var(--gradient-color);
    color: white;
}



/* ----------------------Footer Sliders------------------------ */

#footer-slide .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    background-color: #0a3783;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: 1px solid #fff;
    border-width: 2px;
}

#footer-slide .carousel-indicators [data-bs-target]:hover {
    opacity: 0.75;
}

#footer-slide .carousel-indicators .active {
    opacity: 1;
}

#footer-slide .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -40px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}


/* ==========================Bottom Floating pof========================== */



/* ===============================FOOTER=========================== */

.site-footer {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0px 200px 0px;
}

.site-footer .quick-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Gradient overlay */
.site-footer .quick-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #092c6ce5 0%, #0b50bc 100%);
    /* background: linear-gradient(360deg, var(--extra-color), var(--extra-color), var(--extra-color)); */
    z-index: -1;
}


.our-patron {
    color: var(--light-color);
    position: relative;
    width: 190px;
    margin: 0px auto;
}



.logo-footer {
    width: 100%;
    z-index: 20;
    padding: 0px;
    overflow: hidden;
    margin: 0px auto;
    max-width: 300px;
}

.logo-footer a {
    display: block;
    position: relative;
}

.logo-footer img {
    width: 100%;
    height: auto;
    display: block;
}


@keyframes shine {
    0% {
        transform: translateX(-150%) rotate(25deg);
    }

    100% {
        transform: translateX(150%) rotate(25deg);
    }
}

.btn-border-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(0, 0, 0, 0.27);

}

.cisoft {
    color: #ffffffde !important;
    transition: 0.3s all ease-in-out;
}

.cisoft:hover {
    color: var(--primary-light) !important;
}

.btn-border-flow::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(270deg, var(--primary-color), var(--primary-dark), var(--primary-color));
    background-size: 400% 400%;
    z-index: -1;
    animation: borderMove 6s linear infinite;
}


/* ----------------------- */


/* ============================= */

.copyright {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 991px) {
    .copyright {
        position: absolute;
        bottom: 180px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-size: 13px;
        text-align: center;
    }
}


.social-sec {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-left: 0rem;
    padding-left: 0rem;
    margin-bottom: 0px;
    margin-top: 20px;
}

.social-sec li {
    list-style: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Glassmorphism effect */
    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: var(--light-color);
    transform: translateY(-5px) scale(1.05);
}

.social-sec li:hover a {
    color: var(--primary-light);
}

.footer-text-color h6 {
    color: var(--primary-light);
}

.footer-text-color p {
    color: #ffffff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    font-size: 15px;
}

.footer-text-color ul li a {
    color: #ffffff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    font-size: 15px;
}

.footer-text-color ul li a:hover {
    color: var(--light-color);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.856);
}

@media (max-width: 991px) {
    .footer-school-img {
        padding-top: 130px;
    }
}



/* =======================footer logo ================================*/


.footer-copyright {
    color: #ffffff;
    font-size: 11px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 120px;
    width: 90%;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-copyright {
        color: #ffffff;
        font-size: 11px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 80px !important;
        width: 90%;
        text-align: center;
    }
}

.footer-bottom-name {
    display: flex;
    width: 80%;
    justify-content: center;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 135px;
}

.footer-bottom-name img {
    height: 80px;
}

.footer-bottom-name div {
    width: 100%;
    background: var(--light-color);
    height: 1px;
    max-width: 500px;
    margin: 0px 15px 0px 5px;
    position: relative;
    border-radius: 10px;
}

.footer-bottom-name div::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--light-color);
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.footer-bottom-name div::after {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--light-color);
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.footer-bottom-name p {
    margin: 0px;
    color: var(--light-color);
    font-weight: 500;
    font-family: "Asap Condensed", sans-serif;
    letter-spacing: 0.5px;
}




/* ==========================Bottom Floating pof========================== */

/* Container Wrapper to sync the Bar and the Round Button */
#floating-pod-wrapper {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 110;
}

/* The Main Quick Link Pod Bar */
#floating-pod {
    background: linear-gradient(0deg, #eef6ff 0%, #fff 100%);
    border-radius: 12px;
    /* border: 1px solid #e0e0e0; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 8px 25px;
    position: relative;
    overflow: hidden;
}

/* Background Wave Pattern using ::after */
#floating-pod::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 80%;
    /* Adjust coverage area as needed */
    background: url('../images/Quick-link-img.png') no-repeat right center;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
    /* opacity: .8; */
}

/* Individual Quick Link Styles */
.pod-item {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #000000;
    position: relative;
    z-index: 2;
    transition: opacity 0.2s ease;
    width: 170px;
}

.pod-icon {
    width: 38px;
    height: auto;
}

.pod-text {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.55) !important;
    border-radius: 5px;
    padding: 0px 5px;
}

.top-line {
    font-family: "Asap Condensed", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
}

.bottom-line {
    /* font-family: "Asap Condensed", sans-serif; */
    font-size: 14px;
    /* font-weight: 300; */
    line-height: 1.2;
    color: var(--primary-color);
}

/* Center Divider Line */
.pod-divider {
    height: 40px;
    width: 3px;
    background-color: var(--primary-dark);
    margin: 0 20px;
    position: relative;
    z-index: 2;
    border-radius: 30px;
}


/* ========================== Responsive Media Queries ========================== */

@media (max-width: 728px) {

    #floating-pod-wrapper {
        width: 95%;
        bottom: 10px;
        overflow: hidden;
    }

    #floating-pod {
        width: 100%;

        display: flex;
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-behavior: smooth;

        justify-content: flex-start;

        padding: 8px 15px;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: thin;
    }

    .pod-item {
        flex: 0 0 auto;
        min-width: 160px;
    }

    .pod-divider {
        flex: 0 0 auto;
        margin: 0 15px;
    }

    /* Chrome / Edge scrollbar */

    #floating-pod::-webkit-scrollbar {
        height: 4px;
    }

    #floating-pod::-webkit-scrollbar-track {
        background: transparent;
    }

    #floating-pod::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 20px;
    }
}


/* ===========================Button Code==================== */


.learn-more1 {
    padding: 9px 26px;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s ease;
    border-radius: 60px;
    background: var(--gradient-color);
    color: #fff;
}

.learn-more1:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more2 {
    padding: 9px 26px;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s ease;
    border-radius: 100px;
    background: var(--gradient-color);
    color: #fff;
}

.learn-more2:hover {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid #00b0ff;
}


/* ============================heading Shade==================== */

.heading-shade.image-text {
    text-transform: uppercase;
    font-weight: 800;
    /* font-size: 35px; */
    margin-bottom: 2px;

    color: transparent;
    background-image: url('../images/text-bg.png');
    /* YOUR IMAGE */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 3px 8px rgba(0, 176, 255, 0.35);
}

.heading-shade.image-text1 {
    text-transform: uppercase;
    font-weight: 800;
    /* font-size: 35px; */
    margin-bottom: 2px;
    color: #fff;
}

.heding-under {
    font-size: 14px;
    font-weight: 100;
    width: 100%;
    max-width: 250px;
    margin: 0px auto;
    background: #fff;
    padding: 4px 0px;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    position: relative;
}


.heding-under1 {
    font-size: 14px;
    font-weight: 100;
    width: 100%;
    color: #fff;
    max-width: 250px;
    margin: 0px auto;
    background: var(--primary-dark);
    padding: 4px 0px;
    border-radius: 30px;
    border: 1px solid #fff;
}

.underline-img {
    width: 100%;
    max-width: 280px;
}



/* =========================Page Designs========================= */

.hero-banner {
    background: linear-gradient(to right, #0000002d, #0000002d), url('../images/aboutSchool222.jpg') center / cover no-repeat;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 40px 0px;
}



.about-quote {
    color: var(--primary-dark);
    font-size: 24px;
}

.hero-banner h6 {
    font-size: 14px !important;
}

.hero-banner h2 {
    color: #fff;
    text-transform: uppercase;
}

.hero-banner i {
    font-size: 14px !important;
}

.breadcrumb {
    display: inline-block !important;
    padding: 6px 16px !important;
    font-size: 14px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.18) !important;
    border-radius: 30px !important;
    position: relative !important;
    z-index: 1 !important;
    text-transform: uppercase;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.85;
}

.breadcrumb span {
    margin: 0 8px;
    color: #fff;
    opacity: 0.85;
}


.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;
}

.right-image {
    position: sticky;
    top: 100px;
    padding-top: 30px;
}

/* ------------------List-------------- */


.list-styling-arrow {
    padding: 0% 0% 0% 1%;
    margin: 0;
}

.list-styling-arrow li {
    position: relative;
    line-height: 28px;
    padding: 0px 0 0px 32px;
    list-style: none;
    margin: 8px 0;
}

.list-styling-arrow li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 14px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-color);
    color: #ffffff;
    font-size: 11px;
    border-radius: 20px;
}


thead th {
    background: var(--gradient-color) !important;
    color: #fff !important;
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
}

table td {
    font-size: 15px;
    background: #ffffff7a !important;
}

ol li {
    line-height: 28px;
    padding: 0px 0px 0px 0px !important;
    list-style-type: disc !important;
    background: none !important;
    list-style: none;
    margin: 8px 0px;
    vertical-align: middle;
}

/* ===================According===================== */

/* Remove default */
.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 10px;
}

/* Default ALL buttons */
.accordion-button {
    background: var(--primary-dark);
    color: #fff;
    border-radius: 10px !important;
    /* default for all */
    padding: 15px 20px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* Remove Bootstrap arrow */
.accordion-button::after {
    display: none;
}

/* Arrow */
.arrow-icon {
    transition: transform 0.3s ease;
    font-size: 18px;
    color: #fff;
}

/* Rotate when open */
.accordion-button:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
}

/* OPEN STATE HEADER */
.accordion-button:not(.collapsed) {
    border-radius: 10px 10px 0 0 !important;
    background: var(--primary-color);
}

/* BODY STYLE */
.accordion-body {
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
    padding: 20px;
}

/* Remove gap between header & body */
.accordion-collapse {
    border: none;
    margin-top: -5px;
    /* 👈 important for seamless look */
}

/* Remove focus */
.accordion-button:focus {
    box-shadow: none;
}