﻿* {
    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 {
    --primary-color: #EA232B;
    --primary-dark: #C41C23;
    --primary-light: #FF5252;
    --primary-gradient: linear-gradient(135deg, #EA232B 0%, #FF5252 100%);
    --secondary-color: #294F9A;
    --secondary-dark: #1C3A7A;
    --secondary-light: #3A63C7;
    --secondary-gradient: linear-gradient(135deg, #294F9A 0%, #3A63C7 100%);
    --accent-color: #00BFA5;
    --text-dark: #1A1A2E;
    --text-medium: #424242;
    --text-light: #757575;
    --light-bg: #F8F9FF;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #F0F2F5;
    --border-color: #E8EAED;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-padding: 0 40px;
    --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: transparent;
    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);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
}

.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;
    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;
}

.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;
}

.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
}
.about-intro-section{
    padding: 60px 0;
}

.header-content {
    width: 100%
}

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

.header .header-top p {
    font-weight: 700;
    font-size: 26px;
    color: #294F9A;
    font-family: "Roboto Condensed", sans-serif;
}

.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: #294F9A
}

.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: #294F9A;
    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;
}

.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: #294F9A;
    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: #294F9A
}

.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: #294F9A !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: #294F9A
}

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

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

.header.fixed .header-nav ul .has-dropdown .dropdown-menu li a {
    color: #294F9A;
}

/* 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-description {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 10px auto 10px;
    line-height: 1.6;
}

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

.bg-light {
    background-color: #f8fafc !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 70px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
}

.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-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
}

.headline-line.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    position: relative;
}

.headline-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(234, 35, 43, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.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, #294F9A, rgba(64, 172, 140, 0.3));
    border-radius: 2px
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.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
}

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

.btn-primary:hover {
    background: #1f4287;
    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-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: #294F9A;
    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: #294F9A
}

.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)
}

/* Hel */
/* About Preview Section - Homepage */
.about-preview-section {
    position: relative;
}

.about-preview-image {
    position: relative;
    padding: 15px;
}

.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-frame img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(234, 35, 43, 0.3);
}

.badge-content i {
    font-size: 16px;
}



@media (max-width: 992px) {
    .about-preview-content {
        margin-top: 40px;
    }
}


.intro-text {
    padding: 40px;
    background-color: #fff;
    border-radius: 26px;
    border: 1px solid #e8eaed;
}

.intro-text .lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
    position: relative;
}



/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.highlight-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: "Roboto Condensed", sans-serif;
}

.highlight-info p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Preview CTA */
.preview-cta .btn-primary {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

.trust-badge i {
    font-size: 16px;
}



/* Committee Message Section */
.committee-message-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    position: relative;
}

.committee-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23EA232B" opacity="0.1" d="M50,20 C65,20 77,32 77,47 C77,62 65,74 50,74 C35,74 23,62 23,47 C23,32 35,20 50,20 Z"/></svg>');
    background-repeat: no-repeat;
    z-index: 0;
}

/* Message Card */
.message-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.message-header {
    background: var(--secondary-color);
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.message-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.message-title h3 {
    font-size: 24px;
    margin: 0;
    color: white;
    font-family: "Roboto Condensed", sans-serif;
}

.message-title p {
    opacity: 0.9;
    margin: 5px 0 0;
    font-size: 16px;
}

.message-body {
    padding: 35px 30px;
}

.message-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Theme Box */
.theme-box {
    background: linear-gradient(135deg, rgba(234, 35, 43, 0.05) 0%, rgba(234, 35, 43, 0.02) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.theme-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.theme-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: "Roboto Condensed", sans-serif;
}

.theme-quote {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 8px;
    font-family: "Tinos", serif;
}

.theme-sub {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* International Affiliations */
.international-affiliations {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.international-affiliations h5 {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 15px;
    font-weight: 600;
}

.affiliation-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 16px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.logo-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .message-header {
        padding: 25px;
    }
    
    .message-body {
        padding: 25px;
    }
    
    .theme-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .theme-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .committee-message-section::before {
        width: 200px;
        height: 200px;
    }
    
    .members-header,
    .message-header {
        padding: 20px;
    }
    
    .message-body,
    .members-list {
        padding: 20px;
    }
    
    .affiliation-logos {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .member-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .member-avatar {
        margin-bottom: 10px;
    }
    
    .theme-quote {
        font-size: 18px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .intro-text .lead {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .badge-content {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-badge {
        justify-content: center;
    }
}


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

.section-header {
    margin-bottom: 26px;
}

.section-header.text-center {
    text-align: center;
}

.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-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: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.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: #294F9A;
    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;
}




/* Publications & Announcements Section */
.media-notice-section {
    position: relative;
}

.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: #294F9A;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
    border: 2px solid #294F9A;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #294F9A;
    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: #294F9A;
    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-card-content p {
    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: #294F9A;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* 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-header {
    margin-bottom: 10px;
}

.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-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;
    font-family: 'Roboto Condensed', sans-serif;
}

.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: #294F9A;
    font-size: 12px;
}

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


/* Hmm */

/* Journal Showcase Section */
.journal-showcase-section {
    position: relative;
    overflow: hidden;
}


/* Journal Slider Wrapper */
.journal-slider-wrapper {
    position: relative;
    padding: 20px;
}

.journalSwiper {
    width: 100%;
    height: 100%;
    padding: 30px 10px 60px;
}

/* Journal Issue Card */
.journal-issue-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}


.journal-cover {
    position: relative;
    max-width: 270px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.journal-cover img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.journal-cover-container .journal-volume{
    text-align: center;
  font-size: 16px;
  color: #484747 ;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: 20px;
}

.journal-issue-card:hover .journal-cover img {
    transform: scale(1.05);
}

.cover-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-new {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-volume {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.journal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.action-btn.view-pdf:hover {
    background: #d42027;
    border-color: #d42027;
}

.action-btn i {
    font-size: 14px;
}

/* Leadership Section */
.leadership-section {
    position: relative;
}

.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 .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: #294F9A;
    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;
}

/* Membership Benefits Section */
.membership-benefits {
    position: relative;
}
.join-community{
    margin-top: 80px;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 18px;
    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: #294F9A;
    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: #294f9a;
    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: #294F9A;
}

.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;
}
/* Hm */
.committee-members{
    max-width: 1020px;
    margin: 60px auto 0; 
}
.committee-member-profile .member-photo-frame{
    margin-bottom: 20px;
}
.committee-member-profile .member-photo-frame img{
    max-height: 380px;
    width: 100%;
    object-fit: contain;
}
.member-profile-info .member-profile-name{
  font-size: 20px;
  font-family: 'Roboto Condensed', sans-serif;
}
.member-profile-title{
    color: var(--secondary-color);
    margin-top: 5px;
}


/* ===== NEW FOOTER STYLES ===== */
.ssmc-footer {
    background: linear-gradient(135deg, #f7f7f7 0%, #f8fafc 100%);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 80px;
}


.footer-main {
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    max-height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.logo-text h3 {
    font-size: 24px;
    color: #294F9A;
    margin-bottom: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.logo-text .tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.footer-social-top {
    text-align: right;
}

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

.footer-social-top .social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer-social-top .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-social-top .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.footer-middle {
    margin-bottom: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    color: #294F9A;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #EA232B;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

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

.footer-links a:hover {
    color: #EA232B;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
    color: #EA232B;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.contact-info {
    margin-top: 10px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(234, 35, 43, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EA232B;
    flex-shrink: 0;
    font-size: 16px;
}

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

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

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

.event-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.event-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-date {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #294F9A;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.event-date .day {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.event-info h5 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-info h5 a:hover {
    color: #EA232B;
}

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

.newsletter-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form .input-group {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    background: transparent;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: #EA232B;
}

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

.btn-subscribe:hover {
    background: #EA232B;
}

.office-hours {
    background: rgba(234, 35, 43, 0.03);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #EA232B;
}

.office-hours h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.office-hours p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.footer-certifications {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-certifications h5 {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.affiliation-logos {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.affiliation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.affiliation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #294F9A;
}

.affiliation-item i {
    color: #EA232B;
    font-size: 16px;
}

.footer-bottom {
    padding: 25px 0;
    background: #f1f1f1;
}

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

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #EA232B;
}

.separator {
    margin: 0 10px;
    color: #ccc;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    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(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-social-top {
        text-align: left;
        margin-top: 30px;
    }
    
    .footer-social-top .social-icons {
        justify-content: flex-start;
    }
    
    .affiliation-logos {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo-text h3 {
        font-size: 20px;
    }
    
    .widget-title {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .event-list li {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-date {
        width: 50px;
        height: 50px;
    }
    
    .affiliation-item {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-top {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
    
    .footer-social-top .social-icons {
        flex-wrap: wrap;
    }
    
    .affiliation-logos {
        gap: 10px;
    }
    
    .affiliation-item {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}






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

.join-title {
    font-size: 36px;
    line-height: 45px;
    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;
}



/* FAQ Styles */
.reunion-faq .accordion-item {
    border: 1px solid rgb(96 124 179 / 20%);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.reunion-faq .accordion-button {
    background:rgb(96 124 179 / 20%);
    color: #333;
    font-weight: 600;
    font-size: 18px;
    padding: 20px;
    border: none;
       font-family: 'Roboto Condensed', sans-serif;

}

.reunion-faq .accordion-button:not(.collapsed) {
    background: rgb(96 124 179 / 10%);
    color: #294F9A;
    box-shadow: none;
}

.reunion-faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgb(96 124 179 / 20%);
}

.reunion-faq .accordion-body {
    padding: 20px;
    background: white;
}

.reunion-faq .accordion-body p {
    color: #555;
    margin-bottom: 15px;
}

.reunion-faq .accordion-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.reunion-faq .accordion-body li {
    color: #555;
    margin-bottom: 8px;
    font-size: 15px;
}

.faq-contact {
    padding: 20px;
    background: rgba(0, 106, 78, 0.03);
    border-radius: 15px;
    border: 1px dashed #294f9a66;
}

.faq-contact p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.faq-contact a {
    color: #294F9A;
    font-weight: 600;
    text-decoration: none;
}

.faq-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .reunion-hero-headline .headline-line {
        font-size: 2.5rem;
    }
    
    .reunion-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .reunion-hero-headline .headline-line {
        font-size: 2rem;
    }
    
    .reunion-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .story-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .story-meta {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .reunion-hero-cta {
        flex-direction: column;
    }
    
    .reunion-hero-cta .btn {
        width: 100%;
    }
    
    .reunion-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .reunion-card-footer .btn {
        width: 100%;
    }
}



/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 140px 0 60px 0;
    }
.intro-text {
    padding: 20px;
}

.section-title {
    font-size: 26px;
    line-height: 36px;
}
.committee-member-profile{
    max-width: 260px;
    margin: 0 auto;
}
.journal-cover {
    max-width: 195px;
}
.join-wrapper {
    padding: 30px;
}
.join-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
}
.join-cta {
    margin-top: 20px;
}
    .hero-headline .headline-line {
        font-size: 2.5rem
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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
    }

    .media-card {
        flex-direction: column;
    }
    
    .media-card-image {
        flex: 0 0 200px;
    }
    
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

    .stat-number {
        font-size: 2rem;
    }

    .notice-content h4 {
        padding-right: 0;
    }
    
    .notice-badge {
        position: static;
        margin-bottom: 10px;
        display: inline-flex;
    }

    .container-fluid {
        padding: 0 20px !important;
    }
}