/* YMCA Website - Modern Professional Design with Logo Colors */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* CSS Variables - Updated with YMCA Logo Colors */
:root {
    --primary-color: #c9262b;      /* YMCA Red from logo */
    --secondary-color: #0066cc;    /* YMCA Blue from logo */
    --accent-color: #ff4757;       /* Lighter red accent */
    --success-color: #2ed573;
    --warning-color: #ffa502;
    --danger-color: #ff3838;
    --dark-color: #2f3542;
    --light-color: #f1f2f6;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Gradients with YMCA Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #004499 100%);
    --gradient-overlay: linear-gradient(45deg, rgba(227, 24, 55, 0.85) 0%, rgba(0, 102, 204, 0.85) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(47, 53, 66, 0.8) 0%, rgba(227, 24, 55, 0.8) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 15px 35px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
 
}

h1, h2, h3, h4, h5, h6 {
     font-family: "Mona Sans", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 70px 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color:#fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
#home .container-fluid {
    max-width: 100%;
    padding: 0px !important;

}
.section-title {
    font-size: 43px;
    font-weight: 700;
    color:#fff;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.section-description {
    font-size: 1.2rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    font-weight: 600;
    
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.btn-primary {
       background: linear-gradient(135deg, #002060 0%, #003fbb 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 20px 45px;
    font-size: 16px;
}

/* Top Bar */
.top-bar {
        background: linear-gradient(135deg, #143b76 0%, #003fbb 100%);
    color: var(--white);
    padding: 5px 0;
    font-size: 14px;
}

.contact-info {
  display: flex;
    gap: 35px;
    align-items: center;
}

.footer-top .contact-info {
  display: block;
    gap: 35px;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.contact-info span a {
    color: var(--white);
    transition: var(--transition);
}

.contact-info i {
    color:  var(--white);
    font-size: 13px;
}

.top-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.top-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 12px;
}

.top-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    background: var(--white);    
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.logo {

    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.brand-location {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 15px 25px;
    position: relative;
    transition: var(--transition);
  
    letter-spacing: 0.5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 40%;
}


/* Mega Menu */
.mega-dropdown .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius-lg);
    padding: 50px 0;
    margin-top: 0;
    background: var(--white);
    min-width: 900px;
    left: 100%;
    transform: translateX(-50%);
}

.mega-menu h6 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.mega-menu h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
}

.mega-menu-list li {
    margin-bottom: 15px;
}

.mega-menu-list a {
    color: var(--gray-600);
    transition: var(--transition);
    padding: 10px 0;
    display: block;
    font-weight: 500;
    position: relative;
}

.mega-menu-list a:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

.mega-menu-image {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.mega-menu-image img {
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.mega-menu-image h6 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.mega-menu-image p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.navbar-toggler {
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-actions .btn {
    padding: 12px 25px;
    font-size: 13px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
   
}

.slider-container {
    position: relative;
    height: 100%;
}
/* 
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
   
} */

.slide.active {
    opacity: 1;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    color:#03437d;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 8px;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 220px;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.floating-card h6 {
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.floating-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-btn {
    width: 70px;
    height: 70px;
       background: rgb(219 219 219 / 34%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #c7c7c7;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Projects Section */
.projects-section {
         background: linear-gradient(135deg, #ffffff2e 0%, #00236b45 100%);
}
.gallery-section .section-subtitle,
#testimonials .section-subtitle,
#events .section-subtitle,
#projects .section-subtitle{
    color: #2b2b2b;
}
.gallery-section .section-title,
#testimonials .section-title,
#events .section-title,
#projects .section-title{
    color: #002369;
}
.gallery-section .section-description,
#testimonials .section-description,
#events .section-description,
#projects .section-description{
    color: #414141;
}

.project-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    box-shadow: var(--shadow-lg);
}

.project-content {
    padding: 40px;
}

.project-content h4 a {
    font-size: 25px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.project-content h4 a:hover {
    font-size:25px;
    margin-bottom: 20px;
    color: #e31837;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.project-content p {
    margin-bottom: 30px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.project-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.project-stats .stat {
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid transparent;
    transition: var(--transition);
}

.project-stats .stat:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.project-link {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.project-link:hover {
    color: var(--accent-color);
    gap: 15px;
}

/* Events Section */
#events{
        background: #fff;
}
.events-section {
    background: var(--light-color);
}

.events-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.events-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-slide {
    min-width: 100%;
    padding: 60px;
}

.event-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-lg);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 90px;
    box-shadow: var(--shadow-lg);
}

.event-date-badge .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.event-date-badge .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

.event-content {
    padding-left: 50px;
}

.event-category {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 2px solid var(--primary-color);
}

.event-content h3 {
    font-size: 25px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.event-content p {
     font-size: 16px;
    color: #272828;
    margin-bottom: 20px;
    line-height: 1.7;
    letter-spacing: 0.5px;

}
.event-btn{
        margin-left: auto;
    margin-right: auto;
    display: table
}

.event-details {
    margin-bottom: 35px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gray-600);
    font-size: 16px;
    font-weight: 500;
}

.detail-item i {
    color: var(--primary-color);
    width: 25px;
    font-size: 16px;
}

/* Event Navigation */
.events-navigation {
    position: absolute;
    top: 70%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.event-nav-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* President Section */
.president-section{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/home/president-bg.jpg') !important;
    background-size: cover !important;
}
.president-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.president-image-container {
    position: relative;
}

.president-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.president-image img {
    width: 546px;
    height: 700px;
    object-fit: cover;
    transform: translateY(1px) !important;
}

.president-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.president-badge i {
    font-size: 1.8rem;
}

.president-badge span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* Floating Achievement Cards */
.floating-achievements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.achievement-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: -15%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 75%;
    right: -10%;
    animation-delay: 3s;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.achievement-content h6 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.1rem;
}

.achievement-content p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.85rem;
}

.president-content {
    padding-left: 60px;
}

.message-content {
    position: relative;
    margin-bottom: 50px;
}

.quote-icon {
    position: absolute;
    top: -30px;
    left: -40px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.15;
}

.message-content blockquote {
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.message-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #fff;
    font-style: italic;
    font-weight: 400;
}
/* .president-content .sub-content{
    font-size: 16px;
    color: #fff;
    font-style: normal;
} */
.president-signature {
    margin-bottom: 50px;
}

.signature-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    border-top: 3px solid var(--gray-200);
    border-bottom: 3px solid var(--gray-200);
}

.signature-img {
    max-width: 200px;
    height: auto;
    filter: invert(1);
}

.president-info h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.president-info .title {
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.leadership-stats {
    margin-top: 40px;
}

.leadership-stats .stat-item {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.leadership-stats .stat-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.leadership-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    display: block;
    line-height: 1;
}

.leadership-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    font-weight: 600;
}

/* Testimonials Section */

.testimonials-section {
    background: var(--light-color);
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    /*height: 500px;*/
}

.testimonials-wrapper {
    height: 100%;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 40px;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 450px;
    max-width: 450px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.testimonial-content {
    margin-bottom: 35px;
}

.stars {
    margin-bottom: 25px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 5px;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 25px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.author-info h5 {
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.author-info span {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonial Navigation */
.testimonial-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-nav-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Footer */
.main-footer {
background-image: url('../images/home/footer.jpg');
    color: var(--white);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-top {
    padding: 100px 0 50px;
}

.footer-widget {
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo img {
   
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.footer-logo h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-widget h5 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.3rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-widget p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 30px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#c92023;
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}



.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 8px;
    min-width: 25px;
}

.contact-item h6 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-400);
    margin: 0;
    line-height: 1.6;
}

.newsletter-signup {
    margin-top: 40px;
}

.newsletter-signup h6 {
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.newsletter-form .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.newsletter-form .form-control {
    border: none;
    padding: 18px 25px;
    background: var(--gray-800);
    color: var(--white);
    border-radius: 0;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: var(--gray-700);
}

.newsletter-form .form-control::placeholder {
    color: var(--gray-500);
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 18px 25px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 2px solid var(--gray-800);
    padding: 30px 0;
        text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-400);
    font-size: 1rem;
}
.footer-bottom a{
       color: #fff !important;
       font-weight: 600;
}
.footer-bottom a:hover{
           color: #f83c4f !important;
       font-weight: 600;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-links-bottom a {
    color: var(--gray-400);
    transition: var(--transition);
    font-weight: 500;
    font-size: 1rem;
}

.footer-links-bottom a:hover {
    color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
    font-size: 1.2rem;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}
@media (min-width: 1199.98px) {
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
}
/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .president-content {
        padding-left: 40px;
    }
    
    .mega-dropdown .dropdown-menu {
        min-width: 800px;
    }
    
    .floating-achievements .achievement-card {
        right: -20%;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .president-content {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 30px;
        border-radius: var(--border-radius-lg);
     
        box-shadow: var(--shadow-xl);
    }
    .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 25px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
.navbar-nav .nav-link::after {
    content: none !important;
    position: static !important;
    bottom: 0;
    left: 30%;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}
.navbar-actions{
    display: none !important;
}
    
    .mega-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        min-width: 100%;
        box-shadow: none;
        border: 2px solid var(--gray-200);
        margin-top: 15px;
    }
    
    .footer-links-bottom {
        justify-content: center;
        margin-top: 25px;
    }
    
    .leadership-stats {
        margin-top: 50px;
    }
    
    .event-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .floating-achievements {
        display: none;
    }
    
    .signature-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 80px 0;
    }
    .top-bar{
        display: none !important;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .top-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-buttons {
        gap: 20px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 18px 35px;
        font-size: 15px;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .event-slide {
        padding: 40px 30px;
    }
    
    .event-content h3 {
        font-size: 2rem;
    }
    
    .leadership-stats .row {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 350px;
        max-width: 350px;
        padding: 40px;
    }
    
    .floating-card {
        position: static;
        margin-top: 30px;
        animation: none;
    }
    
    .brand-text {
        text-align: center;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .brand-location {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .brand-location {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .hero-image img {
        height: 450px;
    }
    
    .president-image img {
        height: 500px;        
       transform: translateY(-1px) !important;  
      }
    
    .project-content {
        padding: 30px;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .event-content h3 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        padding: 30px;
    }
    
    .message-content p {
        font-size: 1.1rem;
    }
    
    .event-slide {
        padding: 30px 20px;
    }
    
    .mega-dropdown .dropdown-menu {
        padding: 30px 0;
    }
}

/* Loading Animation */
.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.slider-btn:focus,
.event-nav-btn:focus,
.testimonial-nav-btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .top-bar,
    .main-nav,
    .slider-controls,
    .slider-indicators,
    .events-navigation,
    .testimonial-navigation,
    .back-to-top {
        display: none !important;
    }
    
    .section-padding {
        padding: 40px 0 !important;
    }
    
    .hero-slider {
        height: auto !important;
    }
    
    .slide {
        position: static !important;
        opacity: 1 !important;
    }
}
/* regions */
.regions {   

     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);   
         background: linear-gradient(135deg, #002979 51%, #002570 100%);
}
.regions .carousel-container {  
    max-width: 1140px;         
            width: 100%;
            position: relative;          
            backdrop-filter: blur(10px);
            border-radius: 20px;        
           
        }

        .regions .carousel-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .regions .carousel-header h1 {
            color: white;
            font-size: 2.5rem;
            font-weight: 300;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .regions .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            
            
        }

        .regions .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
            will-change: transform;
        }

        .regions .carousel-slide {
            min-width: 25%;
            position: relative;
            overflow: hidden;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                background-color: #fff;
        }

        .regions .carousel-slide img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .regions .carousel-slide:hover img {
            transform: scale(1.05);
        }

        .regions .carousel-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .regions .carousel-slide:hover::after {
            opacity: 1;
        }

        .regions .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .regions .carousel-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .regions .carousel-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .regions .carousel-nav.prev {
            left: -30px;
        }

        .regions .carousel-nav.next {
            right: -30px;
        }

        .regions .carousel-nav svg {
            width: 24px;
            height: 24px;
            fill: white;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .regions .carousel-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: translateY(-50%) scale(0.9);
        }

        .regions .carousel-nav:disabled:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(0.9);
        }

       .regions .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .regions .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .regions .indicator.active {
            background: white;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }

        .regions .indicator:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .regions .carousel-slide {
                min-width: 50%;
            }
            
            .regions .carousel-nav {
                width: 50px;
                height: 50px;
            }
            
            .regions  .carousel-nav.prev {
                left: -25px;
            }
            
            .regions .carousel-nav.next {
                right: -25px;
            }
        }

        @media (max-width: 480px) {
           .regions .carousel-slide {
                min-width: 100%;
            }
            
            .regions .carousel-slide img {
                height: 250px;
            }
        }
        /* gallery */
        .popup-gallery {
          background-color: #fff1f1f2;
        }

        .gallery-section {
            
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .gallery-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .gallery-subtitle {
            font-size: 1.2rem;
            color: #a0a0a0;
            font-weight: 300;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.4s ease;
            background: linear-gradient(45deg, #667eea, #764ba2);
                cursor: default;
        }

        .gallery-item img:not([src]), .gallery-item img[src=""] {
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .gallery-item img:hover {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes slideIn {
            from { 
                transform: scale(0.8) translateY(50px);
                opacity: 0;
            }
            to { 
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .modal-image {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
            display: block;
        }

        .modal-info {
            padding: 20px;
            color: white;
            text-align: center;
        }

        .modal-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .modal-info p {
            font-size: 1rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            font-size: 24px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            z-index: 1001;
            user-select: none;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        .modal-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 0.9rem;
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 16px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 768px) {
            .gallery-title {
                font-size: 2.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .modal-content {
                max-width: 95vw;
                max-height: 95vh;
            }
        }
  
   /* 7-7-25      */


.small-event-image {
    max-width: 100%;            /* make image responsive */
    height: auto;               /* maintain aspect ratio */
    max-height: 160px;          /* control vertical space */
    object-fit: cover;          /* crop smartly */
    border-radius: 6px;
}


.event-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 12px;
    background-color: #fff;
    min-height: auto;
}

.event-content h5 {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-content p {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 0;
}

.event-rm {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #c0392b;
    margin-bottom: 4px;
}

.detail-item i {
    margin-right: 6px;
}

  
/* menu stule */

/* Highlight active dropdown items */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    color: #fff !important;
    background-color: #d32f2f !important; /* Red background */
    font-weight: 600;
}

/* Highlight the parent nav link if active */
.nav-item.active > .nav-link,
.nav-link.active {
    color: #d32f2f !important; /* Red text */
    font-weight: 600;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8d7da;
    color: #d32f2f;
}
.page-title-area {
    padding: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/home/president-bg.jpg) !important;
    background-size: cover !important;
}
.title-item ul{
    margin-bottom: 0px !important;
    list-style: none;
    display: flex;
    color: #fff;
        padding: 0;
}
.title-item ul li{
padding-right:15px;
}
.title-item ul li a{
    color:#fff !important;
}
.title-item h1{
    color:#fff !important; 
}
.title-item ul li i{
        font-size: 13px;
        padding: 10px;
}
.subpage{
    padding: 50px 0px;
}
.subpage p{
        color: #202020;
    line-height: 27px;
    letter-spacing: 0.5px;
        text-align: left;
}
.subpage h3{
     color: #002775 !important;
}
.album{
    text-align: center;
    margin-top: 10px;
    color: #000 !important;
    font-size: 17px;
}
.single-gallery-title{
        color: #002775 !important;
    font-size: 20px;
    margin-bottom: 25px;
}
.mfp-arrow {
    opacity: 1 !important;
    display: block !important;
    color: white; /* or your preferred arrow color */
}

.mfp-arrow-left:before, .mfp-arrow-right:before {
    border-top-color: white !important;
    border-bottom-color: white !important;
}

.mfp-arrow-left:after, .mfp-arrow-right:after {
    border-top-color: white !important;
    border-bottom-color: white !important;
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}
