/* Modern White Theme - Clean & Simple Design */

/* Body & Layout */
body {
    background-color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
}

/* Enhanced Header - White Theme */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.main-header:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Modern Logo Design - Dark Text */
.main-header .logo a {
    color: #333333 !important;
    text-shadow: none;
    background: none;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    filter: none;
}

    .main-header .logo a em {
        color: #8DC6D8;
    }

/* Navigation Menu - White Theme */
.main-menu li a {
    color: #333333 !important;
    font-weight: 600;
}

.main-menu li:hover a,
.main-menu li.active a {
    color: #8DC6D8 !important;
    border-color: #8DC6D8;
}

.main-menu li .sub-menu {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.main-menu li .sub-menu li a {
    color: #666666 !important;
}

    .main-menu li .sub-menu li a:hover {
        color: #8DC6D8 !important;
        background-color: #f8f9fa;
    }

/* Banner Slider - Fully Responsive Light Theme */
.modern-banner-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    max-height: 1080px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Ensure slider takes full viewport width even on mobile */
@media (max-width: 768px) {
    .modern-banner-slider {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
        height: 70vh;
        min-height: 400px;
    }
}

/* Slider Container and Slides - Enhanced Responsiveness */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slider-slide.next {
    transform: translateX(100%);
}

.slider-slide.prev {
    transform: translateX(-100%);
}

/* Slide Images - Ultra Responsive and Browser-size Adaptive */
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Ensure image always covers the container */
    min-width: 100%;
    min-height: 100%;
}

/* Enhanced image scaling for different screen ratios */
@media (orientation: portrait) {
    .slide-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (orientation: landscape) {
    .slide-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Slide Videos - Ultra Responsive and Browser-size Adaptive */
.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    /* Ensure video always covers the container */
    min-width: 100%;
    min-height: 100%;
}

/* Remove video controls for clean appearance */
.slide-video::-webkit-media-controls {
    display: none !important;
}

.slide-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.slide-video::-webkit-media-controls-panel {
    display: none !important;
}

/* Advanced responsive behavior for ultra-wide screens */
@media (min-width: 2560px) {
    .modern-banner-slider {
        height: 90vh;
        max-height: 1440px;
    }
    
    .slide-image,
    .slide-video {
        object-fit: cover;
    }
}

/* Super wide screens (4K and beyond) */
@media (min-width: 3840px) {
    .modern-banner-slider {
        height: 80vh;
        max-height: 2160px;
    }
}

/* Slide Overlays */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.slide-overlay-1 {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.8) 50%, 
        rgba(245, 164, 37, 0.1) 100%);
}

.slide-overlay-2 {
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.9) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(0, 123, 255, 0.1) 100%);
}

.slide-overlay-3 {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.8) 50%, 
        rgba(40, 167, 69, 0.1) 100%);
}

/* Slide Content - Responsive Text Positioning */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: #333333;
    text-shadow: none;
    max-width: 90%;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.slide-content h6 {
    color: #666666;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-content h1 {
    color: #333333;
    font-weight: 800;
    text-shadow: none;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

    .slide-content h1 em {
        color: #8DC6D8;
        text-shadow: none;
        font-style: normal;
    }

.slide-content p {
    color: #666666;
    text-shadow: none;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern CTA Button - Responsive */
.modern-cta-button {
    background: linear-gradient(45deg, #8DC6D8, #8DC6D8);
    color: #ffffff;
    border: none;
    padding: clamp(12px, 2vw, 15px) clamp(30px, 4vw, 40px);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(245, 164, 37, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.modern-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 164, 37, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Floating Elements - Responsive */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(245, 164, 37, 0.05);
    border: 1px solid rgba(245, 164, 37, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: clamp(45px, 6vw, 60px);
    height: clamp(45px, 6vw, 60px);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: clamp(30px, 4vw, 40px);
    height: clamp(30px, 4vw, 40px);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Slider Navigation - Responsive */
.slider-nav {
    position: absolute;
    bottom: clamp(20px, 3vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: clamp(8px, 1.5vw, 10px);
}

.slider-dot {
    width: clamp(10px, 1.5vw, 12px);
    height: clamp(10px, 1.5vw, 12px);
    border-radius: 50%;
    background: rgba(51, 51, 51, 0.3);
    border: 2px solid rgba(51, 51, 51, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-dot.active {
        background: #8DC6D8;
        border-color: #8DC6D8;
        transform: scale(1.2);
    }

    .slider-dot:hover {
        background: #8DC6D8;
        border-color: #8DC6D8;
    }

/* Slider Arrows - Responsive */
.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.slider-arrow {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: clamp(14px, 2.5vw, 18px);
}

    .slider-arrow:hover {
        background: #ffffff;
        color: #8DC6D8;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-50%) scale(1.1);
    }

.slider-arrow-prev {
    left: clamp(20px, 3vw, 30px);
}

.slider-arrow-next {
    right: clamp(20px, 3vw, 30px);
}

/* Animation Classes for Content - Enhanced */
.animate-1 {
    animation: slideInFromLeft 1s ease-out;
}

.animate-2 {
    animation: slideInFromRight 1s ease-out;
}

.animate-3 {
    animation: slideInFromBottom 1s ease-out;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translate(-150%, -50%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translate(50%, -50%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translate(-50%, 20%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Browser-specific optimizations */
@supports (object-fit: cover) {
    .slide-image,
    .slide-video {
        object-fit: cover;
    }
}

/* Fallback for older browsers */
@supports not (object-fit: cover) {
    .slide-image,
    .slide-video {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

/* Latest News Section - White Theme */
.latest-news {
    background: #ffffff;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #333333;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: #666666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.latest-news h2 {
    color: #333333;
    font-weight: 700;
    margin-bottom: 50px;
}

/* News Cards */
.news-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #8DC6D8;
}

/* Featured News Cards */
.featured-card {
    border: 2px solid #8DC6D8;
    box-shadow: 0 8px 25px rgba(125, 198, 216, 0.15);
}

    .featured-card:hover {
        box-shadow: 0 15px 40px rgba125, 198, 216, 0.25);
    }

/* News Badge */
.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #8DC6D8, #8DC6D8);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* News Image */
.news-image {
    height: 180px;
    background: linear-gradient(45deg, #8DC6D8, #8DC6D8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
}

.featured-card .news-image {
    background: linear-gradient(45deg, #8DC6D8, #8DC6D8);
}

/* News Content */
.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.news-date {
    color: #666666;
    font-weight: 500;
    font-size: 0.9rem;
}

.news-category {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category Colors */
.news-category.promotion {
    background: #e8f5e8;
    color: #28a745;
}

.news-category.event {
    background: #e6f3ff;
    color: #007bff;
}

.news-category.course {
    background: #fff3e0;
    color: #f57c00;
}

.news-category.technology {
    background: #f3e5f5;
    color: #9c27b0;
}

.news-category.rewards {
    background: #fce4ec;
    color: #e91e63;
}

.news-category.success {
    background: #fff8e1;
    color: #ff9800;
}

.news-category.market {
    background: #e8f5e8;
    color: #4caf50;
}

.news-category.partnership {
    background: #e3f2fd;
    color: #2196f3;
}

.news-category.analysis {
    background: #f1f8e9;
    color: #689f38;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #8DC6D8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #333333;
    text-decoration: none;
    transform: translateX(3px);
}

/* Show More Button */
.modern-cta-button.outline {
    background: transparent;
    color: #8DC6D8;
    border: 2px solid #8DC6D8;
    padding: 15px 40px;
    margin-top: 30px;
}

    .modern-cta-button.outline:hover {
        background: #8DC6D8;
        color: #ffffff;
    }

.button-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.modern-cta-button.outline.expanded .button-icon {
    transform: rotate(180deg);
}

/* News Animation */
#additional-news {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

#additional-news.show {
    opacity: 1;
    transform: translateY(0);
    display: block !important;
}

/* Loading Animation for News Cards */
.news-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: newsCardShimmer 2s ease-in-out infinite;
}

@keyframes newsCardShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* News Section Enhancements - Additional Styles */

/* Staggered Animation for News Cards */
.news-card {
    opacity: 0;
    transform: translateY(30px);
    animation: none;
}

.news-card.animate {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured News Glow Effect */
.featured-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8DC6D8, #8DC6D8, #8DC6D8);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-card:hover::before {
    opacity: 0.7;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(245, 164, 37, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(245, 164, 37, 0.8), 0 0 40px rgba(245, 164, 37, 0.3);
    }
}

/* Enhanced Button Styles */
.modern-cta-button.outline {
    position: relative;
    overflow: hidden;
}

.modern-cta-button.outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 164, 37, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-cta-button.outline:hover::before {
    left: 100%;
}

/* News Category Hover Effects */
.news-category {
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-category:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Enhanced Read More Links */
.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #8DC6D8, #8DC6D8);
    transition: width 0.3s ease;
}

.read-more {
    position: relative;
}

.read-more:hover::after {
    width: 100%;
}

/* News Grid Masonry Effect */
@media (min-width: 992px) {
    .news-grid {
        column-count: 3;
        column-gap: 30px;
        column-fill: balance;
    }
    
    .news-card {
        break-inside: avoid;
        margin-bottom: 30px;
    }
}

/* Loading Skeleton for News Cards */
.news-skeleton {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.skeleton-image {
    height: 180px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 10px;
    margin-bottom: 20px;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* News Counter */
.news-counter {
    text-align: center;
    margin: 30px 0;
    color: #666666;
    font-weight: 500;
}

    .news-counter .count {
        color: #8DC6D8;
        font-weight: 700;
    }

/* Improved Accessibility */
.news-card:focus-within {
    outline: 2px solid #8DC6D8;
    outline-offset: 2px;
}

.read-more:focus {
    outline: 2px solid #8DC6D8;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Styles for News */
@media print {
    .news-card {
        break-inside: avoid;
        border: 1px solid #000;
        margin-bottom: 20px;
    }
    
    .news-image {
        display: none;
    }
    
    .news-badge {
        display: none;
    }
    
    .modern-cta-button {
        display: none;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    .news-card {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .news-title {
        color: #f7fafc;
    }
    
    .news-excerpt {
        color: #cbd5e0;
    }
}

/* Responsive Design - Enhanced for all screen sizes */
@media (max-width: 1200px) {
    .slide-content {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .slider-arrow-prev {
        left: 15px;
    }
    
    .slider-arrow-next {
        right: 15px;
    }
}

@media (max-width: 992px) {
    .latest-news {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .modern-banner-slider {
        height: 75vh;
        min-height: 450px;
    }
    
    .slide-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
    
    .slide-content h6 {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
    }
    
    .slide-content p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .floating-element:nth-child(1) {
        width: 60px;
        height: 60px;
    }
    
    .floating-element:nth-child(2) {
        width: 45px;
        height: 45px;
    }
    
    .floating-element:nth-child(3) {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .latest-news {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .news-image {
        height: 150px;
        font-size: 2rem;
    }
    
    .modern-cta-button.outline {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .modern-banner-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content {
        max-width: 95%;
        padding: 0 10px;
    }
    
    .slider-nav {
        bottom: 15px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .floating-elements {
        display: none; /* Hide on mobile for better performance */
    }
}

@media (max-width: 576px) {
    .news-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .news-category {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
    }
    
    .modern-banner-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide-content h1 {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    
    .slide-content h6 {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }
    
    .slide-content p {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    .modern-cta-button {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slider-arrow-prev {
        left: 10px;
    }
    
    .slider-arrow-next {
        right: 10px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .modern-banner-slider {
        height: 45vh;
        min-height: 300px;
    }
    
    .slide-content {
        padding: 0 5px;
    }
    
    .slider-nav {
        bottom: 10px;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

/* Footer - Light Theme */
footer {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

footer p {
    color: #666666;
}

    footer p a {
        color: #8DC6D8;
    }

/* Animations - Subtle */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    background: linear-gradient(45deg, #8DC6D8, #8DC6D8) !important;
    box-shadow: 0 5px 15px rgba(245, 164, 37, 0.3) !important;
}

.scroll-to-top-btn:hover {
    box-shadow: 0 8px 20px rgba(245, 164, 37, 0.4) !important;
}

/* Loading Screen - Light Theme */
.modern-loader {
    background: rgba(255, 255, 255, 0.95);
}

.loader-text {
    color: #333333;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8DC6D8;
}

/* Clean Utilities */
.bg-white {
    background-color: #ffffff !important;
}

.text-dark {
    color: #333333 !important;
}

.text-muted {
    color: #666666 !important;
}

.border-light {
    border-color: #e9ecef !important;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}