:root {
    --blue-color: #003366;
    --pink-color: #ff6f9c;
    --dark-grey: #333333;
}

h2 {
    font-size: 23px;
    font-weight: bold;
    color: var(--blue-color);
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: ghostwhite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', Montserrat;
}

p,
a {
    font-family: 'Roboto', sans-serif;
}

h2.section-heading {
    padding-bottom: 30px;
    text-align: center;
    font-size: 35px;
    position: relative;
    margin-bottom: 15px;
}

h2.section-heading:after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--pink-color);
    bottom: 20px;
    left: 44%;
    width: 150px;
}

/* ----------- scroll header css ----------- */
#header-scroll {
    position: fixed;
    top: -140px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    background: white;
    color: var(--dark-grey);
    /* padding: 20px; */
    transition: top 0.2s ease-in;
    z-index: 1000;
}

header#header-scroll ul li a {
    color: var(--dark-grey);
    padding: 8px 5px;
}

header#header-scroll ul li a:hover {
    color: var(--pink-color) !important;
}

header#header-scroll ul li ul.dropdown-menu li a:hover {
    color: white !important;
    font-weight: 400;
}

ul.dropdown-menu li a i {
    color: deeppink;
    padding: 6px 7px;
    background: peachpuff;
    border-radius: 30px;
    margin-right: 10px;
    font-weight: bold;
}

/* ul.dropdown-menu li a i:hover{
    color: white;
} */

ul.dropdown-menu li {
    padding: 5px 5px;
    border-bottom: 1px solid papayawhip;
}

ul.dropdown-menu li:last-child {
    border-bottom: none;
}

header#header-scroll .logo-items a img {
    height: 110px;
    width: 150px;
}

header#header-scroll .myNewNavMain {
    padding: 35px 4px;
}

/* ------------- other pages scroll header css ----- */
#header-scroll-other-pages {
    position: fixed;
    top: -140px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    background: white;
    color: var(--dark-grey);
    /* padding: 20px; */
    transition: top 0.2s ease-in;
    z-index: 1000;
}

header#header-scroll-other-pages ul li a {
    color: var(--dark-grey);
    padding: 8px 5px;
}

header#header-scroll-other-pages ul li a:hover {
    color: var(--pink-color) !important;
}

header#header-scroll-other-pages ul li ul.dropdown-menu li a:hover {
    color: white !important;
}

header#header-scroll-other-pages .logo-items a img {
    height: 110px;
    width: 160px;
}

header#header-scroll-other-pages .myNewNavMain {
    padding: 34px 4px;
}

.header-area.other-pages-header .myNewNavMain ul li a:hover {
    color: var(--pink-color) !important;
}

.header-area.other-pages-header .myNewNavMain ul li ul.dropdown-menu li a:hover {
    color: white !important;
}



/* ------------ Top Header CSS ------------- */
.upper-top-header {
    background: var(--blue-color);
    color: white;
    padding: 3px;
}

.myHeaderSubLogo {
    padding: 10px 10px;
}

.myHeaderSubLogo i {
    height: 29px;
    width: 50px;
    padding: 5px 8px;
    font-size: 22px;
}

.upper-top-header-btn {
    display: flex;
    justify-content: right;
    padding: 8px 15px;
}

.upper-top-header-btn .enquiry-form-btn {
    border: 1px solid white;
    margin-right: 3rem;
    padding: 4px 16px;
}

.upper-top-header-btn .enquiry-form-btn a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.upper-top-header-btn .enquiry-form-btn a:hover {
    color: grey;
}

.upper-top-header-btn .central-mobile-no {
    padding: 5px;
}

.upper-top-header-btn .central-mobile-no a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.upper-top-header-btn .central-mobile-no a i {
    margin-right: 10px;
}



/* ------------ Header CSS ---------- */
header#site-header {
    position: absolute;
    top: 0;
    width: 100%;
}

div#skipCont {
    padding: 15px;
}



.navbar-menu {}


.logo-items a img {
    height: 150px;
    width: 170px;
}


a.nav-link {
    color: white;
    font-weight: 400;
    font-size: 15px;
}

.myNewNavMain ul.navbar-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.myNewNavMain {
    padding: 54px 5px;
    justify-content: end;
}

.myNewNavMain>ul>li>ul.dropdown-menu {
    position: absolute;
    /* width: 200px; */
    left: 0;
    top: 100%;
    z-index: 999;
    border: none;
    /* border-top: 5px solid midnightblue; */
    visibility: hidden;
    box-shadow: 0px 2px 1px 0px whitesmoke;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    max-height: 350px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0;
    border-radius: 6px;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.myNewNavMain>ul>li.nav-item a:hover {
    color: white !important;
    /* background: deeppink; */
    transition: all 0.2s ease-in-out;
    border-bottom: 2px solid var(--pink-color);
    padding-bottom: 2px;
}

.myNewNavMain>ul>li.dropdown:hover>ul.dropdown-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: block;
}

.myNewNavMain ul li.dropdown ul.dropdown-menu li a {
    padding: 5px 8px;
}

.myNewNavMain ul li.dropdown ul.dropdown-menu li a:hover {
    border-bottom: none;
    background-color: var(--pink-color);
    color: white;
}

ul.navbar-nav li.nav-item {
    margin-left: 15px;
}

ul.navbar-nav .bg-nav {
    background: lightblue;
    padding: 2px 0px;
}

/* ------------ mobile menu css start -------------- */


.mobile-responsive-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
} 
.mobile-response-logo img {
    width: 150px;
    height: 110px;
}

header.header-mobile {
    height: 100%;
    align-items: center;
    display: flex;
} 

.mobile-responsive-menu .mobile-menu nav ul {
    padding-left: 0;
}

.mobile-responsive-menu .mobile-menu nav ul li {
    list-style: none;
}

.mobile-responsive-menu .mobile-menu nav ul li a {
    text-decoration: none;
}

            /*======================================
 HAMBURGER
======================================*/

      .mobile-responsive-menu .menu-toggle {
        width: 46px;
        height: 46px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border-radius: 10px;
        transition: 0.3s;
      }

      .mobile-responsive-menu .menu-toggle:hover {
        background: #f2f4f8;
      }

      .mobile-responsive-menu .menu-toggle span {
        width: 24px;
        height: 2.5px;
        background: #222;
        margin: 3px 0;
        transition: 0.35s;
        border-radius: 10px;
      }

      /*======================================
 OVERLAY
======================================*/

      .mobile-responsive-menu .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(2px);
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        z-index: 999;
      }

      .mobile-responsive-menu .overlay.show {
        opacity: 1;
        visibility: visible;
      }

      /*======================================
 MOBILE MENU
======================================*/

      .mobile-responsive-menu .mobile-menu {
        position: fixed;
        top: 0;
        right: -380px;
        width: 340px;
        max-width: 90%;
        height: 100vh;
        background: #fff;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.18);
        transition: 0.45s ease;
        z-index: 1001;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
      }

      .mobile-responsive-menu .mobile-menu.active {
        right: 0;
      }

      /*======================================
 TOP
======================================*/

      .mobile-responsive-menu .mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px;
        border-bottom: 1px solid #eee;
      }

      .mobile-responsive-menu .mobile-top img {
        height: 55px;
      }

      .mobile-responsive-menu .close-btn {
        width: 42px;
        height: 42px;
        border: none;
        background: #f2f4f8;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        transition: 0.3s;
      }

      .mobile-responsive-menu .close-btn:hover {
        background: #0b57d0;
        color: #fff;
      }

      /*======================================
 MOBILE LINKS
======================================*/

      .mobile-responsive-menu .mobile-menu nav {
        flex: 1;
        padding: 20px 0;
      }

      .mobile-responsive-menu .mobile-menu nav > ul > li {
        border-bottom: 1px solid #efefef;
      }

      .mobile-responsive-menu .mobile-menu nav > ul > li > a {
        display: block;
        padding: 17px 25px;
        font-size: 15px;
        font-weight: 500;
        transition: 0.3s;
        color: black;
      }

      .mobile-responsive-menu .mobile-menu nav > ul > li > a:hover {
        color: #0b57d0;
        padding-left: 35px;
      }

      /*======================================
 DROPDOWN
======================================*/

      .mobile-responsive-menu .dropdown-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 17px 25px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 500;
        transition: 0.3s;
      }

      .mobile-responsive-menu .dropdown-btn:hover {
        color: #0b57d0;

        padding-left: 35px;
      }

      .mobile-responsive-menu .dropdown-btn i {
        transition: 0.35s;
      }

      /* rotate icon */

      .mobile-responsive-menu .mobile-dropdown.active .dropdown-btn i {
        transform: rotate(45deg);
      }

      /* submenu */

      .mobile-responsive-menu .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        background: #f8f9fb;
        transition: max-height 0.4s ease;
      }

      .mobile-responsive-menu .mobile-dropdown.active .dropdown-menu {
        max-height: 500px;
        display: contents;
      }

      .mobile-responsive-menu .dropdown-menu li a {
        display: block;
        padding: 14px 45px;
        font-size: 14px;
        color: #666;
        transition: 0.3s;
      }
      .mobile-responsive-menu .dropdown-menu li a:hover {
        background: #fff;
        color: #0b57d0;
        padding-left: 55px;
      }
      /*======================================
 BUTTON
======================================*/
      .mobile-responsive-menu .menu-bottom {
        padding: 22px;
      }
      .mobile-responsive-menu .apply-btn {
        display: block;
        text-align: center;
        background: var(--blue-color);
        color: #fff;
        padding: 15px;
        border-radius: 8px;
        font-weight: 600;
        transition: 0.3s;
        text-decoration: none;
      }

      .mobile-responsive-menu .apply-btn:hover {
        background: #083f96;
      }

/* -------- mobile menu css end------------- */

/* --------- mobile menu default css start ----------- */

.mobile-responsive-menu-default{
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.mobile-response-sub-header header.nav-header {
    height: 100%;
    display: flex;
    align-items: center;
}

.mobile-response-sub-header header.nav-header .drawer-btn {
    height: 45px;
    width: 45px;
    border-radius: 10px;
    border: none;
    background: whitesmoke;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-response-sub-header header.nav-header .drawer-btn span{
    width: 25px;
    height: 3.5px;
    background: black;
    margin: 3px 0;
    transition: 0.35s ease;
}

#mob-def .drawer-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9998;
}

/* /* Overlay Active  */

#mob-def .drawer-overlay.active{
    opacity:1;
    visibility:visible;

}

/* /* Drawer  */

#mob-def .side-drawer{
    position:fixed;
    top:0;
    right:0;
    width:360px;
    max-width:100%;
    height:100vh;
    background:#fff;
    transform:translateX(100%);
    transition:transform .45s cubic-bezier(.23,1,.32,1);
    z-index:9999;
    overflow-y:auto;
}

/* /* Open  */

#mob-def .side-drawer.active{
    transform:translateX(0);

}

/* /* Header  */

#mob-def .drawer-head{
    height:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 25px;
    border-bottom:1px solid #eee;

}

#mob-def .drawer-head img {
    height: 55px;
}


#mob-def .drawer-head button {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: none;
    color: black;
}

/* /* Menu  */

#mob-def .drawer-menu{
    list-style:none;
    padding-left: 0;
}

#mob-def .drawer-item{
    border-bottom:1px solid #eee;
    opacity:0;
    transform:translateX(40px);
    transition:.45s;
}

#mob-def .side-drawer.active .drawer-item{
    opacity:1;
    transform:none;
}

#mob-def .drawer-item:nth-child(1){transition-delay:.08s;}
#mob-def .drawer-item:nth-child(2){transition-delay:.13s;}
#mob-def .drawer-item:nth-child(3){transition-delay:.18s;}
#mob-def .drawer-item:nth-child(4){transition-delay:.23s;}
#mob-def .drawer-item:nth-child(5){transition-delay:.28s;}
#mob-def .drawer-item:nth-child(6){transition-delay:.33s;}

#mob-def .drawer-item>a,
#mob-def .drawer-link{
    width:100%;
    padding:18px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:none;
    border:none;
    cursor:pointer;
    font-size:16px;
    font-weight:500;
    text-decoration: none;
}

/* /* Submenu  */

#mob-def .drawer-submenu{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:#fafafa;
}

#mob-def .drawer-submenu li a{
    display:block;
    padding:14px 45px;
}

#mob-def .drawer-dropdown.active .drawer-submenu{
    max-height:500px;
}

#mob-def .drawer-link i{
    transition:.35s;
}

#mob-def .drawer-dropdown.active .drawer-link i{
    transform:rotate(45deg);
}

#mob-def .side-drawer .apply-btn {
    text-align: center;
    padding: 10px;
    margin-bottom: 2rem;
}

#mob-def .side-drawer .apply-btn a {
    text-decoration: none;
    background: var(--blue-color);
    color: white;
    padding: 17px 94px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
}


#mob-def ul.drawer-submenu li a {
    text-decoration: none;
}

#mob-def ul.drawer-submenu li {
    list-style: none;
    border-bottom: 1px solid #eee;
}
#mob-def ul.drawer-submenu {
    padding-left: 0;
}
/* -------- mobile menu default css end -------------- */


/* ------------ video slider section css ---------- */
section.slider-video-new {
    position: relative;
}


.my-slider-new video {
    width: 100%;
}

/* ---------- About Section CSS --------------- */
section.about-intro-notice {
    padding: 50px 0;
}

.about-intro-notice-content {
    padding-top: 30px;
    padding-right: 20px;
}

.about-intro-notice-content h2 {
    font-size: 33px;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.about-intro-notice-content h2:after {
    border-bottom: 2px solid deeppink;
    position: absolute;
    width: 200px;
    content: "";
    bottom: 0;
    left: 0;
}

.about-intro-notice-content p {
    color: grey;
    font-weight: 400;
    font-family: sans-serif;
    font-size: 15px;
    text-align: justify;
}

.about-intro-notice-image img {
    width: 100%;
    height: 400px;
    border-radius: 40px;
}


.about-more-btn a {
    text-decoration: none;
    background: var(--pink-color);
    color: white;
    padding: 14px 25px;
    border-radius: 7px;
    font-weight: bold;
    transition: .3s ease;
}


.about-more-btn a:hover {
    border: 1px solid var(--pink-color);
    color: var(--pink-color);
    background-color: white;
}


/* ----------- Same Box Section CSS ------------- */
section.box-item {
    padding: 30px 0;
}


.box-item-all {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}

.same-box {
    display: flex;
    padding: 25px 10px;
    margin-right: 10px;
    background: transparent;
    box-shadow: 0px 1px 5px 5px whitesmoke;
}

.box-item-all .same-box:last-child {
    margin-right: 0;
}


.same-box-logo {
    display: flex;
    text-align: center;
    /* align-items: center; */
}

.same-box-logo a {
    height: 60px;
    width: 60px;
    background: var(--pink-color);
    border-radius: 50px;
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
}

.same-box-details {
    padding-left: 14px;
}

.same-box-details h3 {
    text-align: left;
    font-size: 19px;
    font-weight: bold;
    font-family: sans-serif;
    color: var(--blue-color);
}

.same-box-details p {
    text-align: left;
    font-size: 14px;
}



/* -----------upcoming events and news and updates section css -------- */
section.upcoming-event-news {
    background: var(--blue-color);
    padding: 50px 0;
    padding-top: 60px;
}

section.upcoming-event-news h2 {
    color: white;
    margin-bottom: 35px;
}

.upcoming-event {
    /* width: 340px; */
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.upcoming-event h3.up-event-head {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--blue-color) !important;
    position: relative;
    padding: 10px 0;
    margin-bottom: 20px;
}

.upcoming-event h3.up-event-head:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 35%;
    border-bottom: 2px solid var(--pink-color);
    width: 100px;
}

.event-scroll-list {
    position: relative;
    overflow: hidden;
    height: 373px;
}

div#eventList {
    position: absolute;
    width: 100%;
    /* height: 500px; */
    animation: scroll-down 25s linear infinite;
}

.upcoming-event:hover #eventList {
    animation-play-state: paused;
}

@keyframes scroll-down {
    0% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.event-date {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d8d8d8;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;
}

.event-date h3 {
    font-size: 18px;
    color: #222;
    line-height: 15px;
    margin-bottom: 0;
    font-weight: bold;
}

.event-date span {
    font-size: 12px;
    color: #777;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-family: sans-serif;
}

.event-info p {
    font-size: 12px;
    color: #777;
    font-family: sans-serif;
    margin-bottom: 0;
}

.event-icon {
    color: #c89d2b;
    font-size: 22px;
}

/* ---------- calendar css start --------- */
.calendar-section {
    flex: 1;
    background: antiquewhite;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 20px; */
}

.calendar-header small {
    color: var(--dark-grey);
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 13px;
}

.calendar-header h2 {
    font-size: 26px;
    font-weight: 600;
    color: #333 !important;
    text-align: center;
}

.nav-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.nav-btn:hover {
    background: #d7b56d;
    color: white;
}

/* ==========================
 Week Names
========================== */

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: #555;
}

.weekdays div {
    padding: 10px 0;
}

/* ==========================
 Calendar Grid
========================== */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    position: relative;
}

.day {
    position: relative;
    height: 40px;
    border-radius: 14px;
    background: #fff8ef;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.25s;
    font-weight: 500;
}

.day:hover {
    background: #f2e3bf;
}

.other-month {
    opacity: 0.35;
}

.today {
    background: var(--blue-color);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
}

/* ==========================
 Event Dot
========================== */

.event-dot {
    position: absolute;
    top: 4px;
    right: 5px;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d24d57;
}

/* ==========================
 Popup
========================== */

.event-popup {
    position: absolute;

    min-width: 240px;

    background: #fff;

    border-radius: 14px;

    padding: 15px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

    display: none;

    z-index: 50;

    animation: fade 0.25s ease;
}

.event-popup h4 {
    color: #444;
    font-size: 16px;
    margin-bottom: 6px;
}

.event-popup p {
    color: #888;
    font-size: 13px;
}

.day:hover .event-popup {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================
 Selected Day
========================== */

.day.active {
    background: #d4af63;
    color: #fff;
    font-weight: 600;
}



/* ---------- calendar css end --------- */

/* ---------- news css start --------------- */
/* --- news section css  */
/* HEADER */
.news-header {
    /* background:linear-gradient(90deg,#ff4d8d,#7a5cff); */
    color: black;
    padding: 5px;
    border-radius: 0 0 25px 25px;
}

.news-header h3.news-heading {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: var(--blue-color) !important;
    position: relative;
    padding: 10px 0;
    margin-bottom: 20px;
    padding-top: 15px;
}

.news-header h3.news-heading:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 35%;
    border-bottom: 2px solid var(--pink-color);
    width: 100px;
}


.news-header p {
    margin-top: 8px;
    opacity: 0.9;
}

/* NEWS-CONTAINER */
.news-container {
    padding: 0 15px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* CARD */
.news-card {
    display: flex;
    align-items: center;
    background: white;
    margin: 6px 0;
    padding: 3px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* DATE BOX */
.date {
    width: 80px;
    text-align: center;
    border-radius: 15px;
    padding: 5px;
    font-weight: bold;
}

.date h2 {
    margin: 0;
    font-size: 20px;
    margin-bottom: 0 !important;
}

.date small {
    font-size: 12px;
}

/* COLOR THEMES */
.pink {
    background: #ffe3ee;
    color: #ff4d8d !important;
}

.blue {
    background: #e3edff;
    color: #4d7cff !important;
}

.green {
    background: #e6f7ea;
    color: #2ecc71 !important;
}

.orange {
    background: #fff1e0;
    color: #ff9f43 !important;
}

.purple {
    background: #f1e7ff;
    color: #a55eea !important;
}

.teal {
    background: #e0fbff;
    color: #00bcd4 !important;
}

/* LINE */
.line {
    width: 4px;
    height: 60px;
    border-radius: 10px;
    margin: 0 15px;
}

.pink-line {
    background: #ff4d8d;
}

.blue-line {
    background: #4d7cff;
}

.green-line {
    background: #2ecc71;
}

.orange-line {
    background: #ff9f43;
}

.purple-line {
    background: #a55eea;
}

.teal-line {
    background: #00bcd4;
}

/* TEXT */
.text {
    flex: 1;
}

.text h3 {
    font-size: 14px;
    margin: 0;
    color: #222;
}

.news-scroll {
    position: relative;
    overflow: hidden;
    height: 378px;
}

.news-scroll-content {
    position: absolute;
    width: 100%;
    /* height: 500px; */
    animation: scroll-dow 25s linear infinite;
}

.news-scroll:hover .news-scroll-content {
    animation-play-state: paused;
}

@keyframes scroll-dow {
    0% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(-100%);
    }
}


/* ------------ image gallery section css ---------- */


section.image-gallery-full {
    padding: 60px 0;
}

.image-gallery-section-heading h2 {
    /* text-align: center;
    font-size: 33px; */
}

.image-gallery-section-heading p {
    text-align: center;
    font-size: 14px;
    color: #7a7a7a;
    font-weight: 400;
    margin-bottom: 1rem;
}


.carousel {
    /* max-width: 1200px;
    margin: auto; */
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
}

.slide {
    flex: 0 0 25%;
    padding: 10px 5px;
}

.slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    transition: transform 0.3s;
}

.slide img:hover {
    transform: scale(1.05);
}

#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

#close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #222;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    display: none;
}

.btn:hover {
    background: #444;
}


/* --------- Video Gallery Section css -------- */

section.video-gallery-full {
    padding: 60px 0;
    padding-top: 50px;
    background-color: var(--blue-color);
    /* margin-bottom: 30px; */
}

.video-gallery-section-heading h2 {
    /* text-align: center;
    font-size: 33px; */
    color: white;
    margin-bottom: 15px;
}

.video-gallery-section-heading p {
    text-align: center;
    font-size: 14px;
    color: white;
    font-weight: 400;
    margin-bottom: 1rem;
}

.video-gallery-items video {
    width: 100%;
    height: 200px;
}


/* ---------- Top Ten school section css ------ */
section.top-ten-school-section {
    padding: 60px 0;
    /* padding-top: 30px; */
}

.top-ten-school-heading h2 {
    /* text-align: center;
    font-size: 33px; */
}

.top-ten-school-heading p {
    text-align: center;
    font-size: 14px;
    color: #7a7a7a;
    font-weight: 400;
    margin-bottom: 2rem;
}

.top-ten-school-item-image a img {
    width: 100%;
    border-radius: 10px;
}

.top-ten-school-item-image {
    position: relative;
}

.top-ten-school-hover-content {
    position: absolute;
    top: 0;
    text-align: center;
    align-items: center;
    width: 100%;
    color: white;
    height: 100%;
    display: flex;
    justify-content: center;
    background: var(--dark-grey);
    opacity: 0.7;
    display: none;
}

.top-ten-school-item-image a img:hover .top-ten-school-hover-content {
    display: block !important;
}

/* ----------- footer section css -------------- */
footer.footer-section {
    padding: 30px 0;
    background-color: var(--blue-color);
    padding-bottom: 0;
}

.footer-contact h3 {
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    font-size: 23px;
    letter-spacing: 1px;
}

.footer-central-detail a {
    justify-content: center;
    display: flex;
}

.footer-central-detail a img {
    height: 111px;
    width: 143px;
    margin-bottom: 10px;
}

.footer-central-detail h3 {
    color: white;
    font-size: 23px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0px;
    letter-spacing: 1px;
}


.footer-central-detail span {
    color: goldenrod;
    justify-content: center;
    display: flex;
    font-weight: bold;
    font-size: 20px;
    position: relative;
}

.footer-central-detail span:before {
    position: absolute;
    content: "";
    border-bottom: 2px solid goldenrod;
    width: 70px;
    bottom: 0;
    left: 40%;
}

.footer-central-detail p {
    color: white;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    padding-top: 15px;
}

.footer-contact .footer-contact-social i {
    font-size: 25px;
    margin-right: 10px;
    color: white;
    border: 1px solid white;
    padding: 5px 5px;
    border-radius: 40px;
}

.footer-contact ul.quick-links {
    padding-left: 0;
}

.footer-contact .quick-links li {
    list-style: none;
    padding: 5px 0;
    border-bottom: 1px dashed dimgrey;
}

.footer-contact .quick-links li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}



.footer-contact ul.quick-links li a i {
    padding-right: 10px;
    color: goldenrod;
    font-weight: bold;
    font-size: 14px;
}

.footer-contact.detail p i {
    margin-right: 11px;
    color: goldenrod;
    padding: 10px 10px;
    background: linear-gradient(45deg, black, transparent);
    border-radius: 10px;
    font-weight: bold;
}

.footer-contact.detail p i {
    margin-right: 11px;
}

.footer-contact.detail .address {
    display: flex;
}

.footer-contact.detail .address i {
    margin-right: 11px;
    color: goldenrod;
    padding: 10px 10px;
    background: linear-gradient(45deg, black, transparent);
    border-radius: 10px;
    font-weight: bold;
    margin-right: 11px;
    height: 40px;
    margin-top: 7px;
}

.footer-contact.detail p {
    color: white;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 300;
    letter-spacing: 1px;

}

.footer-copy-upper {
    border-top: 1px solid dimgrey;
}

.footer-copyright {
    text-align: center;
    padding: 20px;
    /* border-top: 1px solid dimgrey; */
}

.footer-copyright p {
    color: white;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.footer-copyright p i {
    margin-right: 15px;
}

.link-icon {
    display: flex;
}

.link-icon i {
    color: goldenrod;
    border: 1px solid goldenrod;
    display: flex;
    text-align: center;
    align-items: center;
    height: 35px;
    padding: 18px 9px;
    border-radius: 38px;
    margin-right: 15px;
    font-size: 16px;
}

.link-icon h3 {
    position: relative;
    padding-bottom: 10px;
}

.link-icon h3:after {
    position: absolute;
    content: "";
    width: 100px;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid goldenrod;
}



/* ------------- other pages same section css  ------ */
section.all-page-same-item {
    height: 200px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.all-page-same-item-content h1 {
    position: relative;
    padding-bottom: 10px;
}

section.all-page-same-item h1:after {
    display: inline-block;
    border-bottom: 3px solid var(--pink-color);
    position: absolute;
    content: "";
    width: 130px;
    bottom: 0;
    left: 44%;
}

/* -------------- Overview Page CSS ---------- */
.header-area.other-pages-header {
    position: relative !important;
}

.header-area.other-pages-header li a {
    color: var(--dark-grey);
}

.header-area.other-pages-header .logo-items a img {
    height: 130px;
}

.header-area.other-pages-header .myNewNavMain {
    padding: 45px 4px;
}


section.about-central-academy-school {
    padding: 50px 0;
}

.about-central-content h2 {
    font-size: 33px;
}

.about-central-content p {
    text-align: justify;
    font-size: 14px;
    letter-spacing: 1px;
}

.belief-para p {
    font-size: 14px;
}

.about-central-image img {
    width: 100%;
    height: 250px;
}

.central-founder-image img {
    width: 100%;
    padding: 10px;
}

.central-founder-content h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--blue-color);
    font-weight: bold;
}

.central-founder-content p {
    font-size: 17px;
    text-align: justify;
}

.central-founder-thought {
    text-align: justify;
    font-size: 17px;
}

.about-our-vision {
    position: relative;
    background: darkred;
    color: white;
    padding: 59px 20px;
    padding-bottom: 20px;
    border-radius: 10px;
    height: 350px;
}

.about-our-vision h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    text-align: center;
}

.vision-upper-box {
    height: 100px;
    width: 100px;
    background: white;
    color: var(--dark-grey);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -50px;
    left: 40%;
    border-radius: 50%;
}

.vision-upper-box span img {
    height: 50px;
    width: 50px;
}

.about-our-mission h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--blue-color);
    font-weight: bold;
    text-align: center;
}


.about-our-vision p {
    text-align: center;
    font-size: 14px;
}

.about-our-mission p {
    text-align: justify;
    font-size: 15px;
    padding: 10px;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0px 2px 5px 4px;
}

section.about-central-founder {
    padding: 30px 0;
}

section.about-our-vision-mission {
    padding: 50px 0;
}

/* --------------- CAS Society Page CSS ------------- */
section.cas-society-overview {
    padding: 50px 0;
}

.cas-society-image img {
    width: 100%;
    padding: 5px;
    border: 3px solid var(--pink-color);
    border-radius: 10px;
}

.cas-society-content-menu {
    padding: 10px;
    border-left: 2px solid antiquewhite;
}

.cas-society-content-menu ul {
    padding-left: 0;
    background-color: whitesmoke;
}

.cas-society-content-menu ul li {
    list-style: none;
    padding: 20px;
}

.cas-society-content-menu ul li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    color: var(--dark-grey);
}

.cas-society-content-menu ul li.cas-society-link {
    background: var(--blue-color);
}

.cas-society-content-menu ul li.cas-society-link a {
    color: white;
}

section.cas-society-certification h2 {
    font-size: 30px;
}

.society-certification-content {
    padding: 20px;
    border: 2px solid var(--pink-color);
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.society-certification-content h3 {
    margin: 10px;
    text-align: center;
    padding: 10px;
    background: var(--blue-color);
    border-radius: 10px;
    color: white;
    font-size: 30px;
    text-transform: uppercase;
}

.society-certification-content p {
    text-align: justify;
    font-size: 14px;
    letter-spacing: 1px;
}

.society-certification-content p span {
    font-weight: bold;
}

section.cas-society-certification {
    padding: 50px 0;
}

.society-certification-quick-links {
    border-left: 2px solid antiquewhite;
    padding: 10px;
}

.society-certification-quick-links h3 {
    text-transform: capitalize;
}

.society-certification-quick-links ul {
    padding-left: 0;
}

.society-certification-quick-links ul li {
    list-style: none;
    margin-bottom: 15px;
}

.society-certification-quick-links ul li a img {
    height: 80px;
    width: 80px;
    margin-right: 12px;
}

.society-certification-quick-links ul li a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 600;
    /* text-transform: uppercase; */
}

/*  ----------------- mandatory disclosure css ----------- */
section.mandatory-public-disclosure {
    padding: 30px 0;
    padding-top: 0;
}

section.mandatory-public-disclosure h2 {
    text-align: center;
    padding: 30px;
    font-size: 30px;
}

section.mandatory-public-disclosure h3 {
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid var(--dark-grey);
    background: var(--pink-color);
    color: white;
}

section.second-table {
    padding: 30px 0;
}


section.second-table h3 {
    margin-bottom: 0;
    padding: 10px;
    text-align: center;
    background: var(--pink-color);
    color: white;
    border: 1px solid var(--dark-grey);
    text-transform: uppercase;
}

section.third-table h3 {
    margin-bottom: 0;
    padding: 10px;
    text-align: center;
    background: var(--pink-color);
    color: white;
    text-transform: uppercase;
    border: 1px solid var(--dark-grey);
}

section.mandatory-public-disclosure table {
    text-transform: uppercase;
}

.document-table tr td a {
    text-decoration: none;
    color: var(--dark-grey);
}

.document-table tr td a:hover {
    color: var(--pink-color);
}

.third-table-details table tr td a {
    text-decoration: none;
    color: var(--dark-grey);
}

.third-table-details table tr td a:hover {
    color: var(--pink-color);
}

.forth-table-details table tr td a {
    text-decoration: none;
    color: var(--dark-grey);
}

.forth-table-details table tr td a:hover {
    color: var(--pink-color);
}

/* ----------- our belief page css ----------- */
section.our-belief-content {
    padding: 30px 0;
}

section.our-belief-content h2 span {
    color: var(--pink-color);
    border-left: 3px solid var(--pink-color);
    padding-left: 12px;
}

section.our-belief-content h2 {
    font-size: 30px;
}

.our-belief-details {
    padding: 10px;
    background: whitesmoke;
    border-radius: 10px;
}

.our-belief-details h3 span {
    border-bottom: 3px solid var(--pink-color);
    padding-bottom: 10px;
}

.our-belief-details h3 {
    font-size: 28px;
}

.belief-para {
    padding: 30px;
    border: 6px solid var(--pink-color);
    margin-top: 3rem;
    border-radius: 10px;
    text-align: justify;
}

/* ----------------- Facility Page CSS ------------- */

section.medical-facility {
    padding: 30px 0;
}

.medical-facility h2 {
    margin-bottom: 2rem;
    padding: 10px 10px;
    background: var(--blue-color);
    color: white;
    font-size: 27px;
    text-transform: uppercase;
}

.medical-facility-content h3 {
    font-size: 30px;
    padding: 9px 0;
    color: var(--blue-color);
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}

.medical-facility-content h3:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 40%;
    border-bottom: 2px solid var(--pink-color);
    width: 200px;
}

/* 
.medical-facility-content p {
    font-size: 20px;
    text-align: justify;
    padding: 10px;
} */

.medical-facility-content-para {
    padding: 30px 0;
}

.medical-facility-content-para p {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 1px;
}

.medical-facility-slider {
    height: 250px;
    width: 100%;
}

.medical-facility-slider img {
    height: 250px;
}

section.transport-facility {
    padding: 30px 0;
}

.transport-facility h2 {
    margin-bottom: 2rem;
    padding: 10px 10px;
    background: var(--blue-color);
    color: white;
    font-size: 27px;
    text-transform: uppercase;
}

.transport-facility-content h3 {
    font-size: 30px;
    padding: 9px 0;
    color: var(--blue-color);
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}

.transport-facility-content h3:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 44%;
    border-bottom: 2px solid var(--pink-color);
    width: 134px;
}

/* .transport-facility-content p {
    font-size: 20px;
    text-align: justify;
    padding: 10px;
} */

.transport-facility-content-para {
    padding: 30px 0;
}

.transport-facility-content-para p {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 1px;
}

.transport-facility-slider {
    height: 250px;
    width: 100%;
}

.transport-facility-slider img {
    height: 300px;
}

/* ---------------- Our Labs Page css --------------- */
section.lab-facility {
    padding: 30px 0;
}

.lab-facility h2 {
    margin-bottom: 2rem;
    padding: 10px 10px;
    background: var(--blue-color);
    color: white;
    font-size: 27px;
    text-transform: uppercase;
}

.lab-facility-content h3 {
    font-size: 30px;
    padding: 9px 0;
    color: var(--blue-color);
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}

.lab-facility-content h3:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 44%;
    border-bottom: 2px solid var(--pink-color);
    width: 134px;
}

/* .transport-facility-content p {
    font-size: 20px;
    text-align: justify;
    padding: 10px;
} */

.lab-facility-content-para {
    padding: 30px 0;
}

.lab-facility-content-para p {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 1px;
}


.lab-facility-slider {
    height: 250px;
    width: 100%;
}

.lab-facility-slider img {
    height: 250px;
}

section.lab-comp-facility {
    padding: 30px 0;
}

.lab-comp-facility h2 {
    margin-bottom: 2rem;
    padding: 10px 10px;
    background: var(--blue-color);
    color: white;
    font-size: 27px;
    text-transform: uppercase;
}

.lab-comp-facility-content h3 {
    font-size: 30px;
    padding: 9px 0;
    color: var(--blue-color);
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}

.lab-comp-facility-content h3:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 44%;
    border-bottom: 2px solid var(--pink-color);
    width: 134px;
}

/* .transport-facility-content p {
    font-size: 20px;
    text-align: justify;
    padding: 10px;
} */

.lab-comp-facility-content-para {
    padding: 30px 0;
}

.lab-comp-facility-content-para p {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 1px;
}


.lab-comp-facility-slider {
    height: 250px;
    width: 100%;
}

.lab-comp-facility-slider img {
    height: 300px;
}

/* ------------- classroom page css -------------- */
section.classroom-facility {
    padding: 30px 0;
}

.classroom-facility h2 {
    margin-bottom: 2rem;
    padding: 10px 10px;
    background: var(--blue-color);
    color: white;
    font-size: 27px;
    text-transform: uppercase;
}

.classroom-facility-content h3 {
    font-size: 30px;
    padding: 9px 0;
    color: var(--blue-color);
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}

.classroom-facility-content h3:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 44%;
    border-bottom: 2px solid var(--pink-color);
    width: 134px;
}

/* .transport-facility-content p {
    font-size: 20px;
    text-align: justify;
    padding: 10px;
} */

.classroom-facility-content-para {
    padding: 30px 0;
}

.classroom-facility-content-para p {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 1px;
}

.classroom-facility-slider {
    height: 250px;
    width: 100%;
}

.classroom-facility-slider img {
    height: 250px;
}

/*  ----------------------- Library Page CSS ---------------- */
section.library-facility {
    padding: 30px 0;
}

.library-facility h2 {
    margin-bottom: 2rem;
    padding: 10px 10px;
    background: var(--blue-color);
    color: white;
    font-size: 27px;
    text-transform: uppercase;
}

.library-facility-content h3 {
    font-size: 30px;
    padding: 9px 0;
    color: var(--blue-color);
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}

.library-facility-content h3:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 44%;
    border-bottom: 2px solid var(--pink-color);
    width: 134px;
}

/* .transport-facility-content p {
    font-size: 20px;
    text-align: justify;
    padding: 10px;
} */

.library-facility-content-para {
    padding: 30px 0;
}

.library-facility-content-para p {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 1px;
}

.library-facility-slider {
    height: 250px;
    width: 100%;
}

.library-facility-slider img {
    height: 250px;
}

/* ------------ management page css ----------- */
section.founder-message-section {
    padding-top: 40px;
}

.founder-message-image img {
    width: 100%;
    height: 500px;
}

.founder-message-content {
    padding: 10px 0;
}

.founder-message-heading {
    text-align: center;
    margin-bottom: 50px;
}

.founder-message-heading h2 {
    font-size: 35px;
    position: relative;
    padding-bottom: 10px;
}

.founder-message-heading h2:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 44%;
    border-bottom: 2px solid var(--pink-color);
    width: 100px;
}

.founder-message-image .messager-name {
    background: black;
    padding: 12px 24px;
    color: white;
}

.messager-name h4 {
    margin-bottom: 0;
    font-family: sans-serif;
    font-weight: 200;
}

.founder-message-para {
    padding: 13px 0;
}

.founder-message-para h3 {
    font-size: 23px;
}

.founder-message-para p {
    font-size: 14px;
    text-align: justify;
    font-family: sans-serif;
    line-height: 28px;
    letter-spacing: 1px;
}

.founder-message-next-para {
    padding-bottom: 2rem;
    border-bottom: 1px solid dimgrey;
    padding-top: 10px;
}

ul.pinci-list p {
    padding-top: 10px;
}

.founder-message-next-para p {
    font-size: 17px;
    text-align: justify;
    font-family: sans-serif;
    line-height: 28px;
}

.founder-message-next-para .d-name {
    margin-bottom: 0;
}


section.founder-message-section.second {
    background: white;
    padding-top: 40px;
}

/* ------------- Page Load CSS -------------- */
.pop {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    /* width: 300px; */
    text-align: center;
    position: relative;
}

.popup-content img {
    height: 450px;
}

.end {
    position: absolute;
    top: -2px;
    right: 5px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

/* ------------ right side button fixed css -------- */
.right-side-btn {
    position: fixed;
    top: 50%;
    right: -32px;
    z-index: 1000;
    rotate: 90deg;
    background: var(--blue-color);
    padding: 10px 15px;
}

.right-side-btn a {
    text-decoration: none;
    color: white;
}