html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    /* 3 */
}

@font-face {
    font-family: Nunito;
    src: url(../fonts/NunitoSans.ttf);
}

@font-face {
    font-family: roboto;
    src: url(../fonts/Roboto.ttf);
}

@font-face {
    font-family: lato;
    src: url(../fonts/Lato-Black.ttf);
}

/* Sections
   */
body {
    margin: 0;
    font-family: Nunito;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --red: #c80004;
    --yellow: #fdd65b;
    --text: #181818;
    --nav-height: 72px;
    --primary-color: #111827;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --background: #ffffff;
}

p {
    font-size: 16px;
    font-family: roboto;
    font-weight: 400;
    line-height: 25px;
    color: var(--text);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* --------------- header css start --------------- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px clamp(16px, 4vw, 32px);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 20px;
    z-index: 1001;
}

.logo-icon {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.logo-text {
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    list-style: none;
    margin-bottom: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--red);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    font-family: Nunito;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-block;
    font-family: Nunito;
}

.nav-btn.secondary {
    color: #fff;
    background: var(--red);
    border: 1px solid var(--border-color);
}

.nav-btn.secondary:hover {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}

.nav-btn.primary {
    color: #ffffff;
    background: #181818;
    border: 1px solid #181818;
}

.nav-btn.primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}



@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 32px 32px;
        gap: 32px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    /* .nav-item {
      border-bottom: 1px solid var(--border-color);
    } */

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .nav-list {
        gap: 20px;
    }
}

/* --------------- header css end --------------- */

/* --------------- home page css start --------------- */

.membership-main {
    display: flex;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 15px 60px 0px #0000001a;
    align-items: center;
    background: #fff;
    margin-top: -130px;
}

.membership-img {
    width: 40%;
    text-align: end;
}

.membership-content {
    width: 60%;
}

.small-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
    font-size: 22px;
    font-family: Nunito;
    color: var(--text);
    font-weight: 400;
    margin-left: 10px;
    z-index: 100;
}

.small-title::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: -8px;
    right: -10px;
    height: 6px;
    background-color: #ffd700;
    transform: skewX(-10deg);
    z-index: -1;
}

.main-title {
    font-family: Nunito;
    font-weight: 800;
    font-size: 45px;
    line-height: 50px;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 20px;
}

.common-btn {
    font-family: Nunito;
    font-size: 15px;
    font-weight: 700;
    background-color: var(--red);
    color: #fff;
    border: 1px solid var(--red);
    padding: 10px 20px;
    border-radius: 500px;
    margin-top: 20px;
}

.common-btn:hover {
    background: white;
    color: var(--red);
    border: 1px solid var(--red);
}

.hero {
    background-image: url(../images/home/hero.png);
    padding: 200px 100px;
    background-repeat: no-repeat;
    text-align: center;
    background-position: center;
    background-size: cover;
}

.hero-small-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
    font-size: 22px;
    font-family: Nunito;
    color: var(--red);
    font-weight: 400;
    margin-left: 10px;
    z-index: 10;
    line-height: 30px;
}

.hero-small-title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -15px;
    right: -14px;
    height: 30px;
    background-color: #ffd700;
    transform: skewX(-10deg);
    z-index: -1;
}

.hero-title {
    font-family: Nunito;
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    line-height: 60px;
    margin: 20px 0px;
}

.hero-content {
    font-family: roboto;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

section.about {
    margin: 70px 0px;
}

.main-about {
    display: flex;
    align-items: center;
}

.about-image {
    width: 40%;
}

.about-content {
    width: 60%;
    padding-left: 100px;
}

.about-image img {
    width: 100%;
}

.blog-section {
    width: 100%;
    /* Full width as requested */
    margin: 0 auto;
    padding: 50px 0px 200px 0px;
    box-sizing: border-box;
    background: #f5f4ed;
}

/* Swiper Container Styling */
.mySwiper {
    /* This is the main Swiper container */
    width: 100%;
    /* Swiper handles overflow and scrolling */
    /* Adjust padding to create space for Swiper's default navigation buttons */
    padding: 0 60px;
    /* Gives space for arrows on sides */
    box-sizing: border-box;
}

/* Swiper navigation buttons - Overriding default Swiper styles */
/* Using Font Awesome for custom arrow icons, if desired */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
    /* Color of the arrow icon */
    background-color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.2em;
    /* Font Awesome icon size */
    /* Position adjustments for vertical centering */
    top: var(--swiper-navigation-sides-offset,
            50%);
    /* Use Swiper's var for consistency */
    transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #e0e0e0;
    transform: translateY(-50%) scale(1.05);
}

/* Hide Swiper's default background/shape if using Font Awesome */
.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
    /* Hide default Swiper arrow glyph */
}

/* Individual Blog Card - Remains largely the same, but no flex-basis calc here */
.blog-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    /* Swiper controls width with slidesPerView, so no flex-basis needed here */
    /* max-width: 380px; Still useful to limit max card size on very large screens */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease-in-out;
    height: auto;
    /* Allow height to adjust to content */
    min-height: 414px;
    padding: 25px;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    /* Fixed height for consistency */
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Blog Details */
.blog-details {
    padding: 20px 0px 0px 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-details .blog-title {
    font-size: 1.3em;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.swiper-wrapper {
    padding-bottom: 10px;
}

.blog-details .blog-meta {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 10px;
}

.blog-details .blog-excerpt {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-details .read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.blog-details .read-more:hover {
    color: #0056b3;
    text-decoration: underline;
}

.swiper {
    padding: 10px !important;
    margin-top: 35px;
}

/* Responsive adjustments for Swiper */
@media (max-width: 768px) {
    .mySwiper {
        padding: 0 20px;
        /* Reduce padding for arrows on smaller screens */
    }

    /* Position arrows for mobile if needed, though they might overlap on very small screens */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .mySwiper {
        padding: 0 10px;
        /* Even less padding */
    }

    /* .swiper-button-next,
    .swiper-button-prev {
 
    } */
}

.date-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    background-color: #fdd65b;
    border-bottom-left-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    font-family: Arial, sans-serif;
    color: #000;
    box-shadow: 0px 1px 0 5px #c80004;
    padding-right: 12px;
}

.date-badge strong {
    font-size: 18px;
    font-weight: bold;
}

.date-badge span {
    font-size: 14px;
}

.contribution-main {
    display: flex;
    padding: 35px 50px 20px 50px;
    border-radius: 20px;
    box-shadow: 0px 15px 60px 0px #0000001a;
    align-items: center;
    background: #fff;
    margin-top: -130px;
    z-index: 12;
    position: relative;
}

.contribution-content {
    width: 60%;
}

.contribution-img {
    width: 40%;
    text-align: end;
}

.news {
    margin: 70px 0px;
}

.post-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 1px 4px 0px #00000040;
}

.post-card img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
    width: 100%;
}

.date {
    font-size: 14px;
    margin-bottom: 8px;
    font-family: roboto;
}

.title {
    font-family: Nunito;
    font-size: 22px;
    font-weight: bold;
}

.card-content {
    padding: 36px;
}

.card-title {
    font-family: Nunito;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 26px;
}

.card-date {
    font-family: roboto;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.board-container {
    display: flex;
    justify-content: space-around;
    gap: 80px;
    flex-wrap: wrap;
}

.member-card {
    width: 28%;
    text-align: center;
}

.photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto 20px;
}

.member-photo {
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.member-name {
    font-weight: 800;
    font-size: 22px;
    line-height: 22px;
    margin: 10px 0 5px;
    font-family: Nunito;
    color: var(--text);
}

.member-role {
    font-size: 14px;
    color: #4c4c4c;
    font-weight: 600;
    font-family: roboto;
}

@media (max-width: 768px) {
    .board-container {
        gap: 40px;
    }

    .event-card-main .col-md-3 {
        width: 100% !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 500px) {
    .board-container {
        flex-direction: column;
        align-items: center;
    }
}

.div-title {
    margin-bottom: 40px;
}

section.members {
    background: #f5f4ed;
    padding: 40px 0px 120px 0px;
}

.basic-info {
    background-image: url(../images/home/info-bg.png);
    padding: 150px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.small-sec-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
    font-size: 22px;
    font-family: Nunito;
    color: #fff;
    font-weight: 400;
    margin-left: 10px;
    z-index: 100;
}

.small-sec-title::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: -8px;
    right: -10px;
    height: 6px;
    background-color: #ffd700;
    transform: skewX(-10deg);
    z-index: -1;
}

.main-sec-title {
    font-family: Nunito;
    font-weight: 800;
    font-size: 45px;
    line-height: 50px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sec-content {
    color: #fff;
}

.sec-btn {
    margin-top: 14px !important;
}

.footer {
    background-color: #fff4db;
    font-family: "Arial", sans-serif;
    color: #333;
    padding: 60px 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.footer-section {
    width: 20%;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #000;
    font-weight: 800;
    font-family: Nunito;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s;
    font-family: Nunito;
    font-size: 16px;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--red);
}

.footer-logo {
    width: 100px;
    margin-bottom: 30px;
}

.footer-section.about p {
    font-size: 14px;
    line-height: 20px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    background: #fcd462;
    color: #000;
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 8px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #ff9900;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    border-top: 1px solid #e0d6bc;
}

.footer-bottom span {
    color: var(--red);
}

.footer-bottom a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
}

.footer-section ul {
    padding-left: 0px;
}

.footer-about {
    width: 40%;
    padding-right: 80px;
}

.footer-bottom p {
    margin-bottom: 0px;
}

/* --------------- home page css end --------------- */

/* --------------- about page css start --------------- */

.breadcrumb-img img {
    width: 100%;
    max-height: 400px;
}

.breadcrumb-img {
    z-index: 1;
    position: relative;
}

.page-title-main {
    display: flex;
    padding: 35px 50px 20px 50px;
    border-radius: 20px;
    box-shadow: 0px 15px 60px 0px #0000001a;
    align-items: center;
    background: #fff;
    margin-top: -94px;
    z-index: 12;
    position: relative;
}

section.about-membership {
    background: #f5f4ed;
    padding: 40px 0px 275px 0px;
}

.about-membership-main {
    display: flex;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 15px 60px 0px #0000001a;
    align-items: center;
    background: #fff;
    margin-top: -103px;
    margin-bottom: 100px;
}

.about-basic-info {
    background-image: url(../images/about/ab-bg.png);
    padding: 150px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* --------------- about page css end --------------- */



/* --------------- contact page css start --------------- */

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
}

label {
    font-size: 12px;
    margin-bottom: 8px;
    color: #868686;
    font-weight: 400;
    font-family: roboto;
}

input,
textarea {
    padding: 15px;
    font-size: 16px;
    border: none;
    background-color: #F5F4ED;
    border-radius: 10px;
    resize: none;
}

textarea {
    min-height: 150px;
}

.full-width {
    width: 100%;
}

.submit-button {
    font-family: Nunito;
    font-size: 15px;
    font-weight: 700;
    background-color: var(--red);
    color: #fff;
    border: 1px solid var(--red);
    padding: 10px 40px;
    border-radius: 10px;
    margin-top: 12px;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #a80000;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    font-family: Nunito;
    margin-bottom: 30px;
}

section.contact {
    margin-top: 50px;
    margin-bottom: 100px;
}


.contact-icon-box {
    display: flex;
    vertical-align: middle;
    align-items: center;
    margin-bottom: 30px;
}


.icon-box {
    width: 25%;
    text-align: left;
}

.icon-box-title {
    font-family: Nunito;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.icon-box-content {
    font-family: Nunito;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.icon-content {
    width: 75%;
    padding-right: 20px;
    margin-left: 20px;
}

/* --------------- contact page css end --------------- */

/* --------------- register page css start --------------- */

.form-group select {
    padding: 16.6px;
    border: none;
    background: #F5F4ED;
    border-radius: 8px;
    font-size: 15px;
}

button.btn-red {
    background-color: #c90000;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s;
}

button.btn-red:hover {
    background-color: #a80000;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    button.btn-red {
        width: 100%;
    }
}


.register-main {
    display: flex;
}

.register-content {
    padding: 70px 0px;
    width: 45%;
    padding-right: 60px;
    background-image: url(../images/register/register-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position-x: 0px;
}

.register-form {
    width: 55%;
    padding-left: 30px;
    padding-bottom: 70px;
}


.register-content ul li::marker {
    color: white;
}


.register-content ul li {
    color: #fff;
    list-style: circle;
}

/* --------------- register page css end --------------- */


/* --------------- event page css start --------------- */

section.upcoming-event {
    padding: 70px 0px 30px 0px;
}

.div-small-title {
    font-family: Nunito;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

section.past-event {
    padding: 70px 0px 30px 0px;
}

.events-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease-in-out;
    height: auto;
    min-height: 314px;
    padding: 25px;
}

/* --------------- event page css end --------------- */



/* --------------- Gallery page css start --------------- */

section.gallery-main {
    padding: 70px 0px;
}

.event-year {
    width: 30%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px 0px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.gallery-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}



/* Modal (lightbox) styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 60px;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 0 !important;
    background-color: transparent !important;
    width: 60% !important;
}

#caption {
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    background-color: transparent;
    border: none;
}

.close:hover,
.close:focus {
    color: #f1f1f1;
    text-decoration: none;
    cursor: pointer;
}

/* --------------- Gallery page css end --------------- */



/* --------------- Responsive page css start --------------- */

@media (max-width: 1024px) {
    
    .page-title-main {
            margin-top: -60px;
                padding: 25px 25px 25px 25px;
    }
    section.breadcrumbs {
        margin-top: 120px;
    }

    .membership-main {
        display: block;
    }

    .membership-content {
        width: 100%;
    }

    .membership-img {
        width: 100%;
        text-align: center;
    }

    .membership-img img {
        width: 100%;
        margin-top: 40px;
    }

    .main-about {
        display: block;
    }

    .about-image {
        width: 100%;
    }

    .about-content {
        width: 100%;
        padding-left: 0px;
        margin-top: 40px;
    }

    .contribution-main {
        display: block;
    }

    .contribution-content {
        width: 100%;
    }

    .contribution-img {
        width: 100%;
        text-align: start;
    }

    .news .col-md-6 {
        width: 100%;
        margin-bottom: 40px;
    }

    .div-title {
        text-align: center;
    }

    .board-container {
        display: block;
    }

    .member-card {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .basic-info .col-md-6 {
        width: 100%;
    }

    .basic-info {
        background-position: right;
    }

    .footer-about {
        width: 100%;
        padding-right: 0px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .contact .col-md-4 {
        width: 100%;
        text-align: center;
    }

    .page-title-main {
        display: block;
    }

    .icon-content {
        width: 100%;
        padding-right: 0;
        margin-left: 0;
        margin-top: 20px;
    }

    .icon-box {
        width: 100%;
        text-align: center;
    }

    .contact .col-md-8 {
        width: 100%;
        margin-top: 60px;
    }

    .contact-form-title {
        text-align: center;
    }


    .about-membership-main {
        display: block;
    }

    .about-basic-info .col-md-6 {
        width: 100%;
    }

    .event-card-main .col-md-3 {
        width: 50%;
        margin-bottom: 30px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    select.event-year {
        margin-bottom: 20px;
    }

    .register-form {
        margin-top: 40px;
        width: 100%;
    }

    .register-main {
        display: block;
    }

    .register-content {
        padding: 70px 0px 70px 0px;
        width: 100%;
        padding-right: 0px;
    }
    
    .register-form {
        padding-left: 0px;
    }

}

@media (max-width: 1200px) {
    .contact-icon-box {
        display: block;
    }

    .icon-content {
        margin-top: 20px;
    }





}



/* --------------- Responsive page css end --------------- */



/* --------------- Member page css start --------------- */

.blog-card {
    margin-bottom: 30px;
}


/* --------------- Member page css end --------------- */