@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --main-color: #1C3E7A;
    --secondary-color: #DE1E3F;
    --tertiary-color: #E38043;
    --bg-color: linear-gradient(135deg, #F28C28 0%, #A64B00 100%);
    --bg-second: #F6F9FF;
}

html,
body {
    overflow-x: hidden;
}

body {
    /* font-family: "Oswald", sans-serif; */
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.site-des {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    height: 0;
    width: 0.5rem;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5rem;
}

/* Header CSS Start */

.basketball-menu {
    padding: 0;
    border-radius: 2px;
    background: var(--bg-color);
    border: none;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.basketball-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.basketball-menu .dropdown-item {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px;
    transition: background 0.2s ease, padding-left 0.2s ease;
}


.basketball-menu .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.15);
    padding-left: 20px;
}

.dropdown:hover .basketball-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu {
    margin-top: 0 !important;
}

.form-control:focus {
    box-shadow: unset;
}





.navbar-nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;

}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {

    background-color: var(--tertiary-color) !important;
    color: #fff !important;
}

.navbar-nav>li {
    /* padding-right: 16px; */
    padding-left: 12px;
}



/* Header CSS End */


/* Banner Section CSS Start */
/* Carousel container height */
.carousel-inner {
    height: 540px;
}

.about-us-img {
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
}

.about-us-img img {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.about-us-img:hover img {
    transform: scale(1.1);
}

#myHeader {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* border-bottom: 5px solid var(--secondary-color); */
}

.f-t-logo {
    filter: brightness(0) invert(1);
}

/* Image styling */
.carousel-item {
    height: 540px;
}

.carousel-item img {
    height: 540px;
    object-fit: cover;
    object-position: center;
}

/* Caption styling - centered with background */
.carousel-caption {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 35px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    position: absolute;
    z-index: 2;
}

.carousel-caption h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.carousel-caption p {
    font-size: 1.1rem;
}


.about-us {
    padding: 50px 0px;
}

.title-header h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 10px;
    position: relative;
    color: var(--secondary-color);
}

.title-header h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--secondary-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.title-header h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--main-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.subtile-des {
    margin-bottom: 20px;
    font-weight: 500;
}

.custom-btn {
    background-color: var(--main-color);
    border: var(--main-color);
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: var(--tertiary-color);
    color: #fff;
    border-color: var(--tertiary-color);
    transform: translateY(-2px);
}

.site-des {
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-us {
    /* padding-bottom: 40px; */
    background-image: url(../image/banner-one.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0px;
    position: relative;
}

.video-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.71); */
    background-color: #00000038;
    z-index: 1;
}

.video-sec>* {
    position: relative;
    z-index: 2;
}

.video-sec video {
    /* height: 100%; */
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.video-sec iframe {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.news-event {
    padding: 40px 0px;
    margin-top: 40px;
    background-color: var(--bg-second);
}

.view-all-btn {
    border: 1px solid var(--tertiary-color);
}

.news-card-title h3 {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title h3 a {
    color: var(--secondary-color);
}

.news-card-title h3:hover a {
    color: var(--main-color);
}

.news-card-title h2 {
    font-size: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title h2 a {
    color: var(--secondary-color);
}

.board-member-title h2 {
    font-size: 18px;
}

.board-member-title a {
    color: var(--main-color);
}

.news-card-title p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
}

.message-section-des p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
}

.read-more-btn {
    color: var(--main-color);
}

.news-top-title {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

.card-img-news-half {
    height: 500px;
    overflow: hidden;
}

.card-img-news-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-img-news-half-one {
    height: 175px;
    overflow: hidden;
}

.card-img-news-half-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.message-section {
    background-color: var(--bg-second);
    padding: 40px 0px;
}

.message-section-img {
    height: 300px;
    overflow: hidden;
}

.message-section-img img {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.board-member-img {
    height: 250px;
    overflow: hidden;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--tertiary-color);
    margin: auto;
}

.board-member-title {
    border-top: 2px solid var(--main-color);
    padding-top: 10px;
    margin-top: 10px;
}

.board-member-img img {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.president-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: none;
    transition: all 0.3s ease;
}

.president-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 40px;
}

.card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 40px;
}

.board-members-sec {
    padding: 40px 0px;
}

.page-title {
    font-weight: 800;
    color: var(--main-color);
    text-align: center;
    margin-top: 36px;
    margin-bottom: 24px;
    font-size: 40px;
}

.member-icon {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.member-icon li a i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.member-icon li a i:hover {
    background: var(--main-color);
    color: #fff;
    transform: scale(1.1);
}

.register-btn {
    background-color: var(--secondary-color);
    color: #ffff;
    border-radius: unset;
    border: none;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-image: var(--bg-color);
    color: #ffff;
}

.navbar-nav .nav-link {
    padding-top: 1rem !important;
    /* py-3 equivalent */
    padding-bottom: 1rem !important;
    /* py-3 equivalent */
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    background-color: var(--tertiary-color) !important;
    color: #fff !important;
}




/* Tabs styling to match sample */
.nav-tabs .nav-link {
    color: var(--main-color);
    font-weight: 700;
    font-size: 18px;
    padding: 16px 22px;
    border: 0;
    border-radius: 0;
}

.nav-tabs .nav-link.active {
    color: var(--secondary-color);
    position: relative;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* breadcumb-css-section-start */
.breadcrumb-section {
    /* background-image: url('../../public/frontend/images/banner-two.jpg'); */
    background-size: cover;
    background-position: center;
    padding: 130px 0;
    position: relative;
}

.breadcrumb-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 71%);
    z-index: 1;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 80px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: #ccc;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "»";
    color: #fff;
    padding: 0 5px;
}

/* breadcumb-css-section-end */

.site-des-all {
    font-size: 16px;
}

/* register-player-section-start */

.register-form {
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    margin: 40px 0px;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    background-image: linear-gradient(135deg, #F28C28 0%, #A64B00 100%);
    color: white;
    padding: 20px 30px;
    text-align: center;
}

.form-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.basketball-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.form-body {
    padding: 40px 30px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--main-color);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    box-shadow: unset;
}

.input-group-text {
    background-image: var(--bg-color);
    color: white;
    border: none;
    border-radius: 10px 0 0 10px;
}

.input-group .form-control {
    border-radius: 0 10px 10px 0;
}

.btn-submit {
    background-image: var(--bg-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: #fff;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

@media (max-width: 768px) {
    .form-header h1 {
        font-size: 2rem;
    }

    .form-body {
        padding: 30px 20px;
    }

    body {
        padding: 20px 10px;
    }
}

.stat-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.stat-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
}

.profile-picture-container {
    margin-bottom: 20px;
}

.profile-preview {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.profile-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.profile-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
    flex: 1;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--main-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card .card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--tertiary-color);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card .card-icon i {
    font-size: 22px;
}

.info-card .card-content {
    flex: 1;
}

.info-card .card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.info-card .card-content p {
    font-size: 14px;
    color: #ffff;
    margin-bottom: 0;
    line-height: 1.5;
}

.info-card:hover {
    background-color: var(--tertiary-color);
    transform: translateX(10px);
}

.lightboxgallery {
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    gap: 12px;
    /* margin: 40px auto; */
    padding: 0 12px;
    box-sizing: border-box;
    padding: 40px 0px;
}


.lightboxgallery a {
    width: 300px;
    height: 200px;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    position: relative;
    text-decoration: none;
    background: #eee;
}


.lightboxgallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    transition: transform 300ms ease;
}


.lightboxgallery a:hover img {
    transform: scale(1.12);
}




@media (max-width: 640px) {
    .lightboxgallery a {
        width: 46%;
        height: 140px;
    }
}


@media (max-width: 420px) {
    .lightboxgallery a {
        width: 100%;
        height: 180px;
    }
}

/* register-player-section-end */


/* Player section css */
.player-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* margin-bottom: 30px; */
    height: 100%;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.player-img {
    width: 100%;
    height: 250px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.player-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.player-info {
    padding: 20px;
}

.player-number {
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
}


.player-info h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}

.blog-post-img {
    height: 400px;
    width: 100%;
    overflow: hidden;
    display: inline-block;
    border-radius: 5px;
}

.blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: trasform 0.4s ease-in-out;
}

.blog-content {
    padding: 40px 0px;
}

.blog-content h2 {
    color: var(--main-color);
    font-size: 26px;
    font-weight: 600;
}

.blog-content p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    hyphens: auto;
    word-spacing: 1px;
    text-align-last: left;
}

.sidebar h2 {
    color: var(--main-color);
    font-size: 26px;
    font-weight: 500;
    padding-bottom: 10px;
}

.related-post-img {
    width: 100%;
    height: 200px;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/12;
}

.news_details-title {
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-sm {
    color: var(--main-color);
    font-size: 18px;
    text-decoration: none;
}

.news-details-page {
    padding: 40px 0px;
    background-color: var(--bg-second);
}

.lightbox-gallery {
    background-color: var(--bg-second);
}

.our-location {
    border: 3px solid var(--tertiary-color);
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    width: 100%;
    position: relative;
}

.our-location iframe {
    width: 100%;
    height: 100%;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-toggler {
    background: #fff;
    border-radius: unset;
}

.call-action {
    background-image: var(--bg-color);
    color: #fff;
}

.call-action .btn {
    background-color: #fff;
    color: #0d6efd;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

.call-action .btn:hover {
    background-color: #e4e4e4;
    color: #003d99;
}


/* Player section css */







/* Footer Section css */
.footer-section {
    background: linear-gradient(135deg, #1a2a4e 0%, #0d1b3e 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-links a i {
    padding-right: 10px;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.members-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.logo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.4);
    border-color: #4a9eff;
}

.website-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.website-credit span {
    color: #4a9eff;
    font-weight: 600;
}

.linkedin-btn {
    background-color: #0170AD;
}

.facebook-btn {
    background-color: #007CF7;
}

.twitter-btn {
    background-color: #050505;
}

.instagram-btn {
    background-image: linear-gradient(45deg, #f58529 0%, #dd2a7b 30%, #bc2a8d 60%, #8134af 80%, #515bd4 100%);
}

.youtube-btn {
    background-color: #F70000;
}

.animate__animated {
    --animate-duration: 1.2s;
    animation-timing-function: ease-out;
}

.nav-bg {
    background-color: var(--main-color) !important;
}

.carousel-caption h1 {
    font-size: 20px;
    color: #fff;
}

#upArrowBtn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: none;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#upArrowBtn:hover {
    background-image: var(--bg-color);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .members-logos {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }



    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
        background-color: var(--tertiary-color) !important;
        color: #fff !important;
        padding: 0px 10px;
    }
}

@media (max-width: 576px) {
    .logo-item {
        padding: 10px 20px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

/* Footer css end */

/* Responsive adjustments */
/* 
@media (min-width:992px) {
    .nav-bg {
        background-color: var(--main-color) !important;
    }
} */


@media (max-width: 992px) {

    .carousel-inner,
    .carousel-item,
    .carousel-item img {
        height: 400px;
    }

    .navbar-collapse {
        padding: 10px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    .carousel-inner,
    .carousel-item,
    .carousel-item img {
        height: 350px;
    }

    .carousel-caption {
        display: block !important;
        padding: 15px 20px;
    }

    .carousel-caption h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {

    .carousel-inner,
    .carousel-item,
    .carousel-item img {
        height: 280px;
    }

    .carousel-caption {
        padding: 10px 15px;
    }

    .carousel-caption h2 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }

    .carousel-caption {
        width: 95%;
    }

    .breadcrumb-section {
        padding: 145px;
    }
}

/* Control buttons - better visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 20px;
}

.carousel-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.message-sec-des-title h2 {
    font-size: 22px;
    font-weight: 600;
}

.message-sec-des-title h3 {
    font-size: 18px;
    font-weight: 600;

}

.message-sec-des-title h3 a {
    color: var(--main-color);
}


.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ccc;
    /* default color */
}

.carousel-indicators .active {
    background-color: var(--secondary-color);
    /* active color */
}
.board-member-title p{
     font-weight: 600;
     font-size: 16px;
}


/* Banner Section CSS Start */

.video-us {
    background-size: cover;
    background-position: center;
}

.video-us.image-only {
    min-height: 70vh;
}