/* =================================
------------------------------------
  TIYEMDER - Home Page Styles 
------------------------------------
====================================*/

/* ===== HERO SECTION ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 32, 98, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content h2 {
    font-size: 3rem !important; /* 4.5rem ÷ 1.5 = 3rem */
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
}

.hero-content p {
    font-size: 1.07rem !important; /* 1.6rem ÷ 1.5 = 1.07rem */
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: white;
}

/* Custom Carousel Indicators */
.custom-indicators {
    bottom: 40px;
    z-index: 4;
}

.custom-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    margin: 0 8px;
    transition: all 0.3s ease;
}

.custom-indicators li.active {
    background: #fff;
    transform: scale(1.2);
}

/* Custom Navigation Icons */
.custom-nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 32, 98, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-nav-icon:hover {
    background: rgba(14, 32, 98, 1);
    transform: scale(1.1);
}

.custom-nav-icon i {
    color: white;
    font-size: 18px;
}

/* Enhanced Hero Section (Slider Yokken) */
.enhanced-hero {
    min-height: 65vh; /* Reduced from 85vh for more compact appearance */
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 2s; }
.particle:nth-child(3) { left: 60%; animation-delay: 4s; }
.particle:nth-child(4) { left: 80%; animation-delay: 1s; }
.particle:nth-child(5) { left: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0; }
    50% { transform: translateY(-20px); opacity: 1; }
}

.enhanced-overlay {
    background: linear-gradient(45deg, 
        rgba(0, 50, 100, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(50, 100, 150, 0.1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    z-index: 2;
}

.enhanced-content {
    position: relative;
    z-index: 3;
    padding: 30px 0; /* Reduced from 60px for a slimmer design */
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    color: white;
    font-size: 18px;
}

.hero-badge i {
    color: #FFD700;
    font-size: 21.33px !important; /* 32px ÷ 1.5 = 21.33px */
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px; /* Slightly reduced from 40px */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.highlight-text {
    color: #FFD700;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.verse-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px; /* Reduced from 20px */
    margin: 15px 0; /* Reduced from 20px */
    position: relative;
}

.verse-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verse-icon i {
    color: #000;
    font-size: 12px;
}

.hero-quote {
    font-size: 2opx;
    color: white;
    font-style: italic;
    margin-bottom: 10px; /* Reduced from 20px */
    line-height: 1.5; /* Reduced from 1.6 */
}

.verse-reference {
    color: #FFD700;
    font-size: 1.47rem !important; /* 2.2rem ÷ 1.5 = 1.47rem */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0;
}

.enhanced-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px; /* Larger padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 13px;
}

.enhanced-btn.primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

.enhanced-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.enhanced-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.enhanced-btn.primary:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    color: #000;
}

.enhanced-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 20px;
    color: #FFD700;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SECTION DIVIDERS (ENHANCED) ===== */
.section-divider {
    height: 120px;
    background: linear-gradient(45deg, transparent 40%, #fff 50%, #fff 60%, transparent 70%);
    position: relative;
    margin: -60px 0;
    z-index: 10;
    transform: skewY(-2deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.divider-blue {
    background: linear-gradient(45deg, transparent 40%, #f8f9fa 50%, #f8f9fa 60%, transparent 70%);
}

/* Transition effects between sections */
.section-transition {
    position: relative;
    overflow: hidden;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(14, 32, 98, 0.03), transparent);
    border-radius: 50%;
    z-index: 1;
}

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

.about-content {
    position: relative;
    padding: 40px 0;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.about-content h2 {
    font-size: 4rem !important; /* 6rem ÷ 1.5 = 4rem */
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.about-content p {
    font-size: 1.6rem !important; /* 2.4rem ÷ 1.5 = 1.6rem */
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.about-content p:first-of-type::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 4rem;
    color: #FFD700;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.about-img {
    position: relative;
    padding: 20px;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 32, 98, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    z-index: 1;
}

.about-img img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}

.about-img:hover img {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.25);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-services {
    background: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
}

.enhanced-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0E2062;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 28px; /* Doubled from 14px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.section-main-title {
    font-size: 4.27rem !important; /* 6.4rem ÷ 1.5 = 4.27rem */
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

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

.divider-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.divider-icon i {
    color: #0E2062;
    font-size: 16px;
}

.enhanced-service-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 32, 98, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.enhanced-service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.enhanced-service-box:hover::before {
    transform: scaleX(1);
}

.enhanced-service-box:hover {
    transform: translateY(-5px); /* -15px yerine daha az hareket */
    box-shadow: 0 15px 30px rgba(14, 32, 98, 0.15); /* Daha hafif gölge */
}

.enhanced-service-box:hover {
    transform: translateY(-5px); /* -15px yerine daha az hareket */
    box-shadow: 0 15px 30px rgba(14, 32, 98, 0.15); /* Daha hafif gölge */
}

.enhanced-service-box:hover {
    transform: translateY(-5px); /* -15px yerine daha az hareket */
    box-shadow: 0 15px 30px rgba(14, 32, 98, 0.15); /* Daha hafif gölge */
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #FFD700;
    transition: all 0.3s ease;
}

.icon-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(14, 32, 98, 0.05));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.enhanced-service-box:hover .service-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: scale(1.1);
}

.enhanced-service-box:hover .service-icon i {
    color: #0E2062;
    transform: scale(1.1);
}

.enhanced-service-box:hover .icon-background {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(135deg, rgba(14, 32, 98, 0.1), rgba(255, 215, 0, 0.1));
}

.service-content h4 {
    font-size: 2rem !important; /* 3rem ÷ 1.5 = 2rem */
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.service-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    text-align: center;
    font-size: 1.6rem !important; /* 2.4rem ÷ 1.5 = 1.6rem */
    margin-bottom: 0;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 32, 98, 0.9), rgba(255, 215, 0, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.enhanced-service-box:hover .service-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.enhanced-service-box:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== QUOTE SECTION (ENHANCED) ===== */
.enhanced-quote-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 32, 98, 0.9), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.enhanced-quote-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-badge i {
    font-size: 20px;
}

.quote-icon-wrapper {
    margin-bottom: 20px;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.quote-icon i {
    font-size: 36px;
    color: #0E2062;
}

.islamic-quote p {
    font-size: 24px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.quote-divider {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.divider-ornament {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    position: relative;
}

.divider-ornament::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #FFD700;
    border-radius: 50%;
}

.quote-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #FFD700;
    font-size: 2rem; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-source i {
    font-size: 20px;
}

.floating-ornaments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ornament {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: float-ornament 8s ease-in-out infinite;
}

.ornament-1 { top: 20%; left: 10%; animation-delay: 0s; }
.ornament-2 { top: 60%; right: 15%; animation-delay: 3s; }
.ornament-3 { bottom: 30%; left: 20%; animation-delay: 6s; }

@keyframes float-ornament {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.7; }
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 32, 98, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 700;
    color: #0E2062;
    position: relative;
}

.testimonial-author::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-image {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-image img {
    border-radius: 50%;
    width: 100%;
    height: auto;
}

/* ===== UPCOMING EVENTS SECTION ===== */
.upcoming-events-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-upcoming-events-section {
    background: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
}

.enhanced-upcoming-events-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.upcoming-title-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0E2062;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.upcoming-events-main-title {
    font-size: 5.6rem; /* Doubled from 2.8rem */
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.upcoming-events-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.upcoming-divider-line-left,
.upcoming-divider-line-right {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.upcoming-divider-center-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.upcoming-divider-center-icon i {
    color: #0E2062;
    font-size: 16px;
}

.enhanced-upcoming-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(14, 32, 98, 0.3);
}

.enhanced-upcoming-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 32, 98, 0.4);
    color: white;
    text-decoration: none;
}

.enhanced-upcoming-view-all-btn i {
    transition: transform 0.3s ease;
}

.enhanced-upcoming-view-all-btn:hover i {
    transform: translateX(5px);
}

.enhanced-upcoming-event-list {
    position: relative;
}

.enhanced-upcoming-event-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 32, 98, 0.05);
}

.enhanced-upcoming-event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 32, 98, 0.15);
    border-color: rgba(255, 215, 0, 0.2);
}

.upcoming-event-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.upcoming-event-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.upcoming-event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.enhanced-upcoming-event-item:hover .upcoming-event-image {
    transform: scale(1.1);
}

.upcoming-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(14, 32, 98, 0), rgba(14, 32, 98, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enhanced-upcoming-event-item:hover .upcoming-image-overlay {
    opacity: 1;
}

.upcoming-overlay-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.enhanced-upcoming-event-item:hover .upcoming-overlay-icon {
    transform: translateY(0);
    opacity: 1;
}

.upcoming-event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(14, 32, 98, 0.3);
    z-index: 2;
}

.upcoming-date-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.upcoming-date-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin: 5px 0;
    color: #FFD700;
}

.upcoming-date-year {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

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

.upcoming-event-header {
    margin-bottom: 25px;
}

.upcoming-event-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(14, 32, 98, 0.1));
    color: #0E2062;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 32, 98, 0.1);
}

.upcoming-event-category i {
    color: #FFD700;
}

.upcoming-event-title {
    font-size: 26px; 
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 20px;
    line-height: 1.3;
}

.upcoming-event-title a {
    color: #0E2062;
    text-decoration: none;
    transition: color 0.3s ease;
}

.upcoming-event-title a:hover {
    color: #FFD700;
    text-decoration: none;
}

.upcoming-event-meta-info {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.upcoming-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 12px; 
    font-weight: 500;
}

.upcoming-meta-item i {
    color: #FFD700;
    font-size: 32px; /* Doubled from 16px */
    width: 35px;
    text-align: center;
}

.upcoming-event-description p {
    color: #555;
    line-height: 1.8;
    font-size: 18px; 
    margin-bottom: 0;
}

.upcoming-event-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.enhanced-upcoming-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0E2062;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.enhanced-upcoming-read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.3s ease;
}

.enhanced-upcoming-read-more-btn:hover::before {
    left: 100%;
}

.enhanced-upcoming-read-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
    color: #0E2062;
    text-decoration: none;
}

.enhanced-upcoming-read-more-btn i {
    transition: transform 0.3s ease;
}

.enhanced-upcoming-read-more-btn:hover i {
    transform: translateX(5px);
}

.upcoming-event-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-size: 11px;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.upcoming-event-status i {
    font-size: 16px;
}

.upcoming-event-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    border-radius: 50% 0 0 0;
    pointer-events: none;
}

.upcoming-decoration-pattern {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffd700' fill-opacity='0.1'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.upcoming-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.upcoming-floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: float-upcoming 10s ease-in-out infinite;
}

.upcoming-element-1 { top: 10%; left: 5%; animation-delay: 0s; }
.upcoming-element-2 { top: 20%; right: 10%; animation-delay: 3s; }
.upcoming-element-3 { bottom: 30%; left: 15%; animation-delay: 6s; }

@keyframes float-upcoming {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.6; }
}

/* ===== PAST ACTIVITIES SECTION ===== */
.past-activities-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-past-activities-section {
    background: linear-gradient(135deg, #f8fafb 0%, #e7f2f9 100%);
}

.past-activities-title-container {
    text-align: center;
    margin-bottom: 60px; 
    position: relative;
}

.past-title-content-v2 {
    display: inline-block;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.past-subtitle-v2 {
   display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #4a69bd;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.past-subtitle-v2 i {
     color: #FFD700;
    font-size: 1.4rem;
    margin-right: 8px;
}

.past-main-title-v2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.past-title-decorator-v2 {
   width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; 
}

.past-description-v2 {
   color: #555;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
.popular-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.enhanced-past-activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 32, 98, 0.05);
}

.enhanced-past-activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 32, 98, 0.15);
    border-color: rgba(14, 32, 98, 0.2);
}

.past-activity-image-wrapper {
    position: relative;
    overflow: hidden;
}

.past-activity-image-container {
    position: relative;
    overflow: hidden;
}

.past-activity-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.enhanced-past-activity-card:hover .past-activity-main-image {
    transform: scale(1.1);
}

.past-image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(14, 32, 98, 0) 0%, 
        rgba(14, 32, 98, 0.8) 100%);
}

.past-activity-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(14, 32, 98, 0.4), rgba(14, 32, 98, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enhanced-past-activity-card:hover .past-activity-hover-overlay {
    opacity: 1;
}

.past-hover-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.enhanced-past-activity-card:hover .past-hover-content {
    transform: translateY(0);
    opacity: 1;
}

.past-hover-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.past-hover-icon i {
    font-size: 28px;
    color: white;
}

.past-hover-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enhanced-past-activity-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(14, 32, 98, 0.3);
    z-index: 4;
}

.past-date-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.past-date-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.past-date-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin: 5px 0;
    color: #FFD700;
}

.past-date-year {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.past-activity-category-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.past-activity-category-badge i {
    color: #FFD700;
}

.enhanced-past-activity-content {
    padding: 16px;
    position: relative;
    z-index: 2;
}

.past-activity-header {
    margin-bottom: 15px;
}

.past-activity-title {
    font-size: 2.5rem; /* Doubled from 1.25rem */
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 15px;
    line-height: 1.4;
}

.past-activity-title a {
    color: #0E2062;
    text-decoration: none;
    transition: color 0.3s ease;
}

.past-activity-title a:hover {
    color: #4a69bd;
    text-decoration: none;
}

.past-activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

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

.past-meta-item-activity i {
    color: #4a69bd;
    font-size: 14px;
}

.past-activity-description {
    margin-bottom: 20px;
}

.past-activity-description p {
    color: #666;
    font-size: 14px; 
    line-height: 1.6;
    margin: 0;
}

.past-activity-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(14, 32, 98, 0.1);
    padding-top: 15px;
}

.enhanced-past-activity-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0E2062;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enhanced-past-activity-btn:hover {
    color: #4a69bd;
    text-decoration: none;
}

.enhanced-past-activity-btn i {
    transition: transform 0.3s ease;
}

.enhanced-past-activity-btn:hover i {
    transform: translateX(5px);
}

.past-activity-participants {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-size: 10px;
    font-weight: 500;
}

.past-activity-participants i {
    color: #28a745;
    font-size: 14px;
}

.past-card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: 0.05;
    z-index: 1;
}

.past-decoration-dots {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230e2062' fill-opacity='1'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.past-activities-bottom-section {
    margin-top: 50px;
}

.enhanced-past-activities-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(14, 32, 98, 0.3);
}

.enhanced-past-activities-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(14, 32, 98, 0.4);
    color: white;
    text-decoration: none;
}

.enhanced-past-activities-view-all i {
    transition: transform 0.3s ease;
}

.enhanced-past-activities-view-all:hover i {
    transform: translateX(5px);
}

.past-floating-activity-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.past-floating-activity-element {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(14, 32, 98, 0.1);
    border-radius: 50%;
    animation: float-past-activity 10s ease-in-out infinite;
}

.past-activity-element-1 { top: 15%; left: 10%; animation-delay: 0s; }
.past-activity-element-2 { top: 25%; right: 15%; animation-delay: 2s; }
.past-activity-element-3 { bottom: 20%; left: 20%; animation-delay: 4s; }
.past-activity-element-4 { bottom: 30%; right: 25%; animation-delay: 6s; }

@keyframes float-past-activity {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #edf3f8 100%);
}

.enhanced-blog-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.title-badge-blog {
    display: inline-block;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(14, 32, 98, 0.3);
}

.blog-main-title {
    font-size: 5.6rem; /* Doubled from 2.8rem */
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

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

.divider-center-blog {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(14, 32, 98, 0.4);
}

.divider-center-blog i {
    color: #FFD700;
    font-size: 16px;
}

.blog-subtitle {
    color: #666;
    font-size: 2.2rem; 
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.enhanced-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 32, 98, 0.05);
}

.enhanced-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 32, 98, 0.15);
    border-color: rgba(14, 32, 98, 0.2);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image-container {
    position: relative;
    overflow: hidden;
}

.blog-main-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.enhanced-blog-card:hover .blog-main-image {
    transform: scale(1.1);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(14, 32, 98, 0) 0%, 
        rgba(14, 32, 98, 0.8) 100%);
}


.blog-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(14, 32, 98, 0.4), rgba(14, 32, 98, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enhanced-blog-card:hover .blog-hover-overlay {
    opacity: 1;
}

.blog-hover-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.enhanced-blog-card:hover .blog-hover-content {
    transform: translateY(0);
    opacity: 1;
}

.blog-hover-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.blog-hover-icon i {
    font-size: 28px;
    color: white;
}

.blog-hover-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enhanced-blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(14, 32, 98, 0.3);
    z-index: 2;
}

.blog-date-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-date-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.blog-date-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin: 5px 0;
    color: #FFD700;
}

.blog-date-year {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.blog-category-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.blog-category-badge i {
    color: #FFD700;
}

.enhanced-blog-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.blog-header {
    margin-bottom: 15px;
}

.blog-title {
    font-size: 2.8rem; 
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #0E2062;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #4a69bd;
    text-decoration: none;
}

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

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

.meta-item-blog i {
    color: #4a69bd;
    font-size: 14px;
}

.blog-excerpt {
    margin-bottom: 20px;
}

.blog-excerpt p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(14, 32, 98, 0.1);
    padding-top: 15px;
}

.enhanced-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0E2062;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enhanced-blog-btn:hover {
    color: #4a69bd;
    text-decoration: none;
}

.enhanced-blog-btn i {
    transition: transform 0.3s ease;
}

.enhanced-blog-btn:hover i {
    transform: translateX(5px);
}

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

.blog-reading-time i {
    color: #4a69bd;
    font-size: 14px;
}

.blog-card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: 0.05;
    z-index: 1;
}

.blog-decoration-pattern {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230e2062' fill-opacity='1'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.blog-bottom-section {
    margin-top: 50px;
}

.enhanced-blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(14, 32, 98, 0.3);
}

.enhanced-blog-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(14, 32, 98, 0.4);
    color: white;
    text-decoration: none;
}

.enhanced-blog-view-all i {
    transition: transform 0.3s ease;
}

.enhanced-blog-view-all:hover i {
    transform: translateX(5px);
}

.floating-blog-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-blog-element {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(14, 32, 98, 0.1);
    border-radius: 50%;
    animation: float-blog 10s ease-in-out infinite;
}

.blog-element-1 { top: 15%; left: 10%; animation-delay: 0s; }
.blog-element-2 { top: 25%; right: 15%; animation-delay: 2s; }
.blog-element-3 { bottom: 20%; left: 20%; animation-delay: 4s; }
.blog-element-4 { bottom: 30%; right: 25%; animation-delay: 6s; }

@keyframes float-blog {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}

/* Popüler İçerikler Bölümü */
.popular-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #edf3f8 100%);
    position: relative;
    overflow: hidden;
}

.popular-content-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.title-badge-popular {
    display: inline-block;
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(14, 32, 98, 0.3);
}

.popular-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.popular-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.popular-subtitle {
    color: #666;
    font-size: 1.5rem;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.views-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4a69bd;
    font-size: 14px;
    background: rgba(74, 105, 189, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

.content-popularity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(14, 32, 98, 0.1);
}

.content-heading h3 {
    font-size: 1.5rem;
    color: #0E2062;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-heading h3 i {
    color: #FFD700;
}

.popular-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    height: 100px;
    transition: all 0.3s ease;
}

.popular-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 32, 98, 0.1);
}

.popular-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.popular-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.popular-item:hover img {
    transform: scale(1.1);
}

.popular-item-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popular-item-title {
    font-weight: 600;
    color: #0E2062;
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.popular-item-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-item-date i {
    color: #4a69bd;
}

.upcoming-activities-header-v2 {
    padding: 25px 0;
    border-bottom: 1px solid rgba(14, 32, 98, 0.15);
    position: relative;
    margin-bottom: 40px !important;
}

.upcoming-title-content-v2 {
    position: relative;
}

.upcoming-subtitle-v2 {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    color: #4a69bd; 
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.upcoming-subtitle-v2 i {
    color: #FFD700; 
    font-size: 1.4rem;
}

.upcoming-main-title-v2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0E2062; 
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.upcoming-title-decorator-v2 {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500); 
    border-radius: 3px;
}

.past-view-all-btn-v2.btn-outline-primary {
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease-in-out;
    padding: 12px 28px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-color: #0E2062;
    color: #0E2062;
}

.past-view-all-btn-v2.btn-outline-primary:hover {
    background-color: #0E2062;
    color: white;
    border-color: #0E2062;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 12px rgba(14, 32, 98, 0.25);
}

.past-view-all-btn-v2.btn-outline-primary i {
    transition: transform 0.3s ease;
}

.past-view-all-btn-v2.btn-outline-primary:hover i {
    transform: translateX(5px);
}

/* Ortak başlık bloğu için */
.section-header-v2 {
    padding: 25px 0;
    border-bottom: 1px solid rgba(14, 32, 98, 0.15);
    margin-bottom: 40px !important;
}

.section-title-content-v2 {
    display: inline-block;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #4a69bd;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section-subtitle-v2 i {
    color: #FFD700;
    font-size: 1.4rem;
    margin-right: 8px;
}

.section-main-title-v2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.section-title-decorator-v2 {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.section-description-v2 {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.section-view-all-btn-v2.btn-outline-primary {
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease-in-out;
    padding: 12px 28px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-color: #0E2062;
    color: #0E2062;
}

.section-view-all-btn-v2.btn-outline-primary:hover {
    background-color: #0E2062;
    color: white;
    border-color: #0E2062;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 12px rgba(14, 32, 98, 0.25);
}

.section-view-all-btn-v2.btn-outline-primary i {
    transition: transform 0.3s ease;
}

.section-view-all-btn-v2.btn-outline-primary:hover i {
    transform: translateX(5px);
}

.section-header-v3 {
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.section-title-content-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 32px;
}

.section-title-line {
    flex: 1 1 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #0E2062 100%);
    border-radius: 2px;
    opacity: 0.25;
    min-width: 60px;
    max-width: 400px;
}

.section-title-center {
    text-align: center;
    min-width: 320px;
    max-width: 600px;
    padding: 0 24px;
    flex-shrink: 0;
}

.section-title-content-v3 .section-view-all-btn-v2 {
    margin-left: 32px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .section-title-content-v3 {
        flex-direction: column;
        gap: 18px;
    }
    .section-title-line {
        min-width: 40px;
        max-width: 100px;
    }
    .section-title-content-v3 .section-view-all-btn-v2 {
        margin-left: 0;
        margin-top: 16px;
    }
}

/* Modern Activity Card Grid */
.activity-card-modern {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(14,32,98,0.07);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
}

.activity-card-modern:hover {
    box-shadow: 0 12px 32px rgba(14,32,98,0.13);
    transform: translateY(-4px) scale(1.01);
}

.activity-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.activity-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.activity-card-modern:hover .activity-card-image {
    transform: scale(1.06);
}

.activity-card-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0E2062;
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.13);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ac-day {
    font-size: 20px;
    line-height: 1;
}

.ac-month {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.activity-card-content {
    flex: 1;
    padding: 22px 20px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.activity-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 8px;
    line-height: 1.3;
}

.activity-card-title a {
    color: #0E2062;
    text-decoration: none;
    transition: color 0.3s;
}

.activity-card-title a:hover {
    color: #4a69bd;
}

.activity-card-meta {
    font-size: 1rem;
    color: #4a69bd;
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.activity-card-meta i {
    margin-right: 4px;
}

.activity-card-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 14px;
    flex: 1;
}

.activity-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-top: auto;
}

.activity-card-btn {
    font-size: 1rem;
    padding: 7px 18px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0E2062;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.activity-card-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #0E2062;
    text-decoration: none;
}

.activity-card-popularity {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a69bd;
    font-size: 14px;
}

/* Modern Post Card Styles (Yazılar Bölümü) */
.modern-post-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(14,32,98,0.07);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
}

.modern-post-card:hover {
    box-shadow: 0 12px 32px rgba(14,32,98,0.13);
    transform: translateY(-4px) scale(1.01);
}

.modern-post-image-area {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.modern-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.modern-post-card:hover .modern-post-image {
    transform: scale(1.06);
}

.modern-post-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #4a69bd, #0E2062);
    color: #FFD700;
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(74,105,189,0.13);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mp-day {
    font-size: 20px;
    line-height: 1;
}

.mp-month {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modern-post-hover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(74,105,189,0.25), rgba(14,32,98,0.7));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 3;
}

.modern-post-card:hover .modern-post-hover {
    opacity: 1;
}

.modern-post-hover-content {
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s 0.1s;
}

.modern-post-card:hover .modern-post-hover-content {
    transform: translateY(0);
    opacity: 1;
}

.modern-post-hover-content i {
    font-size: 22px;
    margin-bottom: 4px;
}

.modern-post-content {
    flex: 1;
    padding: 22px 20px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modern-post-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0E2062;
    margin-bottom: 8px;
    line-height: 1.3;
}

.modern-post-title a {
    color: #0E2062;
    text-decoration: none;
    transition: color 0.3s;
}

.modern-post-title a:hover {
    color: #4a69bd;
}

.modern-post-meta {
    font-size: 1rem;
    color: #4a69bd;
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.modern-post-meta i {
    margin-right: 4px;
}

.modern-post-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 14px;
    flex: 1;
}

.modern-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-top: auto;
}

.modern-post-btn {
    font-size: 1rem;
    padding: 7px 18px;
    background: linear-gradient(135deg, #4a69bd, #0E2062);
    color: #FFD700;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.modern-post-btn:hover {
    background: linear-gradient(135deg, #0E2062, #4a69bd);
    color: #FFD700;
    text-decoration: none;
}

.modern-post-popularity {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a69bd;
    font-size: 14px;
}

/* Yaklaşan Faaliyetler ve Bugünün Öğretisi arası boşluk */
.wave-divider-blue {
    margin-bottom: 48px; /* Altına boşluk ekler */
}

.upcoming-activities-grid-section {
    padding-top: 32px;
    padding-bottom: 48px;
}

.upcoming-activities-grid-section .section-header-v3 {
    margin-bottom: 32px;
}

.section-main-title-v3 {
    margin-top: 18px;
    margin-bottom: 12px;
    padding-top: 8px; /* Başlık üstüne boşluk */
}

@media (max-width: 991px) {
    .wave-divider-blue {
        margin-bottom: 32px;
    }
    .upcoming-activities-grid-section {
        padding-top: 18px;
        padding-bottom: 32px;
    }
}
