@font-face {
    font-family: "inter-light";
    src: url("../fonts/inter/Inter18pt-Light.woff");
    src: url("../fonts/inter/Inter18pt-Light.woff2") format("woff2"), url("../fonts/inter/Inter_18pt-Light.woff") format("woff"), url("../fonts/inter/Inter_18pt-Light.ttf") format("truetype");
}

@font-face {
    font-family: "inter-regular";
    src: url("../fonts/inter/Inter18pt-Regular.woff2") format("woff2"), url("../fonts/inter/Inter_18pt-Regular.woff") format("woff"), url("../fonts/inter/Inter_18pt-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "inter-medium";
    src: url("../fonts/inter/Inter18pt-Medium.woff2") format("woff2"), url("../fonts/inter/Inter18pt-Medium.woff") format("woff"), url("../fonts/inter/Inter_24pt-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "inter-bold";
    src: url("../fonts/inter/Inter18pt-Bold.woff2") format("woff2"), url("../fonts/inter/Inter18pt-Bold.woff") format("woff"), url("../fonts/inter/Inter_18pt-Bold.ttf") format("truetype");
}

:root {
    --primary_color: #2A65E5;
    --secondary_color: #E89C05;
    --lightGray_color: #F6F6F6;
    --white_color: #FFFFFF;
    --dark_color: #080862;
    --heading_font: 2.5rem;
    --sub_heading_font: 1.125rem;
    --paragraph_font: 1.2rem;
    --gray-color: #646464;
}

* {
    font-family: "inter-regular";
}

body {
    font-family: "inter-regular";
}

a {
    text-decoration: none;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    font-family: "inter-regular";
    font-size: var(--paragraph_font);
    color: var(--dark_color);
}

button,
a {
    transition: 0.8s;
}

.heading {
    margin-bottom: 40px;
}

.heading h2 {
    font-size: var(--heading_font);
    color: var(--primary_color);
    margin-bottom: 10px;
}

.heading p {
    color: var(--gray-color);
    font-size: var(--paragraph_font);
}

.btn-primary {
    border-radius: 30px;
    padding: 15px 40px;
}

h2 {
    font-size: var(--heading_font);
    font-weight: 400;
}

.yellow-pill {
    background: var(--secondary_color);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 400;
    display: inline-block;
    margin-top: 10px;
    font-size: var(--paragraph_font);
    color: var(--white_color);
}

p {
    font-size: var(--paragraph_font);
}

.form-control {
    appearance: auto !important;
}

/* ---------------------- 
    Navbar Styling start 
---------------------- */
header .navbar-custom {
    padding: 0px 0px;
}

header .navbar-custom {
    z-index: 99;
}

.navbar-custom {
    padding: 20px 0;
}

.nav-scrolled {
    background-color: var(--primary_color);
}

.nav-scrolled .navbar-brand {
    padding: 5px 10px;
}

.nav-scrolled .navbar-nav a {
    padding: 0px 25px !important;
}

.nav-scrolled .navbar-brand img {
    max-width: 150px;
    transition: 0.5s;
}

.login-btn {
    /* background: var(--primary_color); */
    color: #fff;
    padding: 5px 25px;
    border-radius: 0px;
    font-weight: 500;
    position: relative;
    z-index: 0;
    font-size: var(--paragraph_font);
}

.register-btn {
    border-left: 1px solid #ffffff;
}

.login-btn img {
    margin-left: 8px;
}

.login-btn::after {
    /* content: ''; */
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1);
    z-index: -1;
    left: 0px;
    right: 0px;
    top: 0px;
    transition: 0.5s;
    opacity: 0;
}

.login-btn:hover {
    color: #ffffff !important;
}

.login-btn:hover::after {
    transform: scale(1.2);
    opacity: 1;
}

.navbar-nav {
    background: #ffffff52;
    border: 1px solid #ffffff45;
    /* border-image-source: linear-gradient(90deg, rgba(2, 6, 252, 0.5) 0%, rgba(226, 226, 226, 0.5) 100%); */
    border-radius: 10px;
    padding: 5px;
}

.navbar-nav a {
    color: #ffffff !important;
    padding: 11px 25px !important;
    font-weight: 400 !important;
    font-size: 1rem;
}

.navbar-nav a:hover,
.nav-item.active a {
    background-color: var(--secondary_color);
    border-radius: 8px;
}

/* Dropdown open on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Optional: keep active style on hover */
.navbar-nav .dropdown:hover>.nav-link {
    color: #fff;
}

/* ---------------------- 
    Navbar Styling end 
---------------------- */

/* ---------------------- 
inner banner start 
---------------------- */
.hero-section {
    position: relative;
    color: #fff;
    text-align: center;
    height: 458px;
    overflow: hidden;
}

/* Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 4px 20px 0px #0000001A;
    background: #08086280;
}

.hero-content {
    position: absolute;
    z-index: 10;
    width: 55%;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 100px;
}

.hero-content h1 {
    font-size: var(--heading_font);
    color: var(--white_color);
}

.hero-content h1 span {
    color: var(--secondary_color);
}

.hero-content p {
    font-size: var(--paragraph_font);
}

.banner-image img {
    display: block;
    width: 100%;
}

/* ---------------------- 
inner banner end 
---------------------- */
.member,
.alumni {
    padding: 3rem 0rem;
}

.alumni {
    padding-bottom: 0rem;
}

/* ---------------------- 
membership start 
---------------------- */

.member-banner {
    height: 298px;
}

.member-banner .hero-content {
    justify-content: flex-end;
    padding-bottom: 50px;
}

.member .sidebar {
    background: var(--primary_color);
    color: #fff;
    padding: 40px 20px;
    /* height: 100%; */
    border-radius: 8px 0 0 8px;
    text-align: center;
    position: relative;
}

.member .sidebar p strong {
    color: #ffe002;
}

.member .sidebar h5 {
    font-size: 2rem;
    font-weight: 200;
}

.upload-photo {
    background: #fff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.upload-photo img {
    width: 100%;
}

.upload-btn {
    background: var(--secondary_color);
    color: #fff;
    border-radius: 6px;
    border: none;
    padding: 8px 20px;
    margin-top: 15px;
    font-weight: 400;
    font-size: var(--paragraph_font);
    border: 1px solid var(--secondary_color);
}

.upload-btn:hover {
    background-color: #ffffff;
    color: var(--primary_color);
}

.fee-box {
    margin-top: 40px;
    font-size: var(--heading_font);
    font-weight: 700;
}

.fee-box span {
    color: var(--secondary_color);
}

.submit-btn {
    background: linear-gradient(90deg, #e3aa4a, #b87333);
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    margin-top: 80px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.5s;
    margin-bottom: 30px;
}

.sidebar .submit-btn {}

.sidebar-button {
    position: absolute;
    bottom: 20px;
    left: 15px;
    width: 90%;
}

.sidebar-button a {
    border-radius: 30px;
    border: 1px solid #ffffff;
    display: inline-block;
    padding: 5px 20px !important;
    font-size: 0.8rem;
}

.sidebar-button a:hover {
    background-color: var(--secondary_color);
    color: var(--white_color);
    border-color: var(--secondary_color);
}

.submit-btn:hover {
    background: linear-gradient(90deg, #b87333, #e3aa4a);
}

.form-section {
    background: var(--lightGray_color);
    padding: 40px;
    border-radius: 0 8px 8px 0;
}

label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark_color);
    margin-bottom: 10px;
}

.form-control {
    height: 48px;
    border-radius: 8px;
    background: var(--white_color);
    border: 1px solid #e0e0e0;
}

.form-control::placeholder {
    font-size: 0.8rem;
    color: #868686;
}

textarea.form-control {
    height: 150px;
}

.form-group {
    margin-bottom: 20px;
}

.text-primary {
    color: var(--primary_color) !important;
}

.member .container-xxl.container-xl.container-fluid>.row {
    margin-right: 0px !important;
    padding-right: 0px !important;
    --bs-gutter-x: 0rem !important;
    width: 100%;
}

.member .form-check {
    padding-left: 30px;
}

.form-check .form-check-label {
    margin-left: 0px;
}

.rule-regulation {
    color: var(--primary_color);
    border: 1px solid var(--secondary_color);
    background-color: var(--white_color);
}

.rule-regulation:hover {
    color: var(--secondary_color);
}

/* ---------------------- 
membership end 
---------------------- */

/* ---------------------- 
footer start 
---------------------- */
.footer-section {
    background: #0b1363;
    color: #cfd2ff;
}

footer h5 {
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--white_color);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--secondary_color);
}

.footer-links a span {
    margin-right: 6px;
    color: var(--white_color);
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .contact-details a {
    width: 100%;
    display: inline-block;
}

footer .contact-details img {
    margin-bottom: 30px;
    margin-right: 10px;
}

footer .contact-details p,
footer .contact-details a {
    /* font-size: 1rem; */
    display: flex;
    align-items: start;
}

footer .social-media a {
    width: auto;
    margin-right: 30px;
}

footer .social-media a img {
    margin-bottom: 0px;
    width: 30px;
}

/* ---------------------- 
footer end 
---------------------- */

/* ---------------------- 
alumni start 
---------------------- */
.alumni .search-box {
    background: #e9f0ff;
    border-radius: 25px;
}

.alumni .search-box h3 {
    font-size: calc(var(--heading_font) - 0.5rem);
    color: var(--primary_color);
    margin-bottom: 50px;
}

.alumni .search-input {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #cdd7f8;
}

.alumni .search-box .input-group-text {
    background-color: var(--white_color);
}

.alumni .search-box .input-group-text img {
    width: 18px;
}

.alumni .submit-btn {
    background: linear-gradient(to right, #ff8a00, #0022ff);
    color: #fff;
    padding: 20px 40px;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 0px;
}

.alumni .submit-btn:hover {
    background: linear-gradient(to right, #0022ff, #ff8a00);
}

.alumni .section-title {
    color: var(--primary_color);
    font-weight: 700;
    font-size: 1.5rem;
}

.designation {
    font-size: var(--paragraph_font);
    background-color: var(--secondary_color);
    border-radius: 30px;
    padding: 10px 0px;
}

.alumni .info-item .icon {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
}

.alumni .info-item .icon img {
    margin-right: 10px;
}

.alumni .info-item .label {
    font-weight: 600;
    font-size: 14px;
    color: #6d6d6d;
    margin-bottom: 3px;
}

.alumni .info-item .value {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark_color);
    margin-left: 40px;
}

.alumni .show-btn {
    background: #20c997;
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
}

.search-table table tr th {
    background-color: var(--primary_color);
    color: var(--white_color);
}

.search-table table tr th:first-child {
    border-radius: 5px 0px 0px 0px;
}

.search-table table tr th:last-child {
    border-radius: 0px 5px 0px 0px;
}

.search-table table tr:nth-child(odd) {
    background-color: #e9f0ff;
}

.search-table table tr td {
    font-size: 0.8rem;
    padding: 0px 15px;
}

.search-table table button img {
    width: 24px;
}

.search-table table button:hover {
    background-color: var(--white_color);
}

.member-modal.modal.show .modal-dialog .modal-content {
    border-radius: 30px !important;
    background-color: #e9f0ff;
}

.member-modal.modal.show .modal-dialog .modal-title {
    font-size: var(--sub_heading_font);
    color: var(--primary_color);
}

.profile {
    width: 120px;
    height: 120px;
    overflow: hidden;
    background-color: var(--white_color);
    border-radius: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile img {
    display: block;
}

.member-modal .modal-dialog.modal-dialog-centered {
    max-width: 760px;
}

.member-modal .modal-body p {
    padding-left: 40px;
    margin-bottom: 0px;
    word-break: break-all;
}

.member-modal .modal-body .item {
    background-color: var(--white_color);
    padding: 10px;
    border-radius: 10px;
    min-height: 89px;
}

.member-modal.modal.show .modal-dialog .modal-content h2 {
    font-size: calc(var(--heading_font) - 0.2rem);
    color: var(--primary_color);
}

/* ---------------------- 
alumni end 
---------------------- */
/* ---------------------- 
modal start 
---------------------- */
/* Modal box styling */
.modal-dialog.modal-dialog-centered {
    max-width: 560px;
}

.login-modal {
    border-radius: 20px;
    padding: 10px;
    background-color: var(--white_color);
    /* border: 3px solid #1a3cff; */
}

/* Title */
.login-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary_color);
}

/* Subtitle */
.login-subtitle {
    color: #7d7d7d;
    font-size: var(--paragraph_font);
}

/* Input fields */
.login-input {
    height: 55px;
    border-radius: 12px;
    background: var(--lightGray_color);
    border: 1px solid #e5e5e5;
    padding-left: 20px;
    font-size: 16px;
}

.login-input:focus {
    background: var(--white_color) !important;
    border: 2px solid #f4c16e !important;
    color: #000;
}

/* Login Button */
.login-submit-btn {
    background: var(--primary_color);
    color: #fff;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    letter-spacing: 3px;
    border: 1px solid var(--primary_color)
}

.login-submit-btn:hover {
    background-color: var(--white_color);
    color: var(--primary_color);
}

/* Forgot Password */
.forgot-link {
    color: #555;
    font-size: 15px;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* ---------------------- 
modal end 
---------------------- */

/* ---------------------- 
new member start
---------------------- */
.new-member-slider {
    padding: 3.0rem 0rem;
}

.new-member-slider .item figure {
    margin-bottom: 0px;
}

.new-member-slider .item figure img {
    display: block;
    width: 100%;
}

.new-member-slider .item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.new-member-slider .item .text {
    position: absolute;
    width: 100%;
    top: inherit;
    left: 0px;
    padding: 10px 20px;
    bottom: 0px;
    height: 32%;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #2A65E5 100%);
    background-size: 100% 100%;
    background-position: bottom;
    transition: background-position 0.5s ease;
    transition: height 0.5s ease;
}

.new-member-slider .item span {
    background-color: var(--secondary_color);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 7px 15px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 10px;
}

.new-member-slider .item p {
    color: var(--white_color);
    opacity: 1;
}

.new-member-slider .item h3 {
    font-size: calc(var(--sub_heading_font) + 0.3rem);
    color: var(--white_color);
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.new-member-slider .item ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.new-member-slider .item ul li {
    color: #ffffff;
}

/* .new-member-slider .item:hover .text {
    background: linear-gradient(180deg, #2A65E5 0%, #E89C05 100%);
    height: 100%;
    background-position: bottom;
} */
.new-member-slider .item:hover .text p {
    opacity: 1;
}

.new-member-slider-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-prev,
.custom-next {
    font-size: 32px;
    color: #ccc;
    /* light gray for both default */
    cursor: pointer;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;

    /* remove default background */
    background: none !important;
}

.custom-prev::after {
    content: "←";
    font-weight: 400;
}

.custom-next::after {
    content: "→";
    font-weight: 400;
}

.member-counter {
    font-size: 20px;
    color: #000;
}

.member-counter #current-slide {
    color: #0B1C66;
    /* dark blue like your image */
    font-weight: 600;
}

.swiper-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    margin: 0 auto;
}

.swiper-navigation .member-counter #current-slide {
    font-size: 1.4rem;
    color: var(--secondary_color);
}

.swiper-navigation .member-counter #total-slide {
    font-size: var(--paragraph_font);
    color: var(--lightGray_color);
}

.swiper-navigation .member-counter {
    margin-top: 40px;
}

/* ---------------------- 
new member end 
---------------------- */

/* ---------------------- 
contact start
---------------------- */
.inner-contact-info {
    padding: 50px 0px;
}

.inner-contact-info h3 {
    font-weight: 600;
    color: var(--dark_color);
}

.inner-contact-info hr {
    background-color: var(--gray-color);
}

.inner-contact-info a,
.inner-contact-info p {
    display: inline-block;
    width: 100%;
    margin-bottom: 0px;
    min-height: 45px;
}

.inner-contact-info img {
    margin-right: 15px;
}

.inner-contact form span {
    font-size: var(--paragraph_font);
    color: var(--dark_color);
}

.inner-contact h2 {
    font-size: var(--heading_font);
    color: var(--primary_color);
    margin-bottom: 30px;
    font-weight: 400;
}

.inner-contact form {
    background-color: var(--primary_color);
    padding: 45px;
    box-sizing: border-box;
    border-radius: 30px;
}

.inner-contact form input,
.inner-contact form textarea {
    border: 0px;
    border: 1px solid var(--lightGray_color);
    padding-left: 15px;
    box-sizing: border-box;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    width: 100%;
}

.inner-contact form input::placeholder,
.inner-contact form textarea::placeholder {
    color: var(--white_color);
}

.inner-contact form label {
    color: var(--white_color);
    font-size: var(--paragraph_font);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
}

.inner-contact form textarea {
    height: 100px;
}

.inner-contact form input:focus,
.inner-contact form textarea:focus {
    border-color: var(--secondary_color);
    background-color: var(--white_color);
    outline: none;
}

.inner-contact form input::placeholder,
.inner-contact form textarea::placeholder {
    color: var(--white_color);
    font-weight: 200;
    font-size: 0.8rem;
}

.inner-contact form .form-group {
    margin-bottom: 21px;
}

.inner-contact form .form-group img {
    position: relative;
    right: 40px;
}

.map {
    padding: 50px 0px;
}

.map iframe {
    border-radius: 30px;
    overflow: hidden;

}

.map-link {
    margin-top: 10px;
    font-size: var(--paragraph_font);
    font-weight: 600;
}

.contact-inner-info {
    padding: 0px 0px 30px 0px;
}

.contact-inner-info h2 {
    font-size: 4rem;
    font-weight: 700;
}

.cus-btn .btn-cus {
    background-color: var(--secondary_color);
    color: #ffffff;
    border: 1px solid var(--secondary_color);
    padding: 12px 30px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0px 4px 16px 0px #1548B7;
}

.cus-btn .btn-cus:hover {
    background-color: var(--white_color);
    color: var(--secondary_color);
}

/* ---------------------- 
contact end
---------------------- */

/* ---------------------- 
home start
---------------------- */

.home-banner {
    min-height: 500px;
    background: url(../images/home/home-banner.jpg) no-repeat center center;
    background-size: 100% auto;
    background-size: cover;
}

.home-banner .row {
    padding: 150px 0px 0px
}

.home-banner h1 {
    font-size: var(--heading_font);
    color: var(--white_color);
}

.home-banner h1 span {
    color: var(--secondary_color);
    font-weight: 600;
}

.home-banner p {
    font-size: var(--paragraph_font);
    color: var(--white_color);
}

.banner-slider {
    position: relative;
    z-index: 0;
}

.banner-slider .establishment {
    position: absolute;
    bottom: -40px;
    left: -40px;
    z-index: 1;
}

.banner-slider img:not(.establishment) {
    border-radius: 20px;
    border: 2px solid #ffffff;
}

.btn-secondary {
    background-color: var(--secondary_color) !important;
    border: 1px solid var(--secondary_color) !important;
    border-radius: 30px;
    padding: 15px 30px;
}

.btn-secondary:hover {
    background-color: var(--primary_color) !important;
}

.btn-white {
    background-color: var(--white_color) !important;
    border: 1px solid var(--white_color) !important;
    border-radius: 30px;
    padding: 15px 30px;
}

.btn-white:hover {
    background-color: var(--secondary_color) !important;
    border: 1px solid var(--secondary_color) !important;
    color: #ffffff;
}

.btn-secondary img,
.btn-white img {
    margin-right: 15px;
}


/* NUMBER LIST */
.steps-list {
    font-size: 20px;
    font-weight: 600;
    color: var(--white_color);
    margin: 0px 0;
    position: relative;
    background-color: var(--primary_color);
    padding: 5px;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    font-size: var(--paragraph_font);
    font-weight: 400;
}

.steps-list.active {
    background: var(--primary_color);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
}

/* BLUE DOTS */
/* .steps-list:not(.active)::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--primary_color);
    border-radius: 50%;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
} */

/* DOTTED LINE */
.accordion-item {
    position: relative;
}

/* .accordion-item:after {
    content: '';
    position: absolute;
    top: 61px;
    left: 19px;
    width: 2px;
    height: 75%;
    border-left: 2px dashed #87A8FF;
    z-index: -1;
} */

/* READ MORE */
.read-more {
    color: var(--primary_color);
    font-weight: 600;
    text-decoration: none;
}

/* ACCORDION STYLE */
.custom-accordion .accordion-button {
    background: none;
    font-size: 18px;
    padding: 20px 0;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 28px;
    color: var(--primary_color);
    margin-left: auto;
    margin-right: 0;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "-";
}

.custom-accordion .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion-body {
    padding-left: 85px;
}

.vertical-line {
    position: absolute;
    top: 35px;
    left: 19px;
    width: 2px;
    height: 85%;
    background: repeating-linear-gradient(to bottom,
            #ffffff 0,
            /* dash start color */
            #4d8eff 10px,
            /* dash height */
            transparent 10px,
            transparent 20px
            /* gap height */
        );
}

.accordion-item::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary_color);
    border-radius: 20px;
    bottom: -17px;
    left: 15px;
}

.text-muted {
    color: var(--dark_color);
}

.accordion.custom-accordion .accordion-item:first-child::after {
    /* display: none; */
}

.memories {
    position: relative;
    z-index: 0;
    margin: 100px 0px 200px 0px;
}

.memories::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: var(--lightGray_color);
    width: 90%;
    height: 310px;
    z-index: -1;
}

.memories figure {
    margin: 0px;
    padding: 0px;
}

.memories figure img {
    border-radius: 30px;
}

.memories .one {
    width: 290px;
    height: 325px;
    border-radius: 30px;
    overflow: hidden;
}

.memories .two {
    position: absolute;
    right: -20px;
    bottom: -90px;
}

.memories .two img {
    border: 2px solid #ffffff;
}

.memories p {
    color: var(--dark_color);
    font-size: 1.1rem;
}

.gallery {
    background-color: var(--lightGray_color);
}

.gallery .gallery-item,
.inner-gallery .gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery .gallery-item.img-small {
    height: 264px;
}

.inner-gallery .gallery-item.img-small {
    height: 195px;
}

.gallery .gallery-item.img-big {
    height: 560px;
}

.inner-gallery .gallery-item.img-big {
    height: 406px;
}

.inner-gallery .gallery-item img {
    width: 100%;
}

.gallery .gallery-item .plus-icon,
.inner-gallery .gallery-item .plus-icon {
    position: absolute;
    top: 45%;
    left: 35%;
    opacity: 0;
}

.gallery .gallery-item.img-small .plus-icon,
.inner-gallery .gallery-item.img-small .plus-icon {
    top: 32%;
    left: 40%;
}

.gallery .gallery-item.img-small .plus-icon img,
.inner-gallery .gallery-item.img-small .plus-icon img {
    width: 40px;
}
.memories-image {
    position: relative;
}

.memories h2 {
    color: var(--primary_color);
    font-weight: 600;
    margin-bottom: 30px;
}

.memories span {
    color: var(--primary_color);
    float: right;
    margin-top: 30px;
    font-weight: 600;
}

.gallery .gallery-item .overlay,
.inner-gallery .gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(42, 101, 229, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.gallery .gallery-item:hover .overlay,
.inner-gallery .gallery-item:hover .overlay {
    height: 100%;
    background: rgba(42, 101, 229, 0.6);
}

.gallery .gallery-item:hover .plus-icon,
.inner-gallery .gallery-item:hover .plus-icon {
    opacity: 1;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    text-align: center;
}

.inner-gallery .gallery-item:hover .plus-icon img {
    width: 40px;
}

.gallery .gallery-item .plus-icon,
.inner-gallery .gallery-item .plus-icon {
    color: #fff;
    font-size: 36px;
    font-weight: 300;
}

.gallery .gallery-item .img-info small,
.inner-gallery .gallery-item .img-info small {
    color: #fff;
    opacity: 0.9;
}

.gallery .gallery-item .img-info h6,
.inner-gallery .gallery-item .img-info h6 {
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
}

.gallery img,
.inner-gallery img {
    border-radius: 20px;
    object-fit: cover;
}


.notice-tabs .nav-link {
    border-radius: 30px;
    padding: 15px 0px;
    font-weight: 500;
    color: #555;
    text-align: center;
    position: relative;
}

.notice-tabs .nav-item {
    flex: 0 0 calc(100% / 4);

}

.notice-tabs .nav-link::after {
    content: '';
    position: absolute;
    background: url(../images/icon/round-line.svg) no-repeat center center;
    width: 250px;
    height: 30px;
    bottom: -15px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    z-index: 1;
}

.notice-tabs .nav-link.active {
    color: var(--primary_color);
    position: relative;
    background-color: transparent;
    z-index: 0;
}

.notice-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    background: url(../images/icon/round-line-active.svg) no-repeat center center;
    width: 250px;
    height: 30px;
    bottom: -15px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    z-index: 1;
}

/* Notice Card */
.notice-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #F2F2F2;
}

.notices .nav-pills {
    position: relative;
    z-index: 0;
}

.notices .nav-pills::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #EEEEEE;
    bottom: 0px;
    z-index: -1;
}

/* Date Box */
.date-box {
    width: 120px;
    text-align: center;
    padding: 15px 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E89C05, #2A65E5);
    color: #fff;
    flex: 0 0 120px;
}

.date-box h3 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}

.date-box p {
    margin: 0;
    margin-top: -5px;
}

.date-box span {
    display: inline-block;
    background: #fff;
    color: #1b77ff;
    padding: 3px 10px;
    margin-top: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Content */
.notice-content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}

.order-text {
    font-size: 14px;
    color: #0d6efd;
    font-weight: 600;
}


.news {
    background: url('../images/home/news-bg.jpg') center/cover no-repeat;
    position: relative;
    padding-bottom: 80px;
}

.news .container-fluid {
    position: relative;
    z-index: 2;
}

.news-desc {
    color: var(--white_color) !important;
    font-size: var(--paragraph_font);
}

/* NEWS CARDS */
.news-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.news-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.news .large-card {
    height: 270px;
}

.news .news-card img {
    border-radius: 20px;
}

.news .large-card img {
    height: 100%;
    object-fit: cover;
}

.news .news .small-card img {
    height: 200px;
    object-fit: cover;
}

.news .news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
}

.news .news-overlay small {
    font-size: 0.8rem;
}

.news-card {
    display: inline-block;
    width: 100%;
}

.news-card.big-card {
    height: 562px;
}

.news-card.small-card {
    height: 270px;
}

.news-overlay h3,
.news-overlay h4 {
    margin: 6px 0 0;
}

/* KEEP MORE BUTTON */
.keep-more-btn {
    background: white;
    color: var(--primary_color);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* EVENT BOX */
.event-box {
    background: var(--white_color);
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
}

.event-box .date-text {
    color: var(--primary_color);
    font-weight: 600;
}

.event-box p {
    font-size: 1rem;
}

/* CALENDAR */
.calendar-box {
    background: var(--white_color);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
}

.cal-nav-btn {
    background: var(--lightGray_color);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 18px;
}

.calendar-table th,
.calendar-table td {
    padding: 8px;
    font-weight: 500;
}

.active-day {
    background: var(--primary_color);
    color: var(--white_color);
    border-radius: 50%;
    font-weight: bold;
}

.events {
    margin-top: 190px;
}

.events .active-day {
    background-color: var(--primary_color);
}

.events .calendar-table {
    border: 0px;
    outline: 0px;
    border-color: transparent;
}

.events .calendar-table thead tr th {
    color: var(--primary_color) !important;
}

.events .calendar-table tbody tr td {
    padding: 15px 0px;
}

.career {
    padding: 50px 0px;
    background: var(--lightGray_color) url(../images/home/career-bg.png) no-repeat center center;
}

.career figure {
    border-radius: 30px;
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.career figure img {
    transition: 0.5s;
}

.career .play-btn {
    position: absolute;
    top: 35%;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    background-color: transparent;
    border: 0px;

}

.career .play-btn img {
    transform: scale(0.7);
}

.career figure:hover .play-btn {
    animation: identifier 1s linear;
}

.career figure:hover img {
    transform: scale(1.3);
}

.career figure:hover {
    box-shadow: 0px 20px 20px var(--lightGray_color);
}

@keyframes identifier {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(9.2);
        opacity: 0;
    }
}

.career figure img {
    border-radius: 20px;
}

.video-modal {
    max-width: 80% !important;
    border-radius: 20px;
    overflow: hidden;
}

.event-date {
    background: #2A65E5 !important;
    color: #ffffff !important;
    border-radius: 50%;
    font-weight: bold;
}

.event-date:hover {
    background: #2A65E5 !important;
}

/* ---------------------- 
home end
---------------------- */


/* ---------------------- 
About start
---------------------- */
.journey {
    padding-top: 50px;
}

.journey .timeline {
    position: relative;
    z-index: 0;
}

.journey .timeline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    /* border:1px dashed var(--primary_color); */
    top: 66px;
    left: 0px;
    z-index: -1;
    background: url(../images/vertical-line.svg) repeat center;
    background-size: cover;
}

.journey .year-text {
    font-size: 22px;
}

.journey .timeline-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--paragraph_font);
    color: var(--white_color);
    background-color: var(--primary_color);
    position: relative;
    z-index: 0;
}

.journey .timeline-circle ::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary_color);
    opacity: 0.3;
    border-radius: 50%;
    top: 0px;
    left: 0px;
    z-index: -1;
    transform: scale(1.3);
}

.journey .timeline-line {
    width: 2px;
    height: 220px;
    border-left: 2px dotted var(--primary_color);
    margin: 10px 0;
}

.journey .date-badge {
    background: var(--secondary_color);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    display: inline-block;
}

.journey .timeline-content {
    max-width: 75%;
    padding-left: 30px;
    padding-top: 30%;
}

.journey .timeline-content h5 {
    font-size: var(--paragraph_font);
    margin-top: 10px;
}

.mission {
    padding: 50px 0px;
}

.mission h3 {
    color: var(--primary_color);
    font-size: var(--heading_font);
}

.mission ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.mission ul li {
    margin-bottom: 15px;
    background: url(../images/icon/arrow-left-02.svg) no-repeat;
    background-position: left 5px;
    padding-left: 30px;
    line-height: 23px;
}

.mission ul li:last-child {
    margin-bottom: 0px;
}

.mission ul li img {
    margin-right: 20px;
}

.vision {
    background-color: var(--lightGray_color);
}

.mission p strong {
    color: var(--primary_color);
}

.mission figure {
    margin: 0px;

}

.mission figure img {
    border-radius: 30px;
    box-shadow: 0px 5px 10px #cfcfcf;

}

.dropdown-menu {
    background-color: var(--secondary_color);
    border-radius: 15px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
}

/* ---------------------- 
About end
---------------------- */

/* ---------------------- 
gallery start
---------------------- */

.inner-gallery {
    padding: 50px 0px;
}

.inner-gallery h3 {
    color: var(--primary_color);
    font-size: calc(var(--sub_heading_font) + 0.4rem);
    font-weight: 500;
}

.inner-gallery h4 {
    font-size: var(--paragraph_font);
    color: #646464;
}

.inner-gallery .category {
    background-color: var(--lightGray_color);
    border-radius: 20px;
    padding: 20px 30px;
}

.inner-gallery .category h3 {
    margin-bottom: 0px;
}

.inner-gallery .category ul {
    list-style: none;

}

.inner-gallery .category ul li {
    margin-bottom: 20px;
}

.inner-gallery .category ul li:last-child {
    /* margin-bottom: 0px; */
}

.inner-gallery .category ul li a {
    display: flex;
    align-items: flex-start;
    font-size: var(--paragraph_font);
    line-height: 20px;
    font-weight: 500;
}

.inner-gallery .category ul li span {
    width: 30px;
    height: 30px;
    background-color: var(--white_color);
    display: inline-block;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.inner-gallery .category ul li span svg path {
    stroke: var(--primary_color);
}

.inner-gallery .category .show {
    display: block;
}

.inner-gallery .category button {
    padding: 0px;
}

.inner-gallery .category button img {
    width: 30px;
}

.inner-gallery .form-input {
    border-radius: 30px;
    background-color: var(--lightGray_color);
    padding: 5px 10px;
    box-sizing: border-box;
}

.inner-gallery .form-input img {
    border-radius: 0px;
}

.inner-gallery .form-input input {
    height: 30px;
    border: 0px;
    padding-left: 15px;
    box-sizing: border-box;
    background-color: transparent;
}

.inner-gallery .category ul li a:hover span,
.inner-gallery .category ul li a.active span {
    background-color: var(--primary_color);
}

.inner-gallery .category ul li a.active {
    color: var(--primary_color);
}

.inner-gallery .category ul li a:hover span svg path,
.inner-gallery .category ul li a.active span svg path {
    stroke: var(--white_color);
}

.inner-gallery .date {
    color: var(--primary_color);
    font-weight: 600;
}

.inner-gallery .date span {
    background-color: var(--secondary_color);
    border-radius: 30px;
    padding: 7px 20px;
    color: var(--white_color);
    display: inline-block;
    font-weight: 400;
    font-size: 0.8rem;
    /* margin-left: 15px; */
}

.inner-gallery .img-panel {
    margin-bottom: 30px;
}

.inner-gallery .scroll-gallery {
    overflow-y: scroll;
    max-height: 800px;
    overflow-x: hidden;
    padding-top: 15px;
    padding-bottom: 40%;
}

.inner-gallery .col-lg-9 hr {
    margin-bottom: 0px;
}

.scroll-gallery {
    /* height: 100vh; */
    overflow-y: auto;
    padding-right: 10px;
    /* space for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary_color) var(--lightGray_color);
}

/* Chrome, Edge, Safari */
.scroll-gallery::-webkit-scrollbar {
    width: 6px;
}

.scroll-gallery::-webkit-scrollbar-track {
    background: var(--secondary_color);
    border-radius: 50px;
}

.scroll-gallery::-webkit-scrollbar-thumb {
    background: var(--primary_color);
    border-radius: 50px;
}

.scroll-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--secondary_color);
}

/* ---------------------- 
gallery end
---------------------- */


/* ---------------------- 
infrastructure start
---------------------- */
.infrastructure {
    padding: 50px 0px;
}

.infrastructure .gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    max-height: 346px;
    margin-bottom: 30px;
    cursor: pointer;
}

.infrastructure .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(42, 101, 229, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.infrastructure .overlay .plus-icon {
    position: absolute;
    opacity: 0;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    text-align: center;
    top: 45%;
}

.infrastructure .overlay .plus-icon img {
    width: 50px;
}

.infrastructure .overlay h6 {
    color: #fff;
    font-weight: 600;
}

.infrastructure .overlay small {
    color: #fff;
    opacity: 0.9;
}

.infrastructure .gallery-item:hover .plus-icon {
    opacity: 1;
}

.infrastructure .gallery-item:hover .overlay {
    height: 100%;
}

/* ---------------------- 
infrastructure end
---------------------- */

/* modal */
.overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 27, 0.541);
    display: flex;
    align-items: center;
    transition: 0.5s;
}

.overlay-modal img {
    display: block;
    max-width: 60%;
    max-height: 80%;
    margin: 60px auto;
    box-shadow: 3px 5px 7px rgba(0, 0, 0, 0.5);
}

.overlay-modal>span {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #ffffff;
    z-index: 999;
    cursor: pointer;
}

.overlay-arrows_left {
    display: flex;
    background-color: var(--secondary_color);
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    left: 0;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-left: 5px;
}

.overlay-arrows_left svg {
    width: 24px;
    height: 24px;
}

.overlay-arrows_right svg {
    width: 24px;
    height: 24px;
}

.overlay-arrows_right svg path,
.overlay-arrows_left svg path {
    fill: var(--white_color);
}

.overlay-arrows_right {
    display: flex;
    background-color: var(--secondary_color);
    justify-content: space-between;
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    top: 50%;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 5px;
}

/* ----------------------  special offer start ----------------------  */

.offer-modal .modal-content {
    background: var(--white_color) url(../images/home/pattern.png) repeat;
    background-size: cover;
    overflow: hidden;
    height: 89vh;
    border-radius: 10px;
}

.offer-modal .modal-content h3 {
    font-size: calc(var(--heading_font) - 0.5rem);
    color: var(--primary_color);
    font-weight: 500;
}

.offer-modal .modal-content p {
    font-size: 1.1rem;
    color: var(--dark_color);
}

.offer-modal .modal-content p strong {
    color: var(--secondary_color);
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-box {
    border-radius: 20px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.popup-input {
    height: 45px;
    border-radius: 10px;
}

.popup-btn {
    background: linear-gradient(90deg, #2258d8, #0f297e);
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.5s;
    letter-spacing: 3px;
}

.popup-btn:hover {
    background: var(--secondary_color);
}

.popup-badge {
    animation: popIn 0.5s ease;
    width: 100%;
    display: block;
    padding-bottom: 0px;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.offer-modal .modal-body {
    padding-top: 0px;
    padding: 0px 0px;
}

.offer-modal .modal-dialog.modal-dialog-centered {
    max-width: 460px;
}
.popup-box button.btn-close.popup-close {
    background-color: var(--white_color);
    opacity: 1;
    padding: 10px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
}
/* ----------------------  special offer end ----------------------  */
.bg-white {
    background-color: var(--white_color) !important;
    border-radius: 5px;
    padding-top: 15px;
    box-shadow: 0px 5px 10px #e2e2e2;
}

.club-report .notice-card .btn {
    background-color: var(--secondary_color);
    color: var(--white_color);
    font-weight: 400;
}

.club-report .notice-card h3 {
    color: var(--primary_color);
    font-size: var(--sub_heading_font);
}

.club-report .notice-card .card-body {
    padding: 7px 10px;
}

/* ----------------------  profile start ----------------------  */
.inner-profile {
    padding: 50px 0px;
}

.inner-profile .profile-profile {
    margin-top: -80px;
    position: relative;
    z-index: 9;
}

.inner-profile .profile-profile .profile {
    box-shadow: 0px 5px 5px #f1f1f1;
    border: 4px solid #2a65e542;
}

.inner-profile .profile-profile h3 {
    color: var(--primary_color);
    font-size: 1.8rem;
}

.inner-profile .profile-profile button {
    background-color: var(--secondary_color);
    color: var(--white_color);
    padding: 10px 15px;
    border: 1px solid var(--secondary_color)
}

.inner-profile .profile-profile button:hover {
    background-color: var(--white_color);
    color: var(--secondary_color);
}

/* ----------------------  profile end ----------------------  */