


/* Base CSS */

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #000;
}

body {
    color: #000;
    font-weight: 400;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.container{
	max-width: 1420px;
}


a:hover {
    text-decoration: none
}

a, button, input, textarea{
    outline: none !important;
}


/* Header Background */
.top-header {
    background-color: #161F37;
    padding: 7px 0;
    color: #ffffff;
}

/* Contact Info Styling */
.contact-item {
    font-size: 14px;
}

.contact-item .label {
    font-weight: 700;
    margin-right: 0px;
}

.contact-item .value {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

.ml-custom {
    margin-left: 40px; 
}

.btn-custom {
    padding: 10px 25px;
    border-radius: 50px; 
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 14px;
    display: inline-block;
    transition: 0.3s;
    line-height: 26px;
}

.btn-login {
    background-color: #217CFE;
    color: #ffffff;
}

.btn-signup {
    background-color: #1DD983;
    color: #ffffff;
}

.btn-custom:hover {
    opacity: 0.9;
    color: #fff;
}



/* Navbar Wrapper */
.main-navbar {
    background-color: #FDFCFE;
    padding: 10px 0px; 
}


/* Menu Container */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px; 
}

.nav-link {
    text-decoration: none !important;
    color: #272727;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap; 
}

.nav-link:hover {
    color: #217CFE; 
}

/* Member Dropdown Icon */
.icon-small {
    font-size: 10px;
    margin-left: 0px;
    color: #383838;
}

/* Filter/Toggle Icon Section */
.filter-icon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.toggle-btn img {
    width: 40px; 
    height: auto;
    transition: transform 0.3s ease;
}

.toggle-btn:hover img {
    transform: scale(1.1);
}


/* mobile side bar style */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px; 
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    transition: 0.4s;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-sidebar.active {
    right: 0; 
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.close-btn {
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-list li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
}

/* tablet and mobile fix */
@media (max-width: 991px) {
    .main-navbar .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    
    .col-6 {
        flex: 0 0 auto;
        width: auto; 
    }

    .top-header { display: none; } 
}



/* Bootstrap Grid Adjustments (Extra fix) */
.align-items-center {
    display: flex;
    align-items: center;
}

/* Responsive: laptop screen gap reduce */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 8px;
    }
    .nav-link {
        font-size: 13px;
    }
}

.main-navbar .row.align-items-center {
    padding: 0 15px;
}




/* Hero Slider Main Wrapper */
.hero-slider-area {
    position: relative;
    overflow: hidden;
}

.single-slide {
    height: 800px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.single-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Content Styling */
.hero-content h1 {
    font-size: 70px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 400;
}

.hero-content h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-content h2 span {
    color: #72ACFE; 
}

.hero-content p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 26px;
    max-width: 910px;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Button Styling */
.btn-readmore {
    display: inline-block;
    background-color: #217CFE !important;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 75px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border: 2px solid #00000000;
    font-size: 15px;
}

.btn-readmore:hover {
    background-color: #1a6cdb;
    color: #fff;
}

.vertical-socials {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 35px; 
}

.vertical-socials a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    position: relative; 
}

.show-line::after {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%); 
    width: 25px; 
    height: 1px; 
    background-color: rgba(255, 255, 255, 0.7); 
}

/* Owl Dots Styling (Right Side) */
.hero-slider .owl-dots {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-slider .owl-dot span {
    width: 25px !important;
    height: 25px !important;
    background: #fff !important;
    display: block;
    margin: 8px 0 !important;
    border-radius: 50%;
    transition: 0.3s;
}

.hero-slider .owl-dot.active span {
    background: #3B60C9 !important; 
    width: 30px !important;
    height: 30px !important;
    border: 2px solid #fff;
}


/* About Section CSS */
.about-section {
    padding: 100px 0;
    position: relative;
    background-color: #ffffff;
    background-image: url('../img/about-bg.png'); 
    background-repeat: no-repeat;
    background-position: center right; 
    background-size: cover;
    overflow: hidden;
}

.about-title {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.about-text {
    font-size: 18px;
    line-height: 27px;
    color: #000;
    margin-bottom: 30px;
    text-align: justify; 
}

/* Button Styling */
.btn-know-more {
    display: inline-block;
    padding: 15px 40px;
    background-color: #217CFE; 
    color: #ffffff;
    border-radius: 75px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.00);
    font-size: 15px;
    line-height: 23px;
}

.btn-know-more:hover {
    background-color: #1a6cdb;
    color: #fff;
}

.about-image-wrapper {
    padding-left: 20px;
}

.rounded-image {
    border-radius: 32px; 
    width: 100%;
}



/* Our Mission CSS */
.our-mission-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: url('../img/mission-bg.jpg') no-repeat center center;
    margin-top: 60px;
}

.mission-content {
    padding-left: 25px;
}



/* Responsibality Area CSS */
.responsibility-area {
    background-color: #ECF1F5; 
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    color: #000; 
    margin-bottom: 60px;
}

.resp-card {
    transition: transform 0.3s ease;
}

.resp-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-box img {
    max-width: 90px;
    height: auto;
}

.resp-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #131C33;
    margin-bottom: 15px;
    line-height: 27px;
}

.resp-card p {
    font-size: 18px;
    color: #3A3B3C;
    line-height: 27px;
    margin: 0 auto;
}


/* Counter Section CSS */
.counter-section {
    background-color: #217CFE; 
    padding: 100px 0;
    color: #ffffff;
}

.counter-box {
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 40px;
}

.counter-content {
    text-align: left; 
}

.counter-content h3 {
    font-size: 36px;
    font-weight: 400;
    margin: 0;
    line-height: 30px;
    color: #fff;
}

.counter-content p {
    font-size: 20px;
    font-weight: 400;
}



/* gallery Section */
.custom-gallery {
    padding: 100px 0;
    background: url('../img/tabs-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; 
    text-align: center;
    position: relative;
}

.gallery-header h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 70px;
    color: #000;
    line-height: 36px;
}

.gallery-tabs {
    list-style: none;
    padding: 0;
    display: inline-flex;
    margin-bottom: 45px;
    border: none !important;
    gap: 20px;
}

.tab-btn {
    background: #DBE5F3 !important;
    padding: 10px 25px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
    border: none;
    line-height: 24px;
    color: #131C33 !important;
}

.tab-btn.active, .tab-btn:hover {
    background: #217CFE !important;
    color: #fff !important;
}

.gallery-card {
    position: relative;
    margin-bottom: 15px; 
    overflow: hidden;
    background: #fff;
}

.gallery-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.small-img img {
    height: 250px; 
}

.big-img img {
    height: 320px;
}

/* Video Play Button */
.video-item .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.play-overlay i {
    color: #3B60C9;
    font-size: 23px;
}
.tab-content {
    width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sticky CSS */
.main-navbar {
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease; 
    background: #fff; 
}

.sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease; 
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

a.navbar-brand.navbar-logo img {
    max-width: 35px;
    height: auto;
}

/* Testi Section CSS */

.alumni-section {
    padding: 135px 0;
    background: url('../img/test-main-bg.jpg') no-repeat center center;
    overflow-x: hidden;
    position: relative;
}

.section-title {
    color: #000;
    font-size: 48px;
    line-height: 48px;
}
.slider-card {
    background: #ffffff;
    border-radius: 20px !important;
    padding: 50px 115px;
    margin: 0 auto;
    position: relative;
}
.quote-icon {
    margin-bottom: 20px;
    margin-left: -375px;
    margin-top: -35px;
    position: relative;
}

.alumni-img-wrapper {
    width: 330px;
    height: 500px;
    border-radius: 165px;
    overflow: hidden;
    object-fit: cover;
    object-position: top center;
}

.alumni-content {
    width: 810px;
    padding-left: 55px;
}

.alumni-section h3.content-title {
    font-size: 25px;
    font-weight: 500;
}

.alumni-section p.content-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: justify;
}

.alumni-section .alumni-info h4 {
    font-size: 25px;
    font-weight: 500 !important;
    margin-top: 60px;
    margin-bottom: 5px;
}

.alumni-info span {
    color: #7B7B7B;
    font-size: 18px;
    font-weight: 500;
}

.alumni-slider.owl-carousel .owl-item {
    opacity: 0; 
    transition: opacity 0.3s ease;
}

.alumni-slider.owl-carousel .owl-item.active {
    opacity: 1; 
}

.alumni-slider .owl-nav button.owl-prev, 
.alumni-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px !important;
    color: #000 !important;
    background: transparent !important;
    z-index: 99; 
    margin: 0 !important;
    padding: 10px !important;
}

.alumni-slider .owl-nav button.owl-prev {
    left: 35px;
}
.alumni-slider .owl-nav button.owl-next {
    right: 35px; 
}

.alumni-slider .owl-nav button:hover {
    color: #217CFE !important;
}

.alumni-slider.owl-carousel .owl-stage-outer {
    padding: 60px 0; 
    margin: -60px 0; 
    overflow: visible!important; 
}



/* Events Tabs CSS */
.events-section {
    padding-top: 85px;
    padding-bottom: 165px;
    background-color: #E2E2E2; 
}

.section-title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
}

/* Tabs Navigation */
.events-tabs-nav {
    gap: 30px;
    margin-bottom: 50px;
}

.tab-link {
    background: transparent;
    border: none;
    font-size: 16px;
    color: #000;
    padding: 15px 13px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 400;
}

.tab-link.active {
    border: 1px solid #000;
    border-radius: 10px;
    background: #fff;
}

.view-all {
    text-decoration: underline;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

/* Tab Content Card */
.event-tab-content {
    display: none; 
}

.gallery-header {
    margin-bottom: 45px;
}
.event-tab-content.active {
    display: block; 
}

.event-card-home {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: transparent;
}

.event-image {
    width: 470px;
    height: 500px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.event-details {
    padding: 77px 50px;
    color: #fff;
    background: #000;
    border-radius: 10px;
}

.event-date {
    display: block;
    font-size: 25px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

.event-title {
    font-size: 54px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.event-meta {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.event-desc {
    font-size: 18px;
    color: #C8C7CC;
    margin-bottom: 40px;
    line-height: normal;
    max-width: 620px;
}

.btn-ticket {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
    font-size: 16px;
}

.btn-ticket:hover {
    background: #f0f0f0;
    color: #000;
}



/* News CSS */
/* Events Tabs CSS */
.events-section {
    padding-top: 85px;
    padding-bottom: 165px;
    background-color: #E2E2E2; 
}

.section-title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
}

/* Tabs Navigation */
.events-tabs-nav {
    gap: 30px;
    margin-bottom: 50px;
}

.tab-link {
    background: transparent;
    border: none;
    font-size: 16px;
    color: #000;
    padding: 15px 13px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 400;
}

.tab-link.active {
    border: 1px solid #000;
    border-radius: 10px;
    background: #fff;
}

.view-all {
    text-decoration: underline;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

/* Tab Content Card */
.event-tab-content {
    display: none;
}

.event-tab-content.active {
    display: block;
}


.event-image {
    width: 470px;
    height: 500px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.event-details {
    padding: 77px 50px;
    color: #fff;
    background: #000;
    border-radius: 10px;
}

.event-date {
    display: block;
    font-size: 25px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

.event-title {
    font-size: 54px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.event-meta {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.event-desc {
    font-size: 18px;
    color: #C8C7CC;
    margin-bottom: 40px;
    line-height: normal;
    max-width: 620px;
}

.btn-ticket {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
    font-size: 16px;
}

.btn-ticket:hover {
    background: #f0f0f0;
    color: #000;
}


/* News CSS */
.recent-news-section {
    padding: 80px 0;
    background-color: #ECF1F5; 
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    line-height: 36px
}

.news-card {
    background: #F6F6F6;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
    transition: transform 0.3s ease;
    padding: 6px;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    width: 100%;
    height: 275px;
    overflow: hidden;
    border-radius: 0 !important;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.news-content {
    padding: 20px 25px 35px;
}

.news-title {
    font-size: 20px;
    line-height: 26px;
    color: #217CFE; 
    font-weight: 400;
    margin-bottom: 10px;
}

.news-date {
    display: block;
    font-size: 12px;
    color: #7A7A7A;
    line-height: 16px;
    margin-bottom: 10px;
}

.news-desc {
    font-size: 18px;
    line-height: 27px;
    color: #000000;
    margin-bottom: 25px;
}

.read-more {
    color: #217CFE !important;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 27px;
}

.read-more:hover {
    text-decoration: underline;
}


/* Footer CSS */
/* Logo & Divider Styling */
.logo-divider {
    width: 2px;
    height: 185px; 
    background-color: #000;
    margin: 0 20px;
}

.uni-name-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 25px;
}

.footer-main-content {
    margin-top: 60px;
    display: flex;
    align-items: center !important;
    justify-content: center;
}

.footer-links li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    line-height: 30px;
    transition: 0.3s;
    font-weight: 400;
}

.footer-links li a:hover {
    color: #217CFE;
}

/* Newsletter Customization */
.newsletter-input-box {
    background: #217CFE; 
    border-radius: 10px;
    padding: 10px 10px;
    max-width: 770px;
    margin: 0 auto;
}

.mail-icon {
    color: #fff;
    padding: 0 15px;
    font-size: 20px;
}

.btn-subscribe-white {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 15px 45px;
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
}

.subscribe-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.policy-sub-text {
    font-size: 16px;
    color: #8A8A8F !important;
    margin-top: 15px;
    font-weight: 400;
    text-align: left;
}

/* Bottom Border & Copyright */
.footer-bottom-border {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 50px 0 20px;
}

.copy-text {
    font-size: 16px;
    color: #8A8A8F;
    font-weight: 400;
    margin: 0;
}

.footer-section {
    padding: 80px 0 35px;
    background: url('../img/footer-sketch-bg.png') no-repeat center bottom;
    background-size: cover;
}

input.form-control {
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    color: #fff !important;
}

.form-control::placeholder {
    color: #ffffff !important;
    opacity: 1; 
}

p.policy-sub-text a {
    color: #666;
}

.copy-text strong {
    color: #000;
}


section.recent-news-section .row {
    margin-bottom: 10px;
}



/* About Hero Section */
.about-section-page {
    position: relative;
    background-image: url('../img/about-page-bg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 370px;
}

/* Custom Overlay */
.about-section-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64); 
    z-index: 1;
}

.about-section-page .container {
    position: relative;
    z-index: 2; 
}

.about-content-page {
    text-align: center;
    color: #ffffff;
}

.about-content-page h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.about-content-page p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 35px;
    font-weight: 400;
}


/* About Info Section CSS */
.info-section {
    padding-top: 130px;
    padding-bottom: 110px;
    background-image: url('../img/about-content-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.info-row {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.overlap-container {
    position: relative;
    width: 100%;
    max-width: 1153px; 
    display: flex;
    align-items: flex-start;
}

.content-card {
    background: #ffffff !important;
    /* width 1085px nischit korar jonno */
    width: 1085px !important;
    max-width: 1085px !important;
    flex-shrink: 0;
    padding: 50px 50px 50px 450px;
    margin-top: 40px;
    margin-left: -430px; 
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.image-box {
    position: relative;
    z-index: 5; 
    flex-shrink: 0;
    min-height: 330px;
}

.image-box img {
    width: 100%;
    display: block;
    height: 365px;
}

.reverse {
    flex-direction: row-reverse;
}

.reverse .content-card {
    margin-left: 0;
    margin-right: -430px;
    padding: 50px 450px 50px 50px; 
}

.content-card h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.content-card p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 15px;
    font-weight: 400;
}

p.width-paragraph-custom {
    margin-left: -400px;
}
p.width-paragraph-custom-mission {
    margin-left: -400px;
    margin-top: 35px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.overlap-container.reverse {
    margin-left: 155px;
}

p.width-paragraph-custom-reverse {
    margin-right: -400px;
    margin-top: 35px;
}


/* Event Page CSS */
.events-section-page {
    padding-top: 110px;
    padding-bottom: 80px;
    background-image: url('../img/events-bg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Filters */
.custom-select {
    border: 1px solid #3B60C9;
    color: #6A78A1;
    padding: 10px 15px;
    border-radius: 0;
    background: #fff;
    font-size: 18px;
    outline: none;
    font-weight: 700;
}

.filter-btn {
    background-color: #3B60C9;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Event Card Styling */
.event-card {
    background-color: #3B60C9; 
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 45px;
}

.event-img-container {
    height: 100%;
    position: relative;
    padding: 30px 0px 30px 30px;
}

.event-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-date-tag {
    position: absolute;
    bottom: 15px;
    left: 30px;
    right: 0px;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    border-bottom: 8px solid #000000;
    margin-bottom: 15px;
}

.event-content {
    padding: 30px 30px;
}

/* Countdown Timer */
.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.timer-box {
    text-align: center;
    font-size: 11px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
}

.timer-box span {
    display: block;
    background: #161F37;
    padding: 5px 8px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0px;
    margin-bottom: 2px;
    border: 1px solid #FFFFFF;
    margin-top: 3px;
}

.remaining-text {
    font-size: 18px;
    margin-left: 10px;
    font-weight: 700;
    color: #fff;
}

h3.event-title-page {
    font-size: 32px;
    line-height: 39px;
    font-weight: 400;
    color: #fff;
}




.join-btn {
    display: inline-block;
    border: 3px solid #FFFFFF;
    color: #fff !important;
    text-decoration: none !important;
    padding: 13px 35px;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s;
    background: #2F4DA1 !important;
    font-weight: 500;
}

.join-btn:hover {
    background: white;
    color: #3f6ad8;
}

/* Pagination */
.custom-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 15px;
}

.custom-pagination li a, .custom-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 3px solid #DEE2E6;
    text-decoration: none;
    color: #8B8B8E;
    font-size: 18px;
    font-weight: 400;
    background: #fff;
}

.custom-pagination li.active a {
    background-color: #0D6EFD;
    color: #fff;
    border-color: #007bff;
}

.filter-group.d-flex.gap-2 {
    gap: 20px !important;
}

p.event-desc-page {
    font-size: 18px;
    line-height: 27px;
    color: #fff;
}




/* Gallery Tabs Styling */

.custom-gallery.gallery-bg-custom {
    background-image: url('../img/gallery-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 150px 0;
}

.gallery-tabs-wrapper {
    margin-bottom: 50px;
    border-bottom: 4px solid #3B60C9;
    padding-bottom: 0;
}

.gallery-tabs {
    list-style: none;
    display: inline-flex;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.tab-btn {
    border: none;
    padding: 13px 30px;
    background: #DBE5F3;
    color: #131C33;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 18px;
}

.tab-btn.active, .tab-btn:hover {
    background: #3B60C9;
    color: #fff;
}

/* Event Title & Info */
.event-info {
    max-width: 900px;
    margin-bottom: 30px;
}

.gallery-card img {
    transition: transform 0.5s ease;
}


/* Overlay Design */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3B60C9CC; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    color: #fff;
    text-align: center;
    opacity: 0;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.overlay-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
    text-align: left;
}

.overlay-info p {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.plus-icon {
    font-size: 100px;
    font-weight: 300;
    display: block;
    margin-bottom: 0;
    line-height: 100px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B60C9;
    z-index: 2;
    transition: 0.3s;
}

.gallery-card:hover .play-btn {
    opacity: 0; 
}

h2.gallery-title {
    font-size: 48px;
    font-weight: 400;
    text-decoration: underline;
    margin-bottom: 30px;
}

.event-group.gallery-bottom {
    margin-top: 140px;
}

.row.paganation-gap {
    margin-top: 130px;
}

p.gallery-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    width: 100% !important;
}

.info-gallery h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: left;
}

.info-gallery {position: absolute;bottom: 15px;left: 15px;}

section.custom-gallery.gallery-bg-custom .event-info {
    max-width: 100%;
}

section.custom-gallery.gallery-bg-custom .gallery-card {
    margin-top: 20px;
}




/* Committee CSS */
.ec-committee-section {
    padding: 200px 0;
    background-image: url('../img/about-content-bg.png'); 
    background-size: cover;
    background-position: center;
}

.member-card {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-img {
    width: 100%;
    overflow: hidden;
    height: 540px;
    object-fit: cover;
    object-position: top center;
}

.member-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.member-img.member-small-img {
    height: 400px;
}

.member-info {
    background-color: #3B60C9;
    color: #fff;
    padding: 35px;
    width: 90%;
    margin: -90px auto 0; 
    position: relative;
    z-index: 2;
}

.member-info h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #fff;
}

.member-info p {
    font-size: 18px;
    margin: 0;
    font-weight: 400;
}

.member-info.small-info h3 {
    font-size: 18px;
    line-height: 16px;
}

.member-info.small-info p {
    font-size: 14px;
}

.main-leader .member-info {
    padding: 35px;
}

.main-leader .member-info h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    color: #fff;
    margin-bottom: 0;
}


/* Notice CSS */
.ga-notice-section {
    padding: 60px 0;
    background-image: url('../img/about-content-bg.png'); 
    background-size: cover;
    background-position: center;
}


/* Notice CSS */
/* Notice Section Base */

.ga-notice-header {
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.ga-header-top {
     color: #fff;
     padding: 10px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 400;
     font-size: 18px;
     background: #217CFE;
}

.ga-btn-refresh {
    background: #5BC0DE;
    border: none;
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}

.ga-search-bar {
    padding: 15px 20px;
    background: #EEEEEE;
}

.ga-input {
    width: 100%;
    padding: 12px 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: #555555;
}

.ga-btn-search {
    background-color: #337AB7;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    font-weight: 700;
}

.ga-notice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #666666;
    transition: background 0.3s;
}

.ga-notice-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000; 
    margin-bottom: 5px;
}

.ga-notice-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.ga-btn-read {
    background-color: #000;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 0;
    display: inline-block;
}

.ga-btn-read:hover {
    background-color: #333;
    color: #fff;
}

.ga-white {
    background: #fff !important;
    padding: 50px 130px;
}

.ga-notice-section ul.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-top: 1px solid #eeeeee;
    padding-top: 80px;
    padding-bottom: 60px;
}


/* 125% Screen */
@media (max-width: 1536px) {
    .container{
	max-width: 1300px !important;
	margin: 0 auto !important;
	overflow: hidden;
}
.single-slide {
    height: 600px;
}

.nav-link {
    font-size: 15px;
}

.nav-menu {
    gap: 30px;
}

.hero-content h1 {
    font-size: 60px;
}

.hero-content h2 {
    font-size: 30px;
}

.about-section {
    padding: 80px 0;
}

.about-title {
    font-size: 40px;
}

.section-title {
    font-size: 40px;
}

.our-mission-section {
    padding: 60px 0;
    margin-top: 20px;
}

.responsibility-area {
    padding: 60px 0;
}

.counter-section {
    padding: 60px 0;
}

section.custom-gallery {
    padding: 70px 0;
}

.alumni-section {
    padding: 80px 0;
}

.gallery-header h2 {
    font-size: 40px;
}

.alumni-img-wrapper {
    width: 270px;
    height: 400px;
}

.alumni-content {
    width: 770px;
}

.alumni-section .alumni-info h4 {
    margin-top: 20px;
}

.quote-icon {
    position: absolute;
    margin-left: -320px;
    margin-top: -14px;
}

.event-title {
    font-size: 40px;
}

.event-image {
    height: 484px;
}

h3.event-title-page {
    font-size: 28px;
}

.ec-committee-section {
    padding: 80px 0;
}

.custom-gallery.gallery-bg-custom {
    padding: 70px 0;
}

h2.gallery-title {
    font-size: 34px;
}

p.gallery-desc {
    font-size: 16px;
}

.event-group.gallery-bottom {
    margin-top: 50px;
}

.row.paganation-gap {
    margin-top: 50px;
}

}


/* 150% Screen */
@media (max-width: 1280px) {
.container{
	max-width: 1100px !important;
	margin: 0 auto !important;
	overflow: hidden;
}

.btn-custom {
    font-size: 14px;
    padding: 5px 20px;
}

.contact-item {
    font-size: 12px !important;
}

.nav-link {
    font-size: 13px;
}

.contact-item .value {
    font-size: 12px;
}

.nav-menu {
    gap: 25px;
}

.toggle-btn img {
    width: 30px;
}

.vertical-socials a {
    font-size: 16px;
}

.hero-content h1 {
    font-size: 45px;
}

.hero-content h2 {
    font-size: 28px;
}

.vertical-socials {
    left: 20px;
    gap: 20px;
}

.show-line::after {
    top: -12px;
}

.single-slide {
    height: 500px;
}

.btn-readmore {
    font-size: 14px;
    padding: 10px 30px;
}

.hero-slider .owl-dot.active span {
    width: 20px !important;
    height: 20px !important;
}

.hero-slider .owl-dot span {
    width: 15px !important;
    height: 15px !important;
}

.hero-slider .owl-dots {
    right: 40px;
}

.hero-content p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}

.about-section {
    padding: 60px 0;
}

.about-title {
    font-size: 30px;
}

.about-text {
    font-size: 16px;
    line-height: 24px;
}

.btn-know-more {
    font-size: 14px;
    line-height: 21px;
    padding: 10px 30px;
}

.our-mission-section {
    margin-top: 30px;
    padding: 50px 0;
}

.responsibility-area {
    padding: 60px 0;
}

.section-title {
    font-size: 30px;
    margin-bottom: 30px;
}

.icon-box img {
    max-width: 60px;
}

.icon-box {
    width: 80px;
    height: 65px;
    margin: 0 auto 20px;
}

.resp-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.resp-card p {
    font-size: 16px;
    line-height: 24px;
}

.counter-section {
    padding: 60px 0;
}

.counter-content h3 {
    font-size: 30px;
}

.counter-content p {
    font-size: 14px;
}

img.counter-icon {
    width: 60px;
}

.counter-box {
    gap: 20px;
}

.custom-gallery {
    padding: 60px 0;
}

.gallery-header h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.tab-btn {
    font-size: 16px;
    padding: 5px 20px;
}

.gallery-tabs {
    margin-bottom: 30px;
}

.big-img img {
    height: 270px;
    object-fit: cover;
    object-position: top center;
}

.small-img img {
    height: 200px;
    object-fit: cover;
    object-position: top center;
}

.alumni-section {
    padding: 60px 0;
}

.alumni-slider.owl-carousel .owl-stage-outer {
    padding: 30px 0;
    margin: -30px 0;
}

.slider-card {
    padding: 30px 70px;
    box-shadow: 0px 5px 20px 0px #0000001C;
}

.alumni-img-wrapper {
    width: 250px;
    height: 350px;
}

.alumni-content {
    width: 670px;
}

.alumni-section h3.content-title {
    font-size: 20px;
}

.alumni-section p.content-desc {
    font-size: 16px;
    line-height: 24px;
}

.alumni-section .alumni-info h4 {
    font-size: 20px;
    margin-top: 30px;
}

.alumni-info span {
    font-size: 16px;
}

.quote-icon {
    margin-left: -308px;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
}

.alumni-slider .owl-nav button.owl-prev {
    left: 5px;
}

.alumni-slider .owl-nav button.owl-next {
    right: 5px;
}

.events-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.tab-link {
    font-size: 14px;
    padding: 10px;
}

.events-tabs-nav {
    gap: 15px;
    margin-bottom: 30px;
}

.event-image {
    width: 300px;
    height: 304px;
    object-fit: cover;
}

.event-details {
    padding: 30px;
}

.event-date {
    font-size: 18px;
    margin-bottom: 5px;
}

.event-title {
    font-size: 35px;
}

.event-meta {
    font-size: 14px;
}

.event-desc {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-ticket {
    font-size: 14px;
    padding: 10px 30px;
}

.recent-news-section {
    padding: 50px 0;
}

.news-img {
    height: 200px;
}

.news-content {
    padding: 15px;
}

.news-title {
    font-size: 17px;
    line-height: 22px;
}

.news-date {
    font-size: 11px;
}

.news-desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
}

.read-more {
    font-size: 14px;
}


.footer-section {
    padding: 50px 0 20px;
}

.uni-name-text {
    font-size: 13px;
    line-height: 22px;
    margin-top: 10px;
}

.footer-main-content {
    margin-top: 35px;
}

.subscribe-title {
    font-size: 15px;
}

.footer-links li a {
    font-size: 14px;
    line-height: 22px;
}

.newsletter-input-box {
    width: 500px;
    padding: 5px;
}

input.form-control {
    font-size: 14px;
}

.btn-subscribe-white {
    font-size: 14px;
    padding: 10px 30px;
}

.policy-sub-text {
    font-size: 14px;
    margin-left: 15px;
}

.footer-bottom-border {
    margin: 15px 0 15px;
}

.copy-text {
    font-size: 14px;
}

.custom-select {
    font-size: 16px;
    padding: 6px 10px;
}

.filter-btn {
    font-size: 16px;
}

p.event-desc-page {
    font-size: 16px;
    line-height: 24px;
}

.join-btn {
    font-size: 14px;
}

.custom-pagination li a, .custom-pagination li span {
    width: 40px;
    height: 40px;
}

.image-box img {
    height: 300px;
}

.content-card p {
    font-size: 15px;
    line-height: 23px;
}

.about-content-page h1 {
    font-size: 40px;
}

.about-content-page p {
    font-size: 15px;
    margin-bottom: 15px;
}

.content-card h2 {
    font-size: 32px;
}

.reverse .content-card {
    margin-right: -360px;
}

.ec-committee-section {
    padding: 60px 0;
}

.member-img {
    height: 380px;
}

.main-leader .member-info h3 {
    font-size: 16px;
}

.member-info p {
    font-size: 14px;
}

.member-info h3 {
    font-size: 16px;
}

.member-info {
    padding: 25px;
    margin: -70px auto 0;
}

.main-leader .member-info {
    padding: 25px;
}

.member-img.member-small-img {
    height: 300px;
}

.member-info.small-info h3 {
    font-size: 16px;
}

.member-info.small-info p {
    font-size: 12px;
}

}





/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) {


}
/* Tablet & mobile Layout: 768px. */
@media only screen and (max-width: 991px) {
.nav-menu {
    gap: 20px;
}

ul.nav-menu.d-flex.justify-content-center {
    display: none !important;
}

.single-slide {
    text-align: center;
    max-width: 100% !important;
    align-items: center;
    justify-content: center;
}

.hero-content {
    margin: 0 auto;
    width: 80%;
}

.single-slide .row {
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 22px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

p.about-text {
    text-align: center;
}

.about-image-wrapper {
    padding-left: 0;
    margin-top: 30px;
}

.our-mission-section {
    margin-top: 0;
}

.mission-content {
    padding-left: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

h2.about-title {
    text-align: center;
    font-size: 28px !important;
}

.counter-section {
    padding: 40px 0;
}

.counter-section .row.justify-content-between.align-items-center {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center !important;
    justify-content: center !important;
}

.counter-section .row.justify-content-between.align-items-center .col-auto {
    width: 100%;
}


section.custom-gallery {
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 35px;
    margin-bottom: 10px;
}

h2.section-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.gallery-header h2 {
    font-size: 26px;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}


.tab-btn {
    padding: 3px 20px;
    font-size: 12px;
}

.gallery-card {
    width: 100% !important;
}




.hero-slider .owl-dots {
    right: 10px;
}

.vertical-socials {
    left: 10px;
}

.tab-content {
    width: 100%;
}

.alumni-section {
    padding: 30px 0;
}

.slider-card {
    padding: 20px;
}

.alumni-img-wrapper {
    width: 100%;
    height: 300px;
}

.alumni-content {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
}

.quote-icon {
    display: none;
}

h3.content-title {
    text-align: center;
}

.alumni-section p.content-desc {
    font-size: 15px;
    text-align: center;
}

.alumni-info {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.alumni-section .alumni-info h4 {
    text-align: center;
}

.alumni-info span {
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-tabs-nav {
    flex-wrap: wrap !important;
    align-items: center;
    justify-content: center;
}

.event-image img {
    width: 100% !important;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-title {
    font-size: 28px;
    text-align: center;
}

.event-details {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.event-meta {
    text-align: center;
}

.event-desc {
    text-align: center;
}

ul.footer-links.list-unstyled {
    text-align: center;
}

.footer-main-content {
    margin-top: 20px;
}

.newsletter-input-box {
    width: 100%;
}

.mail-icon {
    display: none;
}

.policy-sub-text {
    margin-left: 0;
    text-align: center;
}

.copy-text {
    font-size: 12px;
}

.col-auto:has(.alumni-img-wrapper) {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .alumni-img-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;   
        margin: 0 auto !important;
    }

    .alumni-img-wrapper img {
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        height: 250px !important;
        object-fit: contain; 
    }

.about-content-page h1 {
    font-size: 40px;
}

.about-content-page p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}

.events-section-page {
    padding-top: 40px;
    padding-bottom: 30px;
}

.filter-group.d-flex.gap-2 {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.custom-select {
    font-size: 14px;
}

.filter-btn {
    font-size: 14px;
}

.event-card {
    flex-wrap: wrap;
}

.event-img-container {
    padding: 0;
}

.event-date-tag {
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin-bottom: 0;
}

.countdown-wrapper {
    flex-wrap: wrap;
}

.event-content {
    padding: 10px;
}

.remaining-text {
    margin-left: 0;
}

h3.event-title-page {
    font-size: 24px;
    line-height: 28px;
}

.custom-pagination li a, .custom-pagination li span {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.custom-pagination {
    flex-wrap: wrap;
    gap: 5px;
}

.info-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.overlap-container {
    display: block;
}

.content-card {
    padding: 20px;
    margin-left: 0;
    width: 100% !important;
    margin-top: 10px;
}

.content-card h2 {
    font-size: 24px;
    text-align: center;
}

.content-card p {
    font-size: 14px;
    text-align: center;
}

p.width-paragraph-custom {
    margin-left: 0;
}

p.width-paragraph-custom-mission {
    margin-left: 0;
}

.overlap-container.reverse {
    margin-left: 0;
}

.info-row {
    margin-bottom: 50px;
}

.image-box img {
    object-fit: cover;
}

.reverse .content-card {
    margin-right: 0;
    padding: 20px;
}

p.width-paragraph-custom-reverse {
    margin-right: 0;
}

.ec-committee-section {
    padding-bottom: 0;
    padding-top: 40px;
}

.member-card.main-leader {
    margin-bottom: 0;
}

h2.gallery-title {
    font-size: 20px;
}

.gallery-tabs-wrapper {
    margin-bottom: 20px;
}

p.gallery-desc {
    font-size: 14px;
    line-height: 22px;
}

.custom-gallery.gallery-bg-custom {
    padding: 40px 0;
}

.row.paganation-gap {
    margin-top: 10px;
}

.ga-notice-section {
    padding: 40px 0;
}

.ga-header-top {
    font-size: 14px;
}

.ga-btn-refresh {
    font-size: 12px;
}

.ga-input {
    font-size: 13px;
}

.ga-btn-search {
    font-size: 14px;
    padding: 8px 10px;
}

.ga-white {
    padding: 10px;
}

.ga-search-bar {
    padding: 10px;
}

.ga-notice-item {
    display: block;
    padding: 15px 0;
}

.ga-notice-content h3 {
    font-size: 16px;
}

.ga-notice-content p {
    font-size: 12px;
}

.ga-notice-action {
    margin-top: 10px;
}

.ga-notice-section ul.custom-pagination {
    padding-top: 20px;
    padding-bottom: 20px;
}

}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
.big-img img {
    height: 360px;
}

.small-img img {
    height: 300px;
}

.col-auto:has(.alumni-img-wrapper) {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .alumni-img-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;   
        margin: 0 auto !important;
    }

    .alumni-img-wrapper img {
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        height: 250px !important;
        object-fit: contain; 
    }

}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {


}
/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {

}

