﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-size: 16px;
    line-height: 24px;
    scroll-behavior: smooth;
    font-weight: 400;
    font-family: "Tinos", serif
}

:root {
    --swiper-navigation-size: auto
}

a {
    text-decoration: none
}

.w-img img {
    width: 100%
}

.m-img img {
    max-width: 100%
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    margin-bottom: 0
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: rgba(0, 0, 0, 0)
}

button:hover {
    cursor: pointer
}

button:focus {
    outline: 0;
    border: 0
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2c3941;
    line-height: 24px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 24px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 16px
}

h6 {
    font-size: 14px
}

ul {
    margin: 0px;
    padding: 0px
}

li {
    list-style-type: none
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #323232
}

*::-moz-placeholder {
    color: #2c3941;
    font-size: 14px;
    opacity: 1
}

*::placeholder {
    color: #2c3941;
    font-size: 14px;
    opacity: 1
}

.fix {
    overflow: hidden
}

.clear {
    clear: both
}

.f-left {
    float: left
}

.f-right {
    float: right
}

.z-index-1 {
    z-index: 1
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible
}

.p-relative {
    position: relative
}

.opacity-0 {
    opacity: 0
}

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

.container-fluid {
    padding: 0 40px !important;
    max-width: 1360px
}

/* Header Section */
.header {
    background-color: #fff;
    width: 100%;
    padding: 10px 0 12px 0;
    border-bottom: 1px solid rgb(226, 232, 240, var(--tw-border-opacity, 1));
    --tw-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);
    --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    animation: slideDown .8s ease
}

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

    to {
        transform: translateY(0)
    }
}

.header .header-top {
    display: flex;
    gap: 16px
}

.logo-img {
    padding-right: 16px;
    border-right: 3px solid #d42027
}

.logo-img img {
    max-height: 70px;
    object-fit: contain
}
/* Header Dropdown Menu */
.header-nav .has-dropdown {
    position: relative;
    margin-right: 0px;
}

.header-nav .has-dropdown > a {
    position: relative;
    padding-right: 20px !important;
}

.header-nav .has-dropdown > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.header-nav .has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.header-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 106, 78, 0.15);
    border: 1px solid rgba(0, 106, 78, 0.1);
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    /* list-style: none; */
    flex-direction: column;
}

.header-nav .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav .dropdown-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.header-nav .dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 6px 20px 6px 30px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav .dropdown-menu li a:hover {
    background: rgba(0, 106, 78, 0.05);
    color: #006A4E;
    padding-left: 35px;
}

.header-nav .dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #D42027;
    border-radius: 50%;
}

.header-nav .dropdown-menu li.divider {
    height: 1px;
    background: rgba(0, 106, 78, 0.1);
    margin: 2px 0;
}

/* Dropdown arrow */
.header-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 106, 78, 0.1);
    border-left: 1px solid rgba(0, 106, 78, 0.1);
    z-index: -1;
}

/* Fixed header dropdown styling */
.header.fixed .dropdown-menu {
    background: white;
    border-color: rgba(0, 106, 78, 0.2);
}

.header.fixed .dropdown-menu li a {
    color: #333;
}

.header.fixed .dropdown-menu li a:hover {
    background: rgba(0, 106, 78, 0.08);
    color: #006A4E;
}

.header.fixed .dropdown-menu::before {
    background: white;
    border-color: rgba(0, 106, 78, 0.2);
}

.header .header-top .header-top-left {
    display: flex;
    gap: 10px
}

.header .header-top .header-top-left span {
    font-size: 28px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600
}

.header-content {
    width: 100%
}

.header-top-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}
.offcan-header-action {
    padding: 7px 12px;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
}

.header .header-top p {
    font-weight: 700;
    font-size: 26px;
    color: #318069
}

.header-nav {
    margin-top: 10px;
    justify-content: space-between
}

.header-nav ul {
    display: flex;
    align-items: center
}

.header-action a {
    padding: 7px 12px;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px
}

.header-nav ul li {
    margin-right: 26px
}

.header-nav ul li a {
    color: #474747;
    font-size: 17px;
    font-weight: 500;
    border-radius: 3px
}

.header-nav ul li a:hover {
    color: #318069
}

.hamburger-icon {
    display: flex;
    justify-content: flex-end
}

.hamburger-icon i {
    height: 40px;
    width: 40px;
    border: 1px solid rgba(195, 195, 195, .7254901961);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px
}

/* Mobile Offcanvas */
.offcanvas {
    max-width: 320px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    box-shadow: 5px 0 25px rgba(0, 0, 0, .1)
}

.offcanvas-header {
    background: #318069;
    color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid hsla(0, 0%, 100%, .15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

.offcanvas-title {
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 12px
}

.offcanvas-title img {
    height: 50px;
    filter: brightness(0) invert(1)
}

.btn-close {
    filter: invert(1);
    opacity: .8;
    transition: opacity .3s
}

.btn-close:hover {
    opacity: 1
}

.offcanvas-body {
    padding: 0;
    background-color: #f8f9fa
}

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

.mobile-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.mobile-menu li:last-child {
    border-bottom: none
}

.mobile-menu>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
    background-color: #fff
}

.mobile-menu>li>a:hover {
    background-color: #e3f2fd;
    color: #05468b;
    padding-left: 25px
}

.mobile-menu .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.mobile-menu .submenu.active {
    max-height: 1000px
}

.mobile-menu .submenu li a {
    display: flex;
    align-items: center;
    padding: 14px 20px 14px 45px;
    color: #4a5568;
    text-decoration: none;
    border-bottom: 1px solid rgba(217, 228, 234, .04);
    font-size: 14px;
    transition: all .3s;
    position: relative
}

.mobile-menu .submenu li:last-child a {
    border-bottom: none
}

.mobile-menu .submenu li a:hover {
    background-color: #e3f2fd;
    color: #05468b;
    padding-left: 48px
}

.mobile-menu .submenu li a:hover:before {
    content: "";
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #05468b;
    border-radius: 50%
}

.submenu-toggle {
    transition: all .3s ease
}

.submenu-icon {
    transition: transform .4s ease
}

.submenu-icon.rotated {
    transform: rotate(180deg)
}

.offcanvas-footer {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #eee;
    margin-top: auto
}

.offcanvas-footer p {
    font-family: "Roboto Condensed", sans-serif
}

.offcanvas-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px
}

.offcanvas-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e3f2fd;
    color: #05468b;
    border-radius: 50%;
    text-decoration: none;
    transition: all .3s
}

.offcanvas-social a:hover {
    background: #05468b;
    color: #fff;
    transform: translateY(-3px)
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.mobile-menu li {
    animation: fadeIn .4s ease forwards;
    opacity: 0
}

.mobile-menu li:nth-child(1) {
    animation-delay: .1s
}

.mobile-menu li:nth-child(2) {
    animation-delay: .15s
}

.mobile-menu li:nth-child(3) {
    animation-delay: .2s
}

.mobile-menu li:nth-child(4) {
    animation-delay: .25s
}

.mobile-menu li:nth-child(5) {
    animation-delay: .3s
}

.mobile-menu li:nth-child(6) {
    animation-delay: .35s
}

.mobile-menu li:nth-child(7) {
    animation-delay: .4s
}

.mobile-menu li:nth-child(8) {
    animation-delay: .45s
}

/* Header Search */
.header-search-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin-left: auto
}

.header-search {
    position: relative;
    display: flex;
    align-items: center
}

.search-input {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 38px 10px 12px;
    height: 40px;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 14px;
    transition: all .3s ease;
    font-family: "Roboto Condensed", sans-serif
}

.search-input::placeholder {
    font-size: 14px;
    color: #565353;
    font-weight: 300
}

.search-input:focus {
    outline: none;
    border-color: #318069;
    box-shadow: 0 0 8px rgba(0, 123, 255, .2)
}

.search-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #9a9999;
    transition: color .3s ease
}

.search-btn:hover {
    color: #318069
}

.search-results {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: scroll;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    display: none;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1000
}

.search-results li {
    border-bottom: 1px solid rgba(139, 136, 136, .1215686275)
}

.search-results li h5 {
    font-size: 16px;
    font-family: 400;
    font-family: "Roboto Condensed", sans-serif;
    color: #3e3c3c;
    display: block;
    display: -webkit-box;
    height: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.search-results li h5 a:hover {
    color: #318069 !important;
    text-decoration: underline
}

.search-results li p {
    color: #575555 !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    display: block;
    display: -webkit-box;
    height: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.search-results li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background .3s ease
}

.header.fixed {
    background-color: #318069
}

.header.fixed .logo-img img {
    filter: brightness(0) invert(1)
}

.header.fixed .header-top p {
    color: #fff
}

.header.fixed .header-nav ul li a {
    color: #fff
}

/* Section Styles */
.section-title {
    font-size: 34px;
    font-weight: 500;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 42px;
    color: #333
}

.section-subtitle {
    display: inline-block;
    color: #f42a41;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px
}

.section-divider img {
    max-height: 22px;
    opacity: .7
}

.section-divider .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #318069, transparent)
}

.white-divider img {
    max-height: 22px;
    opacity: 1;
    filter: brightness(0) invert(1)
}

.white-divider .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent)
}

.view-all-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto Condensed", sans-serif;
    border: 1px solid #318069;
    border-radius: 5px;
    padding: 10px 20px;
    color: #318069
}

.view-all-btn:hover {
    background-color: #318069;
    color: #fff
}

.section-full-padding {
    padding: 60px 0
}

.section-half-padding {
    padding: 30px 0
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden
}

.hero-container {
    position: relative;
    z-index: 2
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1) 0%, rgba(74, 111, 165, 0.05) 100%);
    animation: float 6s ease-in-out infinite
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -100px;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(66, 153, 225, 0.05) 100%)
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(72, 187, 120, 0.05) 100%)
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    33% {
        transform: translateY(-20px) rotate(120deg)
    }

    66% {
        transform: translateY(10px) rotate(240deg)
    }
}

.hero-content {
    position: relative;
    z-index: 3
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: hsla(0, 0%, 100%, .9);
    border: 1px solid rgba(74, 111, 165, .1);
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #318069;
    border-radius: 50%;
    position: relative
}

.badge-dot::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: rgba(74, 165, 133, .2);
    border-radius: 50%;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: 0
    }
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #318069
}

.badge-divider {
    color: rgba(74, 111, 165, .3);
    font-weight: 300
}

.badge-status {
    font-size: 14px;
    color: #64748b;
    font-weight: 500
}

.hero-headline {
    margin-bottom: 20px
}

.headline-line {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    position: relative;
    overflow: hidden
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    max-width: 520px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 24px
}

.hero-description::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #318069, rgba(64, 172, 140, 0.3));
    border-radius: 2px
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    flex: 1;
    min-width: 240px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .05);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 111, 165, .2);
    box-shadow: 0 12px 32px rgba(74, 111, 165, .15)
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: #318069;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all .3s ease
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg)
}

.feature-content {
    display: flex;
    flex-direction: column
}

.feature-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 15px
}

.feature-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-cta .btn {
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden
}
.header.fixed .header-nav ul .has-dropdown .dropdown-menu li a {
    color: #318069;
}

 .btn-primary {
    background: #318069;
    color: #fff
}

 .btn-primary:hover {
    background: rgb(0, 80.5, 59.2358490566);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2)
}
 .btn-secondary {
    background: #d42027;
    color: #fff;
    border-color: #d42027;
}
 .btn-secondary:hover {
    background: rgb(189.8442622951, 28.6557377049, 34.9241803279);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1)
}

.hero-cta .btn-donation {
    border: 1px solid #318069;
    color: #318069
}

.hero-cta .btn-donation:hover {
    border: 1px solid #318069;
    background: rgba(113, 222, 173, .2901960784)
}

.hero-image-section {
    position: relative;
    margin-left: 30px
}

.imageSwiper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
    position: relative
}

.swiper-slide {
    height: 500px
}

.image-container {
    position: relative;
    height: 100%;
    width: 100%;
    border: 5px solid #fff;
    border-radius: 20px;
    overflow: hidden
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease
}

.swiper-slide-active .image-container img {
    transform: scale(1.05)
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: hsla(0, 0%, 100%, .95);
    padding: 10px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.overlay-badge i {
    color: #318069;
    font-size: 14px
}

.overlay-badge span {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: hsla(0, 0%, 100%, .9);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    backdrop-filter: blur(10px);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: #318069
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2)
}

.swiper-pagination {
    bottom: 20px !important
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: hsla(0, 0%, 100%, .5);
    opacity: 1
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2)
}

@media(max-width: 992px) {
    .hero-section {
        padding: 80px 0
    }

    .hero-headline .headline-line {
        font-size: 2.5rem
    }

    .hero-image-section {
        margin-left: 0;
        margin-top: 50px
    }

    .hero-features {
        flex-direction: column
    }
}

@media(max-width: 768px) {
    .hero-headline .headline-line {
        font-size: 2rem
    }

    .hero-description {
        font-size: 1rem;
        padding-left: 20px
    }

    .swiper-slide {
        height: 400px
    }

    .hero-cta {
        flex-direction: column
    }

    .btn {
        width: 100%;
        max-width: 300px
    }
}

/* Faculty/Researchers Section */
.home-faculty .swiper-slide {
    padding: 2px
}

.home-faculty .swiper-button-next,
.home-faculty .swiper-button-prev {
    color: #318069;
    background: hsla(0, 0%, 100%, .9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    transition: all .3s ease
}

.home-faculty .swiper-wrapper {
    padding: 12px 0
}

.home-faculty .swiper-button-next:after,
.home-faculty .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold
}

.home-faculty .swiper-button-next:hover,
.home-faculty .swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1)
}

.researcher-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    border: none;
    margin-bottom: 20px;
    border: 1px solid rgb(226, 232, 240, var(--tw-border-opacity, 1));
    --tw-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
    text-align: center
}

.researcher-card .profile-bg {
    height: 150px;
    background: #05468b;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.researcher-card .profile-bg img {
    max-height: 120px;
    width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter .3s ease;
    opacity: .2
}

.researcher-card .profile-image {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    transition: all .3s ease
}

.researcher-card .researcher-content {
    padding: 20px;
    text-align: center;
    margin-top: -110px;
    position: relative;
    z-index: 2
}

.researcher-card a:hover {
    text-decoration: underline
}

.researcher-card .researcher-name {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin: 12px 0 5px 0
}

.researcher-card .researcher-department {
    display: inline-block;
    color: #318069;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px
}

.researcher-card .researcher-bio {
    font-size: 15px;
    color: #666;
    font-weight: 400;
    display: block;
    display: -webkit-box;
    height: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

/* Event Section */
.feature-event {
    background-color: #0b8f67
}

.feature-event-wrapper {
    padding-top: 40px
}

.feature-event-item {
    margin-bottom: 20px
}

.feature-event-item .event-img {
    width: 100%;
    max-height: 200px;
    border-radius: 6px;
    overflow: hidden
}

.feature-event-item .event-img img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.feature-event-item h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto Condensed", sans-serif;
    margin-top: 5px;
    display: block;
    display: -webkit-box;
    height: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.feature-event-item h4:hover {
    text-decoration: underline
}

.feature-event-item h6 {
    color: #f3f3f3;
    margin-top: 10px;
    font-size: 13px
}

.feature-event-item p {
    color: #efefef;
    font-weight: 400;
    font-size: 14px;
    font-style: italic;
    display: block;
    display: -webkit-box;
    height: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.feature-event-item p span {
    color: #fff
}

/* Home Feature Section */
.home-feature {
    background-color: #022a4e
}

.home-feature .right-padding {
    padding-right: 40px
}

.feature-heading {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.feature-heading h4 {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 20px
}

.feature-heading .feature-all-btn {
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto Condensed", sans-serif;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 8px 16px;
    color: #fff
}

.feature-heading .feature-all-btn:hover {
    background-color: #d42027;
    color: #fff;
    border: 1px solid #d42027
}

.home-notice {
    width: 100%;
    background-color: #fff;
    border-radius: 12px
}

.home-media-wrapper {
    background-color: #022036;
    border-radius: 12px;
    margin-top: 15px
}

.home-media-item {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(236, 236, 236, .1607843137)
}

.home-media-item:last-child {
    border-bottom: none
}

.home-media-item .media-img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden
}

.home-media-item .media-img img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.home-media-item h4 {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px;
    display: block;
    display: -webkit-box;
    height: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 30px
}

.home-media-item h4:hover {
    text-decoration: underline
}

.home-media-item h5 {
    color: #dedede;
    font-size: 14px
}

.home-notice {
    padding: 30px 30px
}

.home-notice h4 {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(113, 115, 121, .2666666667);
    padding-bottom: 10px
}

.home-notice-wrapper {
    margin-left: 17px
}

.home-notice-wrapper li {
    list-style: square;
    padding: 10px;
    background-color: #f2f2f2;
    margin-top: 10px;
    border-radius: 4px
}

.home-notice-wrapper li:hover {
    background-color: #e1e1e1
}

.home-notice-wrapper li a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    display: block;
    display: -webkit-box;
    height: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.home-notice-wrapper li a:hover {
    text-decoration: underline;
    padding-left: 10px
}

.home-notice-wrapper li .date {
    text-align: end;
    font-size: 13px;
    color: #666;
    margin-top: 5px
}

 .benefits-cta {
            background: #4e9481;
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(0, 106, 78, 0.1);
            box-shadow: 0 10px 30px rgba(0, 106, 78, 0.08);
        }

        .benefits-cta h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #fff;
            font-family: 'Roboto Condensed', sans-serif;
        }

        .benefits-cta p {
            color: #f1f1f1;
            font-size: 16px;
            margin: 0;
        }


/* Home Resource Section */
.home-resource-content h4 {
    font-size: 52px;
    line-height: 62px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    color: #333
}

.home-resource-content p {
    font-size: 18px;
    color: #555;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.6
}

.home-resource-item {
    margin-bottom: 16px
}

.home-resource-item .resource-img {
    max-height: 220px;
    width: 100%
}

.home-resource-item .resource-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px
}

.home-resource-item .resource-text h5 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    display: block;
    display: -webkit-box;
    height: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-family: "Roboto Condensed", sans-serif
}

.home-resource-item .resource-text h5:hover {
    text-decoration: underline
}

.home-resource-item .resource-text .resource-see {
    text-align: end;
    display: flex;
    align-items: center;
    color: #318069;
    padding-top: 20px
}

.home-resource-item .resource-text .resource-see:hover {
    text-decoration: underline;
    padding-left: 10px
}

/* Alumni Stories Section */
.alumni-stories {
    background-color: #fff;
}

.story-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(0, 106, 78, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 106, 78, 0.3);
    box-shadow: 0 20px 40px rgba(0, 106, 78, 0.1);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.story-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.story-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.story-batch {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #318069;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.story-info h3 {
    font-size: 20px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.story-info span {
    display: block;
    color: #318069;
    font-size: 14px;
}

.story-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.story-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    border-left: 3px solid #0B8F67;
    padding: 8px;
    background-color: #e6f0ed;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.story-tags span {
    background: rgba(0, 106, 78, 0.1);
    color: #318069;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #318069;
    font-weight: 500;
    text-decoration: none;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: #D42027;
    gap: 12px;
}

/* Membership Benefits */
.bg-light {
    background-color: #f8fafc !important;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 106, 78, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 106, 78, 0.1);
    border-color: rgba(0, 106, 78, 0.3);
}

.benefit-card.benefit-premium {
    background: linear-gradient(135deg, #318069 0%, #0B8F67 100%);
    color: white;
    border: none;
}

.benefit-card.benefit-premium h3,
.benefit-card.benefit-premium p,
.benefit-card.benefit-premium li {
    color: white;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #318069 0%, #0B8F67 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.benefit-card.benefit-premium .benefit-icon {
    background: white;
    color: #318069;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.benefit-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.benefit-list li i {
    color: #0B8F67;
    font-size: 14px;
}

.benefit-card.benefit-premium .benefit-list li i {
    color: white;
}

/* Gallery Section */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #318069;
    color: white;
    border-color: #318069;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.overlay-content h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

.overlay-content span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* News & Updates */
.main-news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 106, 78, 0.1);
    margin-bottom: 20px;
}

.news-image {
    height: 100%;
    min-height: 300px;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D42027;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.news-category {
    background: rgba(0, 106, 78, 0.1);
    color: #318069;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.news-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.news-stats i {
    color: #318069;
}

/* News Sidebar */
.news-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 25px 25px 5px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 106, 78, 0.1);
}

.sidebar-title {
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.update-item:last-child {
    border-bottom: none;
}

.update-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 106, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #318069;
    flex-shrink: 0;
}

.update-content h4 {
    font-size: 16px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.update-content span {
    color: #888;
    font-size: 13px;
}

.newsletter-sidebar {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #318069 0%, #0B8F67 100%);
    border-radius: 15px;
    color: white;
}

.newsletter-sidebar h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.newsletter-sidebar p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.sidebar-newsletter {
    display: flex;
    gap: 10px;
}

.sidebar-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.sidebar-newsletter button {
    background: #D42027;
    color: white;
    border: none;
    width: 45px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-newsletter button:hover {
    background: #b31b21;
}

/* News Cards */
.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 106, 78, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 106, 78, 0.1);
}

.news-card-image {
    height: 180px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-content {
    padding: 16px;
}

.news-card-date {
    color: #888;
    font-size: 13px;
    display: block;
}

.news-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    font-family: 'Roboto Condensed', sans-serif;
}

.news-card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.news-card-link {
    color: #318069;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-card-link:hover {
    color: #D42027;
}

/* member Section */
.member-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 106, 78, 0.1);
    box-shadow: 0 5px 15px rgba(0, 106, 78, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.member-card:hover {
    box-shadow: 0 10px 25px rgba(0, 106, 78, 0.1);
}

.member-card.highlight {
    border: 2px solid #D42027;
}

.member-card .member-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #e6f0ed;
}

.member-card .member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}


.member-card .member-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #318069;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.member-card .member-info {
    padding: 20px;
}

.member-card .member-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.member-card .specialty {
    color: #D42027;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.member-card .detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.member-card .detail i {
    color: #006A4E;
    width: 16px;
}


/* Enhanced Events Section */
.alumni-events {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-description {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 10px auto 40px;
    line-height: 1.6;
}

.section-d {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 10px auto 10px;
    line-height: 1.6;
}

.event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 106, 78, 0.1);
    box-shadow: 0 5px 15px rgba(0, 106, 78, 0.05);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 106, 78, 0.15);
    border-color: rgba(0, 106, 78, 0.2);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px;
    background: linear-gradient(to right, rgba(0, 106, 78, 0.05), rgba(11, 143, 103, 0.05));
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 60px;
}

.event-day {
    font-size: 32px;
    font-weight: 700;
    color: #318069;
    line-height: 1;
}

.event-month {
    font-size: 14px;
    font-weight: 600;
    color: #0B8F67;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0;
}

.event-year {
    font-size: 12px;
    color: #666;
    background: rgba(0, 106, 78, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.event-category span {
    background: rgba(212, 32, 39, 0.1);
    color: #D42027;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #0B8F67;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-status.past-event {
    color: #666;
    background: rgba(255, 255, 255, 0.95);
}

.event-content {
    padding: 16px;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
}

.event-meta i {
    color: #318069;
    font-size: 12px;
}

.event-content h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.event-stats {
    display: flex;
    gap: 15px;
}

.event-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.event-register-btn,
.event-watch-btn {
    background: #318069;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #318069;
}

.event-watch-btn {
    background: #D42027;
    border-color: #D42027;
}

.event-register-btn:hover {
    background: white;
    color: #318069;
}

.event-watch-btn:hover {
    background: white;
    color: #D42027;
}

.events-view-all {
    padding-top: 40px;
}

.btn-outline-primary {
    border: 2px solid #318069;
    color: #318069;
    background: transparent;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #318069;
    border-color: #318069 ;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 106, 78, 0.2);
}

/* Media & Notice Section */
.media-notice-section {
    position: relative;
}
.section-header{
    margin-bottom: 26px;
}
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    color: #318069;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
    border: 2px solid #318069;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #318069;
    color: white;
    transform: translateX(5px);
}

.media-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.media-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgba(0, 106, 78, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 106, 78, 0.05);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 106, 78, 0.15);
}

.media-card-image {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #D42027;
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-card-content {
    flex: 1;
    padding: 25px;
}

.media-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.media-date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-source {
    background: rgba(0, 106, 78, 0.1);
    color: #318069;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.media-card-content h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.media-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.media-tags span {
    background: rgba(0, 106, 78, 0.08);
    color: #318069;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.media-read-more {
    display: inline-flex;
    align-items: center;
    color: #D42027;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.media-read-more:hover {
    color: #318069;
    gap: 8px;
}

.media-highlights {
    background: white;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(0, 106, 78, 0.1);
    box-shadow: 0 5px 15px rgba(0, 106, 78, 0.05);
}

.media-highlights h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 106, 78, 0.1);
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(0, 106, 78, 0.03);
}

.highlight-item:hover {
    background: rgba(0, 106, 78, 0.08);
    transform: translateX(5px);
}

.pub-header{
    font-size: 30px;
    color: #333;
    font-weight: 500;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 20px 0;
    span{
        color: #D42027;
    }
}
.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #318069 0%, #0B8F67 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-content h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.4;
}

.highlight-content span {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Notice Board */
.notice-board-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(0, 106, 78, 0.1);
    box-shadow: 0 5px 15px rgba(0, 106, 78, 0.05);
    display: flex;
    flex-direction: column;
}



.notice-title h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.notice-title p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.notice-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.notice-filters .filter-btn {
    padding: 8px 16px;
    background: rgba(0, 106, 78, 0.05);
    border: 1px solid rgba(0, 106, 78, 0.1);
    border-radius: 20px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.notice-filters .filter-btn:hover,
.notice-filters .filter-btn.active {
    background: #318069;
    color: white;
    border-color: #318069;
}
.notice-header{
    margin-bottom: 10px;
}
.notice-list {
    flex: 1;
    overflow-y: auto;
    max-height: 500px;
    padding-right: 10px;
}

.notice-list::-webkit-scrollbar {
    width: 6px;
}

.notice-list::-webkit-scrollbar-track {
    background: rgba(0, 106, 78, 0.05);
    border-radius: 3px;
}

.notice-list::-webkit-scrollbar-thumb {
    background: rgba(0, 106, 78, 0.2);
    border-radius: 3px;
}

.notice-item {
    background: rgba(0, 106, 78, 0.03);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 106, 78, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.notice-item:hover {
    background: rgba(0, 106, 78, 0.08);
    border-color: rgba(0, 106, 78, 0.2);
}

.notice-item.priority {
    background: rgba(212, 32, 39, 0.05);
    border-color: rgba(212, 32, 39, 0.2);
}


.notice-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(212, 32, 39, 0.1);
    color: #D42027;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notice-content h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    padding-right: 80px;
}

.notice-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notice-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.notice-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
}

.notice-meta i {
    color: #318069;
    font-size: 12px;
}

.notice-action {
    display: inline-flex;
    align-items: center;
    color: #318069;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.notice-action:hover {
    color: #D42027;
    gap: 8px;
}

.notice-cta {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 106, 78, 0.1);
}

.notice-subscribe {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.notice-subscribe i {
    color: #D42027;
    margin-right: 8px;
}

.notice-subscribe a {
    color: #318069;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

.notice-subscribe a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .media-card-image {
        flex: 0 0 180px;
    }
}

@media (max-width: 991px) {
    .media-card {
        flex-direction: column;
    }
    
    .media-card-image {
        flex: 0 0 200px;
    }
    
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .event-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .event-stats {
        justify-content: space-between;
    }
    
    .media-card-image {
        height: 200px;
    }
    
    .notice-filters {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .event-card {
        margin-bottom: 25px;
    }
    
    .events-view-all {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-outline-primary {
        margin-left: 0 !important;
    }
    
    .media-card-content h3 {
        font-size: 18px;
    }
    
    .notice-content h4 {
        padding-right: 0;
    }
    
    .notice-badge {
        position: static;
        margin-bottom: 10px;
        display: inline-flex;
    }
}






/* Enhanced Donation Section */
.donation-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}



.impact-visualization {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
}

.impact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 106, 78, 0.1);
    border: 1px solid rgba(0, 106, 78, 0.1);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 106, 78, 0.15);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #318069 0%, #0B8F67 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 30px;
}

.impact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.impact-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.impact-breakdown {
    margin-bottom: 30px;
}

.breakdown-item {
    margin-bottom: 20px;
}

.breakdown-bar {
    height: 8px;
    background: rgba(0, 106, 78, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.breakdown-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.percentage {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.label {
    color: #666;
    font-size: 14px;
}

.impact-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 106, 78, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    color: #318069;
    font-size: 13px;
    font-weight: 600;
}

.badge i {
    font-size: 14px;
}

.donor-recognition {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 106, 78, 0.08);
    border: 1px solid rgba(0, 106, 78, 0.1);
}

.donor-recognition h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 106, 78, 0.1);
}

.recognition-levels {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 106, 78, 0.03);
    border-radius: 12px;
    border-left: 4px solid #318069;
    transition: all 0.3s ease;
}

.level:hover {
    background: rgba(0, 106, 78, 0.08);
    transform: translateX(5px);
}

.level-name {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.level-amount {
    background: rgba(212, 32, 39, 0.1);
    color: #D42027;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
}

/* Donation Form */
.donation-form-wrapper {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 106, 78, 0.15);
    border: 1px solid rgba(0, 106, 78, 0.1);
}

.form-header {
    background: linear-gradient(135deg, #318069 0%, #0B8F67 100%);
    padding: 30px;
    color: white;
}
.donation-form-wrapper .form-header p{
    color: #fff;
    margin-top: 10px;
}
.purpose-dropdown {
    position: relative;
}

.purpose-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 106, 78, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: #333;
    background-color: white;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 106, 78, 0.05);
}

.purpose-select:focus {
    outline: none;
    border-color: #006A4E;
    box-shadow: 0 0 0 3px rgba(0, 106, 78, 0.1);
}

.purpose-select option {
    padding: 12px;
    font-size: 15px;
}

.purpose-select option[value="help-residency"] {
    font-weight: 600;
    color: #006A4E;
}

.purpose-select option[value="lab-coat"] {
    font-weight: 600;
    color: #0B8F67;
}

.purpose-select option[value="scholarships"] {
    font-weight: 600;
    color: #D42027;
}

.purpose-select option[value="most-needed"] {
    font-weight: 600;
    color: #666;
}

.purpose-select option[value="ssmc-programs"] {
    font-weight: 600;
    color: #6f42c1;
}



.form-header h3 {
    font-size: 28px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
}

.donation-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn:hover,
.tab-btn.active {
    background: white;
    color: #318069;
    border-color: white;
}

.donation-form {
    padding: 30px;
}

.form-section {
    margin-bottom: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 106, 78, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4::before {
    content: '';
    width: 5px;
    height: 20px;
    background: #D42027;
    border-radius: 2.5px;
}

.donation-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .donation-amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.amount-option {
    background: rgba(0, 106, 78, 0.05);
    border: 2px solid rgba(0, 106, 78, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.amount-option:hover {
    border-color: #318069;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 106, 78, 0.1);
}

.amount-option.active {
    background: #318069;
    border-color: #318069;
    color: white;
}

.amount-option.active .amount {
    color: white;
}

.amount-option.active .impact {
    color: rgba(255, 255, 255, 0.9);
}

.amount {
    font-size: 28px;
    font-weight: 700;
    color: #318069;
}

.impact {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}


.custom-amount-input label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.input-group {
    border: 2px solid rgba(0, 106, 78, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #318069;
    box-shadow: 0 0 0 3px rgba(0, 106, 78, 0.1);
}

.input-group-text {
    background: rgba(0, 106, 78, 0.05);
    border: none;
    color: #318069;
    font-weight: 600;
}

.form-control {
    padding: 15px;
    font-size: 16px;
}

.form-control:focus {
    box-shadow: none;
}
.custom-amount-input .form-control {
    border: none;
}
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .purpose-grid {
        grid-template-columns: 1fr;
    }
}

.purpose-option {
    background: rgba(0, 106, 78, 0.05);
    border: 2px solid rgba(0, 106, 78, 0.1);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.purpose-option:hover {
    border-color: #318069;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 106, 78, 0.1);
}

.purpose-option.active {
    background: #318069;
    border-color: #318069;
    color: white;
}

.purpose-option.active .purpose-info h5,
.purpose-option.active .purpose-info p {
    color: white;
}

.purpose-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #318069;
    font-size: 20px;
    flex-shrink: 0;
}

.purpose-option.active .purpose-icon {
    background: white;
    color: #318069;
}

.purpose-info {
    flex: 1;
}

.purpose-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.purpose-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.purpose-check {
    opacity: 0;
    color: white;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.purpose-option.active .purpose-check {
    opacity: 1;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

.payment-option {
    background: rgba(0, 106, 78, 0.05);
    border: 2px solid rgba(0, 106, 78, 0.1);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-option:hover {
    border-color: #318069;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 106, 78, 0.1);
}

.payment-option.active {
    background: #318069;
    border-color: #318069;
    color: white;
}

.payment-option.active .payment-info h5,
.payment-option.active .payment-info p {
    color: white;
}

.payment-icon {
    font-size: 30px;
    color: #318069;
    flex-shrink: 0;
}

.payment-option.active .payment-icon {
    color: white;
}

.payment-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.payment-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.form-submit {
    margin-top: 10px;
}

.btn-donate {
    background: #D42027;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto 20px;
}
.b-bottom-none{
    border-bottom: none;
}

.btn-donate:hover {
    transform: translateY(-3px);
    color:#fff;
    background: #e22c32;
}

.donate-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.donate-text {
    flex: 1;
    text-align: left;
    margin: 0 20px;
}

.donate-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.donate-subtitle {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
}

.donate-amount {
    font-size: 24px;
    font-weight: 700;
}

.secure-assurance {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.assurance-item i {
    color: #0B8F67;
    font-size: 16px;
}

.privacy-notice {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 0;
}

.privacy-notice i {
    color: #0B8F67;
    margin-right: 8px;
}

.privacy-notice a {
    color: #318069;
    text-decoration: none;
    font-weight: 600;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

/* Enhanced Footer */
.ssmc-footer {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
    margin-top: 80px;
}

.footer-waves {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-main {
    padding: 80px 0 60px;
    background-color: #4e9480;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.logo-text h3 {
    font-size: 20px;
    margin: 0;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.3;
}

.logo-text p {
    font-size: 14px;
    color: #f3f3f3;
    margin: 5px 0 0;
}

.footer-about {
    margin-bottom: 25px;
}

.footer-about p {
    color: #f3f3f3;
    font-size: 15px;
    line-height: 1.6;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.certification {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f3f3f3;
    font-size: 14px;
}

.certification i {
    color: #ee1a23;
    font-size: 16px;
}

.footer-heading {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 106, 78, 0.1);
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D42027;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column li {
    margin-bottom: 12px;
}

.link-column a {
    color: #f3f3f3;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: #D42027;
    transform: translateX(5px);
}

.link-column i {
    font-size: 12px;
    color: #f3f3f3;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 106, 78, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3f3f3;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 16px;
    color: #f3f3f3;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #f3f3f3;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer-newsletter p {
    color: #f3f3f3;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-form .input-group {
    border: 2px solid rgba(0, 106, 78, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 15px;
    font-size: 15px;
}

.btn-subscribe {
    background: #d42027;
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #0B8F67;
}

.form-check-input:checked {
    background-color: #318069;
    border-color: #318069;
}

.footer-main .form-check-label {
    color: #f3f3f3;
    font-size: 14px;
    cursor: pointer;
}

.footer-social {
    margin-top: 30px;
}

.footer-social h5 {
    font-size: 16px;
    color: #f3f3f3;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 106, 78, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3f3f3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #318069;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #318069;
    padding: 25px 0;
    color: white;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
    opacity: 0.5;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-partners span {
    font-size: 14px;
    opacity: 0.9;
}

.partner-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.partner-logos img {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #D42027;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(212, 32, 39, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b31b21;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 32, 39, 0.4);
}

/* Add */

/* Join Community */

.join-wrapper {
    background: #4e9480;
    border-radius: 30px;
    padding: 50px;
}

.join-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
}

.join-description {
    font-size: 18px;
    color: #f1f1f1;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.join-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #f1f1f1;
}

.benefit-item i {
    color: #fff;
    font-size: 18px;
}

.join-cta {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.cta-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-buttons .btn {
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 35px;
}

.cta-note {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-note small {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Extra */