/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('img/cursor.png'), auto;
}

/* Global overflow prevention */
section, div, header, footer, main, article, aside {
    max-width: 100vw;
}

/* Ensure dropdowns are not affected by overflow */
.nav-links .dropdown,
.nav-links .dropdown-menu {
    overflow: visible;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Force viewport width */
html {
    width: 100vw;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Custom cursor animations */
body {
    cursor: url('img/cursor.png'), auto;
}

/* Default cursor for hyperlinks and interactive elements */
a, button, .btn-primary, .btn-secondary, .dda-join-btn, .academy-join-btn, .view-gallery-btn, .view-more-btn, .join-dda-link, .slider-btn, .indicator, .dot, .testimonial-nav-btn, .testimonial-dot, .nav-btn, .filter-btn, .tab-btn, .btn-view-profile, .read-more, .play-button, .whatsapp-float a, .back-to-top-btn {
    cursor: pointer;
}

/* Cursor animation on hover */
*:hover {
    cursor: url('img/cursor.png'), auto;
    transition: all 0.3s ease;
}

/* Special cursor effects for interactive elements */
.slider-btn:hover,
.indicator:hover,
.dot:hover,
.testimonial-nav-btn:hover,
.testimonial-dot:hover,
.nav-btn:hover,
.filter-btn:hover,
.tab-btn:hover,
.btn-view-profile:hover,
.read-more:hover,
.play-button:hover,
.whatsapp-float a:hover,
.back-to-top-btn:hover {
    cursor: pointer;
    transform: scale(1.05);
}

body {
    font-family: 'Outfit', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding-top: 16px;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
}

.top-bar {
    padding: 8px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.top-bar-link:hover {
    color: #ffffff;
    background: rgba(255, 107, 53, 0.1);
}

/* Hide topbar in responsive view */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
}

/* Language Selector */
.language-selector {
    position: relative;
    cursor: pointer;
    z-index: 9998;
}

.language-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.language-flag:hover {
    background: rgba(255, 107, 53, 0.1);
}

.language-flag img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.language-flag span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.language-flag i {
    color: #ffffff;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-selector.active .language-flag i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 5px;
    min-width: 150px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: auto;
}

.language-selector.active .language-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.language-dropdown li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.language-dropdown li:hover {
    background: rgba(255, 107, 53, 0.2);
}

.language-dropdown li img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.language-dropdown li span {
    font-weight: 500;
}

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

.social-icons a {
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6b35;
}

.live-badge {
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.live-button {
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.live-button:hover {
    background: #ff3742;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.main-nav {
    padding: 15px 0;
    background: rgb(0 5 44 / 30%);
    max-width: 1440px;
    margin: 0 auto;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: 0.5px solid #464646;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    animation: slideDown 0.3s ease-out;
    background: #000c3c;
    border-radius: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
    }
    to {
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(0);
    }
    to {
        transform: translateX(-50%) translateY(-100%);
    }
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: visible;
}

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

.logo img {
    max-width: 100%;
    height: auto;
}

.logo span {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 2px 10px;
    font-size: 14px;
    letter-spacing: 2px;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff6b35;
    font-weight: 600;
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
    position: relative;
    z-index: 1000;
}

.nav-links .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(0 5 44 / 30%);
    border: 0.5px solid #464646;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-links .dropdown-menu li {
    list-style: none;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-links .dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding-left: 25px;
}

.join-dda-btn {
    display: flex;
    align-items: center;
}

.join-dda-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: #ff6b35;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
}

.join-dda-link:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: scale(1.05);
}

/* Hide mobile join section by default */
.mobile-join-section {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Topbar Section Styles */
.mobile-topbar-section {
    display: none;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.mobile-social-section {
    display: none;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social-icons a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-social-icons a:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.mobile-live-badge {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.mobile-live-button {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.mobile-live-button:hover {
    background: linear-gradient(45deg, #e55a2b, #e57a2b);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.mobile-top-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.mobile-top-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #ff6b35;
    border-color: #ff6b35;
    min-width: 120px;
    text-align: center;
    display: inline-block;
}

.mobile-top-link:hover {
    color: #ffffff;
    border-color: #e55a2b;
    background: #e55a2b;
    transform: translateY(-2px);
}



/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-label {
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    z-index: 20;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 50px;
}

.next-btn {
    right: 50px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Instagram Live Feed Section */
.instagram-feed-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 110px 0;
    color: #333333;
    position: relative;
    overflow: hidden;
}

.instagram-feed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.instagram-feed-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.instagram-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-header .section-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.instagram-reel {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/5;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    max-height: 280px;
}

.instagram-reel:nth-child(1) { animation-delay: 0.1s; }
.instagram-reel:nth-child(2) { animation-delay: 0.2s; }
.instagram-reel:nth-child(3) { animation-delay: 0.3s; }
.instagram-reel:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instagram-reel:hover {
    transform: translateY(-8px) scale(1.02);
    
}

.instagram-reel:hover .reel-overlay {
    opacity: 1;
    transform: translateY(0);
}

.instagram-reel:hover .reel-placeholder img {
    transform: scale(1.1);
}

.reel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.reel-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.reel-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    
}

.reel-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    
}

.reel-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.reel-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reel-loading {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px 15px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.instagram-reel:hover .reel-overlay {
    opacity: 1;
}

.reel-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reel-info i {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 5px;
}

.reel-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.reel-views {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.instagram-cta::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.instagram-follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e55a2b, #d94f24);
    transition: left 0.5s;
}

.instagram-follow-btn:hover::before {
    left: 100%;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.instagram-follow-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.instagram-follow-btn:hover i {
    transform: scale(1.1);
}

/* Responsive Instagram Feed */
@media (max-width: 1200px) {
    .instagram-feed-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .instagram-reel {
        aspect-ratio: 4/5;
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .instagram-feed-section {
        padding: 60px 0;
    }
    
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .instagram-header .section-title {
        font-size: 2rem;
    }
    
    .instagram-follow-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .instagram-reel {
        max-height: 220px;
    }
}

@media (max-width: 576px) {
    .instagram-feed-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .instagram-reel {
        aspect-ratio: 4/5;
        max-width: 300px;
        max-height: 200px;
        margin: 0 auto;
    }
    
    .instagram-header .section-title {
        font-size: 1.8rem;
    }
    
    .instagram-header .section-description {
        font-size: 1rem;
    }
    
    .instagram-follow-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .instagram-feed-section {
        padding: 50px 0;
    }
}

/* Additional hover effects for better interactivity */
.instagram-reel {
    cursor: pointer;
}

.instagram-reel:active {
    transform: scale(0.98);
}

/* Loading animation for placeholder */
.reel-loading {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.5;
    }
}

/* Loading spinner styles */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.loading-spinner .reel-loading {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Error message styles */
.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.error-message .reel-loading {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.back-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.6);
}

/* DDA Baseball Academy Section */
.dda-academy-section {
    background: #ffffff;
    padding: 10px 0 0;
    color: #333333;
}

.dda-academy-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    min-height: 400px;
    max-width: 1200px;
    margin: 0 auto;
}

.dda-features-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 250px;
}

.dda-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0px auto;
}

.dda-academy-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dda-logo {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.dda-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    text-align: center;
}

.dda-description {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
    max-width: 820px;
}

.dda-join-btn {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
    text-align: center;
    min-width: 200px;
}

.dda-join-btn:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
}

.dda-player-image {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.dda-player-image img {
    max-width: 100%;
    height: auto;
    
}

.dda-features-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 250px;
}

.feature-block {
    text-align: center;
    padding: 0px 0 20px 0;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* About Us Section */
.about-us-section {
    background: #000c3c;
    padding: 60px 0;
    color: #ffffff;
}

.about-us-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-text {
    text-align: center;
    margin-bottom: 60px;
}

.about-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 400;
    text-align: center;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.about-card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.about-card:hover .about-card-image {
    transform: scale(1.02);
}

.about-card-image i {
    font-size: 4rem;
    color: #ffffff;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.about-card:hover .about-card-image i {
    transform: scale(1.1) rotate(5deg);
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

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

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

.about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-card-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 400;
}

/* Training Camps Section */
.training-camps-section {
    background: #ffffff;
    padding: 40px 0;
    color: #333333;
}

.training-camps-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.training-camps-header {
    margin-bottom: 50px;
}

.training-camps-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.training-camps-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 30px;
}

.training-camps-description {
    max-width: 800px;
    margin: 0 auto 60px;
}

.training-camps-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666666;
    font-weight: 400;
}

.training-camps-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.training-feature {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.training-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.training-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.training-feature:hover::before {
    transform: scaleX(1);
}

.training-feature .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.training-feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.training-feature .feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.training-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.training-feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 400;
}

/* Training Camps Slider */
.training-camps-slider {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0;
}

.slider-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 10px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.slider-slide {
    min-width: calc(50% - 15px);
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.slide-image {
    height: 250px;
    overflow: hidden;
}

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

.slider-slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-content {
    padding: 25px;
}

.slide-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.slide-location {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 400;
    margin-bottom: 20px;
}

.view-gallery-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-gallery-btn:hover {
    background: #ffffff;
    color: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: -25px;
}

.next-slide {
    right: -25px;
}

.slider-nav i {
    font-size: 1.2rem;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.slider-nav:hover i {
    color: #ffffff;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.dot:hover {
    background: #ff6b35;
}

/* Academy View Section */
.academy-view-section {
    background: #000c3c;
    padding: 100px 0;
    color: #ffffff;
}

.academy-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.academy-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.academy-video:hover {
    transform: scale(1.02);
}

.academy-video video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.academy-text {
    padding-left: 20px;
}

.academy-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.academy-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.academy-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.academy-features {
    margin-bottom: 40px;
}

.academy-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.academy-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.academy-feature i {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.academy-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.academy-join-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.academy-join-btn:hover {
    background: #ffffff;
    color: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Stats Section */
.stats-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.stats-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stats-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stats-section:hover .stats-parallax img {
    transform: scale(1.15);
}

.stats-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 180px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stats-item:hover::before {
    left: 100%;
}

.stats-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stats-icon {
    margin-bottom: 20px;
}

.stats-icon i {
    font-size: 2.5rem;
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stats-item:hover .stats-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.5));
}

.stats-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stats-item:hover .stats-number {
    transform: scale(1.05);
    color: #ff6b35;
}

.stats-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.stats-item:hover .stats-label {
    color: #ffffff;
}

/* Responsive Stats Section */
@media (max-width: 1200px) {
    .stats-grid {
        gap: 18px;
        padding: 0 15px;
    }
    
    .stats-item {
        width: 180px;
        height: 160px;
        padding: 18px 12px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        gap: 15px;
        padding: 0 10px;
    }
    
    .stats-item {
        width: 160px;
        height: 150px;
        padding: 15px 10px;
    }
    
    .stats-number {
        font-size: 2.2rem;
    }
    
    .stats-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        height: auto;
        min-height: 400px;
        padding: 60px 0;
    }
    
    .stats-grid {
        gap: 15px;
        padding: 0 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .stats-item {
        width: 200px;
        height: 140px;
        padding: 12px 8px;
        margin-bottom: 15px;
    }
    
    .stats-icon {
        margin-bottom: 15px;
    }
    
    .stats-icon i {
        font-size: 2rem;
    }
    
    .stats-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .stats-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .stats-section,
    .about-stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        gap: 12px;
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .stats-item {
        width: 180px;
        height: 120px;
        padding: 10px 6px;
        margin-bottom: 12px;
    }
    
    .stats-icon {
        margin-bottom: 12px;
    }
    
    .stats-icon i {
        font-size: 1.8rem;
    }
    
    .stats-number {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .stats-label {
        font-size: 0.75rem;
    }
}

/* India Footprint Section */
.india-footprint-section {
    background: #000c3c;
    padding: 100px 0;
    color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.footprint-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.footprint-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footprint-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    position: relative;
    margin: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

/* City Pin Positioning */
.city-chandigarh {
    left: 30%;
    top: 20%;
}

.city-patiala {
    left: 30%;
    top: 23%;
}

.city-delhi {
    left: 33%;
    top: 33%;
}

.city-panipat {
    left: 32%;
    top: 29%;
}

.city-gwalior {
    left: 36%;
    top: 43%;
}

.city-shirdi {
    left: 25%;
    top: 54%;
}

.india-map-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.india-map-img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    max-width: 100%;
}



.city-pin {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    max-width: 100%;
    overflow: hidden;
}

.city-pin:hover {
    transform: scale(1.2);
    z-index: 20;
}

.pin-marker {
    width: 16px;
    height: 16px;
    background: #ff6b35;
    border: 3px solid #ffffff;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.pin-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.city-pin:hover .pin-marker {
    background: #ff4500;
    transform: scale(1.3);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.pin-label {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 107, 53, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.city-pin:hover .pin-label {
    opacity: 1;
    transform: translateY(0);
}

.cities-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.city-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.city-item:hover i {
    transform: scale(1.2);
}

.city-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
}

.city-item:hover span {
    color: #ff6b35;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    color: #333333;
    height: 100vh;
    min-height: 600px;
}

/* Home Testimonials Section - Unique styling for index page */
.home-testimonials-section {
    background: #ffffff;
    color: #333333;
    height: 100vh;
    min-height: 600px;
}

.home-testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-items: stretch;
}

.home-testimonials-image {
    position: relative;
    overflow: hidden;
}

.home-testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    transition: transform 0.3s ease;
}

.home-testimonials-image:hover img {
    transform: scale(1.05);
}

.home-testimonials-slider {
    background: #000c3c;
    color: #ffffff;
    position: relative;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-testimonial-slide {
    display: none;
    text-align: left;
    animation: fadeInUp 0.6s ease-out;
}

.home-testimonial-slide.active {
    display: block;
}

.home-quote-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.9;
    text-align: center;
}

.home-testimonial-text {
    margin-bottom: 40px;
}

.home-testimonial-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
}

.home-testimonial-author h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.home-testimonial-author span {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
}

.home-testimonial-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.home-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-testimonial-dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.home-testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-items: stretch;
}

.testimonials-image {
    position: relative;
    overflow: hidden;
}

.testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    transition: transform 0.3s ease;
}

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

.testimonials-slider {
    background: #000c3c;
    color: #ffffff;
    position: relative;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    text-align: left;
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-slide.active {
    display: block;
}

.quote-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.9;
    text-align: center;
}

.testimonial-text {
    margin-bottom: 40px;
}

.testimonial-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.testimonial-author span {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 120px);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.testimonial-nav-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: scale(1.1);
}

.testimonial-nav-btn i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.testimonial-nav-btn:hover i {
    color: #ffffff;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: #ff6b35;
}

/* News Section */
.news-section {
    background: #ffffff;
    padding: 80px 0;
    color: #333333;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333333;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 300px;
    gap: 30px;
    margin-bottom: 40px;
}

.news-view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e55a2b, #d94f24);
    transition: left 0.5s;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

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

.news-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

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

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

.news-content {
    padding: 20px;
}

.news-category {
    background: #ff6b35;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.news-date {
    color: #666666;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

.league-table {
    background: #1a1a2e;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.league-table h3 {
    margin-bottom: 20px;
    color: #ff6b35;
}

.league-table table {
    width: 100%;
    border-collapse: collapse;
}

.league-table th,
.league-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.league-table th {
    font-weight: 600;
    color: #ff6b35;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/baseball-court2.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.player-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.player-image {
    flex-shrink: 0;
}

.player-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6b35;
}

.player-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.ranking-points {
    margin-bottom: 20px;
}

.points-label {
    display: block;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 5px;
}

.points-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.stats-tabs {
    margin-bottom: 20px;
}

.tab-headers {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: 1px solid #333;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.stats-table th {
    color: #ff6b35;
    font-weight: 600;
}

.btn-view-profile {
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-view-profile:hover {
    background: #e55a2b;
}

.point-table {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.table-header h3 {
    color: #ff6b35;
    font-size: 1.5rem;
}

.view-all {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.point-table table {
    width: 100%;
    border-collapse: collapse;
}

.point-table th,
.point-table td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.point-table th {
    color: #ff6b35;
    font-weight: 600;
}

.point-table td img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Matches Section */
.matches-section {
    background: #ffffff;
    padding: 80px 0;
    color: #333333;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.match-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.match-card:hover {
    transform: translateY(-5px);
}

.team-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team-logos img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.vs {
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.2rem;
}

.match-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.match-date,
.match-time {
    color: #666666;
    margin-bottom: 5px;
}

/* Tournaments Section */
.tournaments-section {
    background: #ffffff;
    padding: 80px 0;
    color: #333333;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tournament-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tournament-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tournament-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tournament-card:hover .tournament-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tournament-card:hover .play-button {
    opacity: 1;
}

.upcoming-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b35;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.custom-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.tournament-logo {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.tournament-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.championship-info,
.championship-date,
.championship-location {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.live-badge {
    background: rgb(255 0 0);
    padding: 8px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.tournament-info {
    padding: 25px;
}

.tournament-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333333;
}

.tournament-description {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b35;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.watch-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.watch-btn i {
    font-size: 1.1rem;
}

/* Responsive Styles for Tournaments Section */
@media (max-width: 992px) {
    .tournaments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .tournaments-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .tournaments-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tournament-thumbnail {
        height: 180px;
    }
    
    .tournament-info {
        padding: 20px;
    }
    
    .tournament-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .tournaments-section {
        padding: 40px 0;
    }
    
    .tournament-thumbnail {
        height: 160px;
    }
    
    .custom-thumbnail {
        padding: 15px;
    }
    
    .tournament-logo {
        font-size: 2.5rem;
    }
    
    .tournament-details h4 {
        font-size: 1rem;
    }
    
    .championship-info,
    .championship-date,
    .championship-location {
        font-size: 0.8rem;
    }
}

/* Video Section */
.video-section {
    background: #1a1a2e;
    padding: 80px 0;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.video-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.video-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-watch {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-watch:hover {
    background: #e55a2b;
}

.video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: white;
}

.play-button:hover {
    background: #ff6b35;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Players Section */
.players-section {
    background: #ffffff;
    padding: 80px 0;
    color: #333333;
}

.players-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.players-carousel::-webkit-scrollbar {
    display: none;
}

.player-card {
    flex-shrink: 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.player-card:hover {
    transform: translateY(-10px);
}

.player-card .player-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #ff6b35;
}

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

.player-card .player-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff6b35;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #e55a2b;
}

/* Media Section */
.media-section {
    background: #ffffff;
    padding: 80px 0;
    color: #333333;
}

.media-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.filter-btn {
    color: #666666;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.media-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-icon i {
    color: white;
    font-size: 1.2rem;
}

.media-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.media-content {
    padding: 20px;
}

.media-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Sponsors Section */
.sponsors-section {
    background: #ffffff;
    padding: 60px 0;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.sponsor-logo img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsor-logo:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo img {
    width: 80px;
    height: 90px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer h3 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Inquiries Section */
.footer-inquiries {
    display: flex;
    flex-direction: column;
    
}


.inquiry-item h4 {
    color: #ff6b35;
    font-size: 0.9rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inquiry-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.inquiry-item a:hover {
    color: #ff6b35;
    text-decoration: underline;
    padding-left: 5px;
}

.footer-bottom-content p {
    font-size: 12px;
}

.footer-bottom-content a {
    font-size: 12px;
}

/* Footer Tax Exempt Section */
.footer-tax-exempt {
    background: #0f0f23;
    padding: 15px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-tax-exempt .container {
    text-align: center;
}

.footer-tax-exempt p {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* ===================================
   SPONSORSHIP PAGE STYLES
   ===================================

/* Sponsorship Hero Section */
.sponsorship-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sponsorship-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsorship-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.sponsorship-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Sponsorship Form Section */
.sponsorship-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

/* Sponsorship Form Elements - Clean CSS */
.sponsorship-form {
    width: 100%;
    text-align: left;
}

.sponsorship-form .form-group {
    margin-bottom: 35px;
    position: relative;
}

.sponsorship-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sponsorship-form input,
.sponsorship-form select,
.sponsorship-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    display: block;
    min-height: 60px;
}

.sponsorship-form select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.sponsorship-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.sponsorship-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sponsorship-form .submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 22px 50px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: 100%;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
    position: relative;
    overflow: hidden;
    min-height: 70px;
}

.sponsorship-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.sponsorship-form .submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Sponsorship Form Right Side */
.sponsorship-form-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sponsorship-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsorship-main-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}



/* Responsive Design for Sponsorship Form */
@media (max-width: 768px) {
    .sponsorship-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .sponsorship-form-left {
        max-width: 100%;
        padding: 40px 30px;
    }
    
    .sponsorship-form-right {
        order: -1;
    }
}

.sponsorship-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsorship-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}



.sponsorship-form-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #e55a2b 50%, #ff6b35 100%);
}

.sponsorship-form-left h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

.sponsorship-form {
    width: 100%;
    text-align: left;
}

.sponsorship-form .form-group {
    margin-bottom: 30px;
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
}

.sponsorship-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    letter-spacing: 0.3px;
    visibility: visible;
    opacity: 1;
}

.required {
    color: #ff6b35;
    font-weight: 700;
}

.sponsorship-form input,
.sponsorship-form select,
.sponsorship-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    display: block;
    visibility: visible;
    opacity: 1;
}

.sponsorship-form input:focus,
.sponsorship-form select:focus,
.sponsorship-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.sponsorship-form input:hover,
.sponsorship-form select:hover,
.sponsorship-form textarea:hover {
    border-color: #ff6b35;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.sponsorship-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Sponsorship Image Design */
.sponsorship-form-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    min-height: 500px;
}

.sponsorship-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.sponsorship-main-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}



/* Sponsorship Benefits Section */
.sponsorship-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #cdcdcd 0%, #444444 100%);
    color: white;
}

.sponsorship-benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sponsorship-benefits .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sponsorship-benefits .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}



/* Tax Exemption Notice */
.tax-exemption-notice {
    padding: 60px 0;
    background: linear-gradient(135deg, #000c3c 0%, #1a1a2e 100%);
    color: white;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.notice-icon {
    font-size: 3rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.notice-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.notice-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Sponsorship CTA Section */
.sponsorship-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #ff6b35;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sponsorship-hero-content .sponsorship-intro h2 {
        font-size: 2rem;
    }
    
    .sponsorship-form-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .sponsorship-form-wrapper {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .sponsorship-form-left {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .sponsorship-form-left h2 {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sponsorship-form input,
    .sponsorship-form select,
    .sponsorship-form textarea {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 18px 40px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.post-info .post-date {
    color: #666666;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.post-info h4 {
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b35;
}

.footer-bottom {
    background: #0f0f23;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

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

/* About Us Page Styles */
.page-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 0px;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.banner-content {
    text-align: center;
    color: #ffffff;
    margin-top: 200px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.separator {
    margin: 0 15px;
    color: #ff6b35;
}

/* About Main Section */
.about-main-section {
    background: #ffffff;
    padding: 100px 0;
    color: #333333;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-content .section-header {
    margin-bottom: 30px;
}

.section-label {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1.2;
    margin-bottom: 60px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b7b7b7;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000c3c;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666666;
    line-height: 1.6;
}

/* About Images Grid */
.about-images-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 150px;
    gap: 15px;
    height: 660px;
}

.image-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.image-item.large {
    grid-row: span 2;
}

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

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

.coaching-experience-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #000c3c;
    color: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    width: 260px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #000c3c;
}

.experience-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

/* About Stats Section */
.about-stats-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-stats-section .stats-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.about-stats-section .stats-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-stats-section:hover .stats-parallax img {
    transform: scale(1.05);
}

.about-stats-section .stats-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* About Testimonials Section */
.about-testimonials-section {
    background: #f8f9fa;
    padding: 100px 0;
    color: #333333;
    transition: all 0.3s ease;
}

.about-testimonials-section:hover {
    background: #f0f2f5;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.testimonial-card {
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.about-testimonials-section .testimonial-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
    font-style: italic;
}
.testimonial-text p {
    font-size: 24px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
    font-style: italic;
}

.about-testimonials-section .testimonial-author h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000c3c;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 18px;
    color: #ff6b35;
    font-weight: 500;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
}



.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background:#ff6b35;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 18px;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Smooth testimonial card transitions */
.testimonial-card {
    transition: opacity 0.5s ease, transform 0.3s ease;
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* About Contact Section */
.about-contact-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.contact-content {
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.submit-btn {
    background:#ff6b35;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 40px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Partners Section */
.partners-section {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #eeeeee;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000c3c;
    margin-bottom: 20px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 120px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 200px 200px 200px;
        height: auto;
    }
    
    .image-item.large {
        grid-row: span 1;
    }
    
    .coaching-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0;
        width: 100%;
        height: 80%;
    }
    
    .experience-number {
        font-size: 4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .about-headline {
        font-size: 2.5rem;
    }
    
    .about-description {
        font-size: 1rem;
        max-width: 800px;
    }
    
    .academy-view-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .academy-title {
        font-size: 2.5rem;
    }
    
    .academy-subtitle {
        font-size: 1.3rem;
    }
    
    .academy-video video {
        height: 350px;
    }
    
    .stats-grid {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .stats-item {
        width: calc(50% - 12.5px);
        min-width: 200px;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .stats-icon i {
        font-size: 2.5rem;
    }
    
    .about-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .training-camps-title {
        font-size: 2.5rem;
    }
    
    .training-camps-features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .slider-slide {
        min-width: calc(50% - 15px);
    }
    
    .slider-title {
        font-size: 1.8rem;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .testimonials-section {
        height: auto;
        min-height: auto;
    }
    
    .testimonials-image {
        height: 400px;
    }
    
    .testimonials-slider {
        padding: 60px 40px;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
    }
    
    /* Home Testimonials Responsive */
    .home-testimonials-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .home-testimonials-section {
        height: auto;
        min-height: auto;
    }
    
    .home-testimonials-image {
        height: 400px;
    }
    
    .home-testimonials-slider {
        padding: 60px 40px;
    }
    
    .home-testimonial-text p {
        font-size: 1.1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .view-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footprint-title {
        font-size: 2.5rem;
    }
    
    .footprint-description {
        font-size: 1.1rem;
    }
    
    .india-map {
        max-width: 600px;
    }
    
    .cities-list {
        gap: 20px;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
    }
    .banner-content {
        text-align: center;
        color: #ffffff;
        margin-top: 120px;
    }
    .about-text-content .section-header {
        margin-bottom: 30px;
        text-align: center;
    }
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 60px;
    }
    .feature-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin: 0 auto;
    }
    .feature-block {
        text-align: center;
        padding: 20px 0 20px 0;
    }
    .page-banner {
        height: 300px;
    }
    .whatsapp-float {
        position: fixed;
        bottom: 80px;
        right: 10px;
        z-index: 1000;
        animation: float 3s ease-in-out infinite;
    }
    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 16px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .banner-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-main-section {
        padding: 60px 0;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .about-stats-section {
        height: 400px;
    }
    
    .about-testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header .section-title {
        font-size: 2rem;
    }
    
    /* Home Testimonials Mobile Responsive */
    .home-testimonials-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    
    .home-testimonials-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .home-testimonials-image {
        height: 300px;
    }
    
    .home-testimonials-slider {
        padding: 40px 20px;
    }
    
    .home-testimonial-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .home-quote-icon {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    
    .home-testimonial-author h4 {
        font-size: 1.3rem;
    }
    
    .home-testimonial-author span {
        font-size: 1rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-item {
        height: 100px;
    }
    
    .dda-player-image {
        display: none;
    }
    
    .map-container {
        width: 100%;
        overflow: hidden;
    }
    
    .india-map-image {
        width: 100%;
        overflow: hidden;
    }
    
    .india-map-img {
        max-width: 100%;
        width: 100%;
    }
    
    .about-headline {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-description {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .academy-view-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .academy-title {
        font-size: 2rem;
    }
    
    .academy-subtitle {
        font-size: 1.2rem;
    }
    
    .academy-video video {
        height: 300px;
    }
    
    .academy-text {
        padding-left: 0;
    }
    
    .stats-section,
    .about-stats-section {
        height: auto;
        min-height: 400px;
        padding: 60px 0;
        overflow: visible;
    }
    
    .stats-grid {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }
    
    .stats-item {
        padding: 20px 15px;
        width: calc(50% - 10px);
        min-width: 180px;
        height: 160px;
        flex: 1;
        min-width: 200px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-icon i {
        font-size: 2rem;
    }
    
    .stats-label {
        font-size: 1rem;
    }
    
    .about-card-image {
        height: 180px;
    }
    
    .about-card-image i {
        font-size: 3rem;
    }
    
    .training-camps-title {
        font-size: 2rem;
    }
    
    .training-camps-subtitle {
        font-size: 1.3rem;
    }
    
    .training-camps-description p {
        font-size: 1rem;
    }
    
    .training-camps-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .training-feature {
        padding: 30px 20px;
    }
    
    .slider-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .slider-track {
        gap: 20px;
    }
    
    .slider-slide {
        min-width: 100%;
        margin: 0;
    }
    
    .slider-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h4 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .slide-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .view-gallery-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .footprint-title {
        font-size: 2rem;
    }
    
    .footprint-description {
        font-size: 1rem;
    }
    
    .india-map {
        max-width: 400px;
    }
    
    .cities-list {
        gap: 15px;
    }
    
    .city-item {
        padding: 12px 20px;
    }
    
    .slide-image {
        height: 200px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev-slide {
        left: -20px;
    }
    
    .next-slide {
        right: -20px;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .testimonials-section {
        height: auto;
        min-height: auto;
    }
    
    .testimonials-image {
        height: 350px;
    }
    
    .testimonials-slider {
        padding: 50px 30px;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 90vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 9999;
        transition: all 0.3s ease;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .mobile-topbar-section {
        display: block;
        width: 100%;
        max-width: 400px;
        padding: 25px 20px;
    }
    
    .mobile-social-section {
        display: block;
        width: 100%;
        max-width: 400px;
    }
    
    .mobile-social-icons {
        gap: 15px;
    }
    
    .mobile-social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .mobile-top-links {
        gap: 15px;
    }
    
    .mobile-top-link {
        font-size: 0.85rem;
        padding: 6px 12px;
        min-width: 100px;
    }
    
    /* Show language selector in mobile menu */
    .language-selector {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    
    .language-flag {
        justify-content: center;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin: 10px 0;
    }
    
    .language-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 10px;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .language-dropdown li {
        padding: 10px 20px;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .language-dropdown li:last-child {
        border-bottom: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        color: #ffffff;
        text-decoration: none;
        padding: 15px 30px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    /* Enhanced mobile dropdown arrow */
    .nav-links .dropdown > a i {
        margin-left: 10px;
        padding: 10px;
        border-radius: 50%;
        background: rgba(255, 107, 53, 0.2);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .nav-links .dropdown > a i:hover {
        background: rgba(255, 107, 53, 0.4);
        transform: scale(1.1);
    }
    
    .mobile-topbar-section {
        padding: 20px 15px;
    }
    
    .mobile-social-section {
        padding: 20px 15px;
    }
    
    .mobile-social-icons {
        gap: 12px;
    }
    
    .mobile-social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .mobile-top-links {
        gap: 4px;
    }
    
    .mobile-top-link {
        font-size: 0.8rem;
        padding: 5px 10px;
        min-width: 90px;
    }
    

    
    .nav-links a:hover {
        color: #ff6b35;
        background: rgba(255, 107, 53, 0.1);
        border-radius: 8px;
    }
    
    .nav-links .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        display: none;
        margin-top: 10px;
    }
    
    .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-links .dropdown-menu li {
        margin: 5px 0;
    }
    
    .nav-links .dropdown-menu a {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    .join-dda-btn {
        display: none;
    }
    
    .nav-links.active .mobile-join-section {
        display: block;
        width: 100%;
        max-width: 400px;
        padding: 20px;
        text-align: center;
    }
    
    .nav-links.active .mobile-join-section .join-dda-link {
        display: inline-block;
        background: #ff6b35;
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-links.active .mobile-join-section .join-dda-link:hover {
        background: #e55a2b;
        transform: scale(1.05);
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 10000;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 30px;
    }
    
    .next-btn {
        right: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .view-more-btn {
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
    }
    
    .player-stats {
        flex-direction: column;
        text-align: center;
    }
    
    .media-filters {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footprint-title {
        font-size: 1.8rem;
    }
    
    .footprint-description {
        font-size: 0.9rem;
    }
    
    .india-map {
        max-width: 300px;
    }
    
    .cities-list {
        gap: 10px;
    }
    
    .city-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    .nav-links {
        /* display: flex; */
        list-style: none;
        gap: 10px;
    }
    
    .mobile-live-button {
        background: linear-gradient(45deg, #ff0015, #ff0000);
        color: #ffffff;
        padding: 8px 26px !important;
        border-radius: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 15px;
        animation: pulse 2s infinite;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
    }
    .nav-links {
        padding:0 20px;
    }
    
    .nav-links a {
        font-size: 9px;
        padding: 8px 8px;
        /* background: none; */
        text-transform: uppercase;
    }
    .about-stats-section .stats-parallax img {
        width: 100%;
        height: 980px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .mobile-top-link {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        padding: 8px 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        transition: all 0.3s ease;
        background: #ff6b35;
        border-color: #ff6b35;
        min-width: 100px;
        text-align: center;
        display: inline-block;
    }
    .mobile-top-link:hover {
        background: #e55a2b;
        transform: scale(1.05);
    }
    .nav-links .dropdown-menu a {
        font-size: 1.1rem;
        padding: 8px 15px;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
    }
    
    .dda-player-image {
        display: none;
    }
    
    .map-container {
        width: 100%;
        overflow: hidden;
        margin: 40px 0;
    }
    
    .india-map-image {
        width: 100%;
        overflow: hidden;
    }
    
    .india-map-img {
        max-width: 100%;
        width: 100%;
    }
    
    .about-headline {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
        line-height: 1.6;
        text-align: justify;
    }
    
    .about-card {
        padding: 25px 15px;
    }
    
    .about-card-image {
        height: 150px;
    }
    
    .about-card-image i {
        font-size: 2.5rem;
    }
    
    .about-card-title {
        font-size: 1.3rem;
    }
    
    .academy-view-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .academy-title {
        font-size: 1.8rem;
    }
    
    .academy-subtitle {
        font-size: 1.1rem;
    }
    
    .academy-video video {
        height: 250px;
    }
    
    .academy-feature {
        padding: 12px 15px;
    }
    
    .academy-feature span {
        font-size: 0.9rem;
    }
    
    .academy-join-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .stats-section {
        height: auto;
        min-height: 350px;
        padding: 30px 0;
        overflow: visible;
    }
    
    .stats-grid {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }
    .testimonials-image img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .stats-item {
        padding: 15px 10px;
        width: calc(50% - 7.5px);
        min-width: 100%;
        height: 150px;
        flex: 1;
        min-width: 100%;
    }
    
    .stats-number {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .stats-icon i {
        font-size: 1.8rem;
    }
    
    .stats-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    .footer-description {
        color: #cccccc;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify;
    }
    .academy-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #e0e0e0;
        margin-bottom: 40px;
        text-align: justify;
    }
    .stats-label {
        font-size: 0.9rem;
    }
    
    .about-card-description {
        font-size: 0.9rem;
        text-align: justify;
    }
    
    .training-camps-title {
        font-size: 1.8rem;
    }
    
    .training-camps-subtitle {
        font-size: 1.1rem;
    }
    
    .training-camps-description p {
        font-size: 0.95rem;
        text-align: justify;
    }
    
    .training-camps-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .training-feature {
        padding: 25px 15px;
    }
    
    .training-feature .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .training-feature .feature-icon i {
        font-size: 1.5rem;
    }
    
    .training-feature h4 {
        font-size: 1.1rem;
    }
    
    .training-feature p {
        font-size: 0.9rem;
    }
    
    .slider-container {
        padding: 0 10px;
    }
    
    .slider-track {
        gap: 10px;
    }
    
    .slider-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .slide-image {
        height: 160px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .slide-location {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .slide-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .view-gallery-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .testimonials-section {
        height: auto;
        min-height: auto;
    }
    
    .testimonials-image {
        height: 300px;
    }
    
    .testimonials-slider {
        padding: 40px 20px;
    }
    
    .testimonial-text p {
        font-size: 0.95rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .testimonial-author h4 {
        font-size: 1.1rem;
    }
    
    /* Home Testimonials 480px Responsive */
    .home-testimonials-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .home-testimonials-section {
        height: auto;
        min-height: auto;
    }
    
    .home-testimonials-image {
        height: 250px;
    }
    
    .home-testimonials-slider {
        padding: 30px 15px;
    }
    
    .home-testimonial-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .home-quote-icon {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .home-testimonial-author h4 {
        font-size: 1rem;
    }
    
    .home-testimonial-author span {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card,
.match-card,
.media-item,
.player-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Management Team Styles */
.management-team-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 100px 0;
    color: #333333;
    position: relative;
    overflow: hidden;
}

.team-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 12, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float 3s ease-in-out infinite;
}

.header-icon i {
    font-size: 2rem;
    color: #ffffff;
}

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

.team-header .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.team-header .section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.team-header .section-label:hover::before {
    left: 100%;
}

.team-header .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #000c3c, #1a1a2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
}

.team-header .section-description {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.header-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.header-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: #ff6b35;
    border-radius: 4px;
}

/* Featured Leader Section */
.featured-leader {
    margin-bottom: 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.featured-leader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.featured-leader:hover {
    /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12); */
    transform: translateY(-8px);
    border: 1px solid #ff6b35;
}

.leader-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-image-container {
    position: relative;
}

.leader-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 4px solid transparent;
    background-clip: border-box;
}

.leader-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.leader-image img {
    width: 100%;
    height: 660px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.8), rgba(255, 140, 66, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.leader-image:hover .image-overlay {
    opacity: 1;
}

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

.leader-image:hover .overlay-content {
    transform: translateY(0);
}

.leader-profile-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.leader-profile-link:hover {
    transform: scale(1.02);
}

.member-profile-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.member-profile-link:hover {
    transform: scale(1.02);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

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

.leader-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.leader-badge i {
    font-size: 1rem;
}

.leader-content {
    padding-left: 20px;
}

.leader-title-section {
    margin-bottom: 30px;
}

.leader-name {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #000c3c, #1a1a2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.1;
}

.leader-position-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.leader-position-wrapper i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.leader-position {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.leader-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Leader Contact Styles */
.leader-contact {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.leader-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

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

.leader-contact .contact-item i {
    color: #ff6b35;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    transition: color 0.3s ease;
}

.leader-contact .contact-item a {
    color: #666666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.leader-contact .contact-item a:hover {
    color: #ff6b35;
    transform: translateX(3px);
}

.leader-contact .linkedin-link {
    color: #0077b5 !important;
    font-weight: 600;
}

.leader-contact .linkedin-link:hover {
    color: #005885 !important;
}

.leader-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.stat-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.stat-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.stat-item span {
    display: block;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-item strong {
    font-size: 1.1rem;
    color: #000c3c;
    font-weight: 700;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.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.2), transparent);
    transition: left 0.5s;
}

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

.read-more-btn:hover {
    background: #ffffff;
    color: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

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

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

/* Team Grid Header */
.team-grid-header {
    text-align: center;
    margin-bottom: 60px;
}

.grid-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000c3c, #1a1a2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.grid-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 500;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #ffffff;
    border-radius: 25px;
    padding: 0;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.member-card-inner {
    padding: 30px 25px;
    position: relative;
    height: 100%;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 200% 100%;
    animation: shimmer-card 3s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

@keyframes shimmer-card {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.team-member:hover {
    transform: translateY(-12px);
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15); */
    border-color: #ff6b35;
}

.member-image-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.member-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    background-clip: border-box;
}

.team-member:hover .member-image {
    border-color: #ff6b35;
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.member-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.85), rgba(255, 140, 66, 0.85));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.overlay-icon {
    color: #ffffff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.member-image:hover .overlay-icon {
    transform: scale(1);
}

.member-status {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffffff;
    border: 2px solid #28a745;
    border-radius: 20px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #28a745;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info {
    padding-top: 10px;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000c3c;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.team-member:hover .member-name {
    color: #ff6b35;
    transform: translateY(-2px);
}

.member-position-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 8px 15px;
    margin: 0 auto 20px;
    max-width: fit-content;
    transition: all 0.3s ease;
}

.team-member:hover .member-position-badge {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.member-position-badge i {
    color: #ff6b35;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.team-member:hover .member-position-badge i {
    color: #ffffff;
}

.member-position {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    transition: color 0.3s ease;
}

.team-member:hover .member-position {
    color: #ffffff;
}

.member-expertise {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.expertise-tag {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.social-link:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Social platform specific colors */
.social-link.facebook:hover::before {
    background: #3b5998;
}

.social-link.twitter:hover::before {
    background: #1da1f2;
}

.social-link.instagram:hover::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin:hover::before {
    background: #0077b5;
}

/* Our Coaches Section Styles */
.our-coaches-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 100px 0;
    color: #333333;
    position: relative;
    overflow: hidden;
}

.coaches-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.coaches-header .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.coaches-header .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #000c3c, #1a1a2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 25px;
}

.coaches-header .section-description {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.coach-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 0;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 200% 100%;
    animation: shimmer-card 3s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coach-card:hover::before {
    opacity: 1;
}

.coach-card:hover {
    transform: translateY(-12px);
    border-color: #ff6b35;
    
}

.coach-image {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    margin: 25px auto 20px;
    position: relative;
    transition: all 0.4s ease;
}

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

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

.coach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.85), rgba(255, 140, 66, 0.85));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.coach-image:hover .coach-overlay {
    opacity: 1;
}

.coach-overlay .social-links {
    display: flex;
    gap: 15px;
}

.coach-overlay .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.coach-overlay .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.coach-info {
    padding: 0 30px 30px;
}

.coach-name {
    font-size: 22px;
    font-weight: 800;
    color: #000c3c;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.coach-card:hover .coach-name {
    color: #ff6b35;
}

.coach-position {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.coach-social-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.coach-social-footer .social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.coach-social-footer .social-link:hover {
    background: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

/* Coach Contact Styles */
.coach-contact {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.coach-card:hover .coach-contact {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.coach-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.coach-contact .contact-item i {
    color: #ff6b35;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.coach-card:hover .coach-contact .contact-item i {
    color: #ff6b35;
}

.coach-contact .contact-item a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    
}

.coach-contact .contact-item a:hover {
    color: #ff6b35;
    transform: translateX(3px);
}

/* Responsive Design for Coaches Section */
@media (max-width: 1024px) {
    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .coaches-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .our-coaches-section {
        padding: 60px 0;
    }
    
    .coaches-header {
        margin-bottom: 50px;
    }
    
    .coaches-header .section-title {
        font-size: 2rem;
    }
    
    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .coach-card {
        padding: 0;
    }
    
    .coach-image {
        width: 200px;
        height: 200px;
        margin: 20px auto 15px;
    }
    
    .coach-name {
        font-size: 1.8rem;
    }
    
    .coach-position {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .coach-contact {
        padding: 12px;
        margin-top: 15px;
    }
    
    .coach-contact .contact-item {
        margin-bottom: 10px;
        padding: 6px 0;
    }
    
    .coach-contact .contact-item a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .coaches-header .section-title {
        font-size: 1.8rem;
    }
    
    .coaches-header .section-description {
        font-size: 1rem;
    }
    
    .coach-image {
        width: 180px;
        height: 180px;
        margin: 15px auto 10px;
    }
    
    .coach-name {
        font-size: 1.6rem;
    }
    
    .coach-position {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .coach-contact {
        padding: 10px;
        margin-top: 12px;
    }
    
    .coach-contact .contact-item {
        margin-bottom: 8px;
        padding: 5px 0;
    }
    
    .coach-contact .contact-item a {
        font-size: 0.8rem;
    }
}

/* Join Academy Section */
.join-academy-section {
    position: relative;
    padding: 0;
    background: #0a0a0a;
    overflow: hidden;
}

.join-academy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.join-academy-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.join-academy-overlay {
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.7);
}

.join-academy-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    padding: 20px 0px;
}

.join-academy-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.join-academy-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-academy-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.join-academy-form label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: block;
}

.join-academy-form input,
.join-academy-form textarea,
.join-academy-form select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.join-academy-form input:focus,
.join-academy-form textarea:focus,
.join-academy-form select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.join-academy-form select {
    appearance: none;
    background-image: none;
    cursor: pointer;
}

.join-academy-form .form-group {
    position: relative;
}

.join-academy-form .form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    pointer-events: none;
    z-index: 1;
    margin-top: 12px;
}

.join-academy-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.join-academy-form .submit-btn {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.join-academy-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for Management Team */
@media (max-width: 1024px) {
    .leader-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .leader-content {
        padding-left: 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .management-team-section {
        padding: 60px 0;
    }
    
    .team-header {
        margin-bottom: 50px;
        padding-top: 12px;
    }
    
    .team-header .section-title {
        font-size: 2rem;
    }
    
    .featured-leader {
        margin-bottom: 50px;
        padding: 30px 20px;
    }
    
    .leader-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .leader-image img {
        height: 400px;
    }
    
    .leader-name {
        font-size: 1.8rem;
    }
    
    .leader-position {
        font-size: 1rem;
    }
    
    .leader-description p {
        font-size: 1rem;
    }
    
    .leader-contact {
        padding: 15px;
        margin: 20px 0;
    }
    
    .leader-contact .contact-item {
        margin-bottom: 12px;
        padding: 8px 0;
    }
    
    .leader-contact .contact-item a {
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .member-position {
        font-size: 0.9rem;
    }
    
    .member-contact {
        padding: 12px;
        margin-top: 15px;
    }
    
    .member-contact .contact-item {
        margin-bottom: 10px;
        padding: 6px 0;
    }
    
    .member-contact .contact-item a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .team-header .section-title {
        font-size: 1.8rem;
    }
    
    .team-header .section-description {
        font-size: 1rem;
    }
    
    .featured-leader {
        padding: 20px 15px;
    }
    
    .leader-name {
        font-size: 1.6rem;
    }
    
    .leader-position {
        font-size: 0.95rem;
    }
    
    .leader-description p {
        font-size: 0.95rem;
        text-align: justify;
    }
    
    .leader-contact {
        padding: 12px;
        margin: 15px 0;
    }
    
    .leader-contact .contact-item {
        margin-bottom: 10px;
        padding: 6px 0;
    }
    
    .leader-contact .contact-item a {
        font-size: 0.85rem;
    }
    
    .team-member {
        padding: 20px 15px;
    }
    
    .member-social a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .member-contact {
        padding: 12px;
        margin-top: 15px;
    }
    
    .member-contact .contact-item {
        margin-bottom: 10px;
        padding: 6px 0;
    }
    
    .member-contact .contact-item a {
        font-size: 0.85rem;
    }
}

/* View Profile Button Styles */
.member-profile-button,
.coach-profile-button,
.leader-profile-button {
    margin-top: 20px;
    text-align: center;
}

.view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-profile-btn:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.view-profile-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-profile-btn:hover i {
    transform: scale(1.1);
}

/* Responsive View Profile Button */
@media (max-width: 768px) {
    .view-profile-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .view-profile-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Hover Effects */
.btn-primary, .btn-secondary, .btn-watch, .btn-view-profile {
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-primary::before,
.btn-secondary::before,
.btn-watch::before,
.btn-view-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-watch:hover::before,
.btn-view-profile:hover::before {
    left: 100%;
}

/* ================================
   EVENTS PAGE STYLES
   ================================ */

/* Page Banner */
.page-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffcc02;
}

.breadcrumb span {
    color: #ff6b35;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: #ffffff;
    color: white;
}

.events-header {
    text-align: center;
    margin-bottom: 60px;
}

.events-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 20px;
    position: relative;
}

.events-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #626262;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Event Card */
.event-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

.event-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(255 107 53);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.event-content {
    padding: 30px;
    color: #1a1a1a;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.event-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 0.9rem;
}

.stat i {
    color: #ff6b35;
    font-size: 1rem;
}

.event-btn {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.event-btn:hover::before {
    left: 100%;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 2, 0.3);
}

/* Event Detail Page Styles */
.event-detail-section {
    padding: 80px 0;
    background: #ffffff;
    color: white;
}

.event-detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.event-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000e48;
    margin-bottom: 20px;
}

.event-detail-date {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 30px;
}

.event-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.event-description-full {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #818181;
}

.event-details-table {
    background: rgb(0 12 60);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.event-details-table h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #ffffff;
}

.detail-value {
    color: #cccccc;
    text-align: right;
}

/* Image Gallery */
.image-gallery-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 50px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Register Button */
.register-section {
    text-align: center;
    padding: 60px 0;
    background: rgba(255, 204, 2, 0.1);
    border-radius: 20px;
    margin-top: 60px;
}

.register-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc02, #ff6b35);
    color: #1a1a1a;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 204, 2, 0.4);
}

/* Responsive Design for Events */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .events-header .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .event-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-detail-title {
        font-size: 2.2rem;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 300px;
        
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .events-header .section-title {
        font-size: 1.8rem;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-stats {
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive Design for Our Coaches Section */
@media (min-width: 1200px) {
    .coaches-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1199px) and (min-width: 1025px) {
    .coaches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .coach-image {
        width: 240px;
        height: 240px;
    }
    
    .join-academy-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .join-academy-title {
        font-size: 3rem;
    }
    
    .join-academy-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .coaches-header .section-title {
        font-size: 2.5rem;
    }
    
    .coach-image {
        width: 200px;
        height: 200px;
    }
    
    .coach-name {
        font-size: 1.4rem;
    }
    
    .join-academy-title {
        font-size: 2.5rem;
    }
    
    .join-academy-form {
        padding: 30px;
    }
    
    .join-academy-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .coaches-header .section-title {
        font-size: 2rem;
    }
    
    .coaches-header .section-description {
        font-size: 1rem;
    }
    
    .coach-image {
        width: 180px;
        height: 180px;
    }
    
    .coach-name {
        font-size: 1.2rem;
    }
    
    .coach-position {
        font-size: 0.9rem;
    }
    
    .join-academy-title {
        font-size: 2rem;
    }
    
    .join-academy-form {
        padding: 20px;
    }
}

/* Press Page Specific Styles */

/* Page Header Section */
.page-header-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    text-align: center;
    color: white;
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c5282f;
}

.separator {
    color: #c5282f;
    font-weight: bold;
}

.current {
    color: #c5282f;
}

/* Press Hero Section */
.press-hero-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.press-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title.white {
    color: #ffffff;
}

/* Press Releases Section */
.press-releases-section {
    padding: 80px 0;
    background: #ffffff;
}

.press-releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.press-release-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.press-release-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #c5282f;
}

.press-release-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.press-release-image img {
    width: 100%;
    transition: transform 0.4s ease;
}

.press-release-card:hover .press-release-image img {
    transform: scale(1.08);
}

.press-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.press-category-badge.breakthrough {
    background: linear-gradient(135deg, #c5282f, #e74c3c);
}

.press-category-badge.achievement {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.press-category-badge.training {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.press-category-badge.leadership {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.press-category-badge.partnership {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.press-category-badge.speaking {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.press-category-badge.updates {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.press-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.press-release-content {
    padding: 30px;
}

.press-release-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.press-release-card:hover .press-release-title {
    color: #c5282f;
}

.press-release-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: justify;
}

.press-release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.meta-item i {
    color: #c5282f;
    font-size: 0.9rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b35;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 40, 47, 0.3);
}

.read-more-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(197, 40, 47, 0.4); */
    color: #ffffff;
}

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

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

/* Section subtitle for press releases */
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.leadership-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.leadership-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.leadership-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

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

.leadership-content {
    flex: 1;
}

.leadership-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.leadership-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.leadership-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c5282f;
    font-weight: 600;
    font-size: 0.9rem;
}

.highlight-item i {
    font-size: 1rem;
}

/* Media Gallery Section */
.media-gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.media-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    transition: all 0.3s ease;
}

.gallery-item.featured {
    grid-row: span 2;
    height: 520px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 40, 47, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    color: white;
}

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

.gallery-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.gallery-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Press Stats Section */
.press-stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.press-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.press-stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
    display: flex;
    align-items: center;
}

.press-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-icon {
    font-size: 3rem;
    color: #c5282f;
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Press Contact Section */
.press-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.press-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.press-contact-text {
    max-width: 500px;
}

.press-contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.contact-icon {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #c5282f;
}

.press-contact-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

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

/* Responsive Design for Press Page */
@media (max-width: 1200px) {
    .press-releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .press-releases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .press-release-card {
        border-radius: 15px;
    }
    
    .press-release-image {
        height: 250px;
    }
    
    .press-release-content {
        padding: 25px;
    }
    
    .press-release-title {
        font-size: 1.3rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leadership-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .leadership-image {
        width: 150px;
        height: 150px;
    }
    
    .press-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .press-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    .page-header-section {
        position: relative;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .press-releases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .press-release-image {
        height: 220px;
    }
    
    .press-release-content {
        padding: 20px;
    }
    
    .press-release-title {
        font-size: 1.2rem;
    }
    
    .press-release-excerpt {
        font-size: 0.9rem;
    }
    
    .press-release-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .press-contact-image {
        height: 300px;
    }
    
    .press-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .press-releases-grid {
        margin-top: 30px;
    }
    
    .press-category-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .press-date-badge {
        top: 15px;
        right: 15px;
        padding: 5px 10px;
        font-size: 0.65rem;
    }
    
    .press-release-image {
        height: 200px;
    }
    
    .press-release-content {
        padding: 18px;
    }
    
    .press-release-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .press-release-excerpt {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
    
    .read-more-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
        gap: 8px;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
}

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

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 100%;
    padding: 20px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 20px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb span {
    color: #ff6b35;
    font-weight: 600;
}

/* Get in Touch Section */
.get-in-touch-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.get-in-touch-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.get-in-touch-section .section-subtitle {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 50%;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 2rem;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-card-content {
    color: #666;
    line-height: 1.8;
}

.contact-card-content p {
    margin-bottom: 8px;
}

.contact-card-content a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #e55a2b;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000c3c 0%, #000c3c 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/10139-2.webp') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.contact-form-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-text {
    color: #ffffff;
}

.form-label {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-form {
    max-width: 580px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.required {
    color: #ff6b35;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-message-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.send-message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.contact-form-image {
    text-align: center;
}

.contact-form-image img {
    max-width: 100%;
    height: 400px;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
    margin-top: 160px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Office Locations Section */
.office-locations-section {
    padding: 100px 0;
    background: #000c3c;
    position: relative;
    overflow: hidden;
}

.office-locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/baseball-court2.jpg') center/cover;
    opacity: 0.03;
    z-index: 1;
}

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

.office-locations-section .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.office-locations-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 2px;
}

.office-locations-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.location-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #ff6b35;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    
}

.location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 50%, #ff6b35 100%);
    border-radius: 50%;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.location-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.location-card:hover .location-icon::before {
    opacity: 1;
}

.location-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.location-card:hover h3 {
    color: #ff6b35;
}

.location-details {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

.location-details p {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 8px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-details p:hover {
    background: rgba(255, 107, 53, 0.1);
    padding-left: 15px;
    transform: translateX(5px);
}

.location-details i {
    color: #ff6b35;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.location-details p:hover i {
    transform: scale(1.2);
}

.location-details a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.location-details a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Location Badge */
.location-card::after {
    content: attr(data-location-type);
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.location-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) and (min-width: 769px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .location-card {
        padding: 40px 25px;
    }
    
    .location-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .location-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .get-in-touch-section .section-title {
        font-size: 2rem;
    }
    
    .get-in-touch-section .section-subtitle {
        font-size: 1.2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .office-locations-section {
        padding: 60px 0;
    }
    
    .office-locations-section .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .office-locations-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .location-card {
        padding: 40px 25px;
        border-radius: 20px;
        margin: 0 10px;
    }
    
    .location-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .location-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .location-details p {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .location-card::after {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .map-title {
        font-size: 2rem;
    }
}

/* ================================
   JOIN DDA PAGE STYLES
   ================================ */

/* Join DDA Hero Section */
.join-dda-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.join-dda-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.join-dda-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.join-dda-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.join-dda-hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.join-dda-hero-title {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 120px;
}

.join-dda-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb span {
    color: #ff6b35;
}

/* Join DDA Form Section */
.join-dda-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.join-dda-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.join-dda-form-left {
    color: #333333;
}

.join-dda-question {
    display: inline-block;
    color: #666666;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.join-dda-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.join-dda-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Join Features */
.join-dda-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.join-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.join-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #e55a2b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.join-feature:hover::before {
    transform: scaleX(1);
}

.join-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.join-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.join-feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.join-feature:hover .join-feature-icon::after {
    transform: translate(-50%, -50%) scale(1);
}

.join-feature:hover .join-feature-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.join-feature-text {
    width: 100%;
}

.join-feature-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.join-feature:hover .join-feature-text h4 {
    color: #ff6b35;
}

.join-feature-text p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

/* Join DDA Form Right */
.join-dda-form-right {
    position: relative;
}

.join-dda-form-container {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
    position: relative;
    z-index: 2;
    border: 1px solid #ff6b35;
}

.join-dda-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.join-dda-form .form-group {
    display: flex;
    flex-direction: column;
}

.join-dda-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333333;
}

.join-dda-form .required {
    color: #ff6b35;
}

.join-dda-form input,
.join-dda-form select,
.join-dda-form textarea {
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333333;
}

.join-dda-form input:focus,
.join-dda-form select:focus,
.join-dda-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.join-dda-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-now-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-now-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d14821 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Professional Image */
.join-dda-professional-image {
    position: absolute;
    right: -100px;
    bottom: -100px;
    z-index: 1;
    opacity: 0.8;
}

.join-dda-professional-image img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Benefits Section */
.join-benefits-section {
    padding: 100px 0;
    background: #000c3c;
    color: #ffffff;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: #ffffff;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.success-stories-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.success-stories-text {
    color: #333333;
}

.success-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.success-subtitle {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 25px;
}

.success-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.success-stat {
    text-align: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.success-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d14821 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.success-stories-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Join DDA Page */
@media (max-width: 1200px) {
    .join-dda-professional-image {
        right: -50px;
        bottom: -50px;
    }
    
    .join-dda-professional-image img {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .join-dda-hero-title {
        font-size: 2.5rem;
    }
    
    .join-dda-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .join-dda-form-content,
    .success-stories-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .join-dda-title {
        font-size: 2.5rem;
    }
    
    .join-dda-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .join-feature {
        padding: 30px 20px;
    }
    
    .join-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .join-feature-text h4 {
        font-size: 1.2rem;
    }
    
    .join-feature-text p {
        font-size: 0.95rem;
    }
    
    .join-dda-form-container {
        padding: 30px;
    }
    
    .join-dda-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .join-dda-professional-image {
        position: static;
        text-align: center;
        margin-top: 40px;
        opacity: 1;
    }
    
    .join-dda-professional-image img {
        width: 200px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .join-dda-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .join-dda-hero-title {
        font-size: 2rem;
    }
    
    .join-dda-title {
        font-size: 2rem;
    }
    
    .join-dda-form-container {
        padding: 20px;
    }
    
    .join-feature {
        padding: 25px 15px;
        gap: 15px;
    }
    
    .join-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .join-feature-text h4 {
        font-size: 1.1rem;
    }
    
    .join-feature-text p {
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefits-title,
    .success-title {
        font-size: 1.8rem;
    }
} 

/* Story Page Styles */


/* Story Hero Section */
.story-hero {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    /* padding: 80px 0 60px; */
    position: relative;
    overflow: hidden;
    height: 600px;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/baseball-court2.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.story-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 260px;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #a8b2d1;
}

.breadcrumb a {
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #42a5f5;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 500;
}

.story-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.story-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.story-date,
.story-location {
    background: rgba(100, 181, 246, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #64b5f6;
    border: 1px solid rgba(100, 181, 246, 0.3);
}

/* Story Content Section */
.story-content {
    padding: 80px 0;
    background: #ffffff;
    color: #333333;
}

.story-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Main Story Content */
.story-main {
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
}

.story-article {
    line-height: 1.8;
}

.story-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #64b5f6;
}

.story-section {
    margin-bottom: 40px;
    padding: 0 30px;
}

.story-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #64b5f6;
    padding-bottom: 10px;
}

.story-section p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 20px;
    text-align: justify;
}

/* Press Release Text Styling */
.press-release-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 25px;
    text-align: justify;
}

.press-release-text:first-of-type {
    font-weight: 500;
    color: #2c3e50;
}

/* Quote Sections */
.story-quote-section {
    margin-bottom: 50px;
    padding: 0 30px;
}

.story-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-left: 5px solid #64b5f6;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.story-quote::before {
    content: '"';
    font-size: 4rem;
    color: #64b5f6;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.story-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-left: 40px;
}

.story-quote cite {
    font-size: 1rem;
    color: #64b5f6;
    font-weight: 600;
    padding-left: 40px;
}

/* Story Images */
.story-image {
    text-align: center;
    margin: 30px 0;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.02);
}

.image-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

/* Match Results */
.match-results {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.match-results li {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    font-size: 1.1rem;
    color: #2c3e50;
    position: relative;
}

.match-results li::before {
    content: '🏆';
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Call to Action */
.cta-section {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    border-radius: 15px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1976d2;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Sidebar */
.story-sidebar {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    position: sticky;
    
}

.sidebar-section {
    margin-bottom: 50px;
}

.sidebar-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #64b5f6;
}

/* Media Logos */
.media-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.media-logo {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.media-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Related Stories */
.related-stories {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.related-story {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.related-story img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.related-story h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.story-excerpt {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: justify;
}

.read-more {
    color: #64b5f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1976d2;
}

/* Story Images Grid */
.story-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.story-images-grid .story-image {
    margin: 0;
}

.story-images-grid .story-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* Quote Context */
.quote-context {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

/* Dignitary List */
.dignitary-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.dignitary-list li {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #64b5f6;
    font-size: 1.1rem;
    color: #2c3e50;
    position: relative;
}

.dignitary-list li::before {
    content: '👔';
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Achievement List */
.achievement-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.achievement-list li {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    font-size: 1.1rem;
    color: #2c3e50;
    position: relative;
}

.achievement-list li::before {
    content: '🏆';
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-sidebar {
        position: static;
        order: -1;
    }
    
    .story-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 100px;
    }
    
    .story-hero {
        padding: 60px 0 40px;
    }
    
    .story-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .story-content {
        padding: 40px 0;
    }
    
    .story-intro,
    .story-section,
    .story-quote-section {
        padding: 0 20px;
    }
    
    .story-sidebar {
        padding: 30px 20px;
    }
    
    .media-logos {
        grid-template-columns: 1fr;
    }
    
    .story-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-images-grid .story-image img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .story-title {
        font-size: 2rem;
    }
    
    .story-intro {
        font-size: 1.1rem;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .story-section p {
        font-size: 1rem;
    }
    
    .story-quote p {
        font-size: 1.1rem;
        padding-left: 30px;
    }
    
    .story-quote cite {
        padding-left: 30px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.mission-statement:hover::before {
    left: 100%;
}

.mission-statement strong {
    color: #f39c12;
    font-weight: 700;
}

/* Impact Stories */
.impact-stories {
    margin: 30px 0;
}

.impact-story {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.impact-story h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.impact-story .story-quote {
    margin: 0;
    background: none;
    border: none;
    padding: 0;
}

.impact-story .story-quote p {
    font-style: italic;
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
}

.impact-story .story-quote cite {
    display: none;
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 80px 0;
    background: #ffffff;
    color: #333333;
}

.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.policy-header {
    background: #ff6b35;
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.policy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.policy-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.last-updated {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.policy-section {
    padding: 40px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section:hover {
    background-color: #f8f9fa;
}

.policy-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h3::before {
    content: '';
    width: 4px;
    height: 30px;
    background: #ff6b35;
    border-radius: 2px;
}

.policy-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0 15px 0;
    padding-left: 20px;
    border-left: 3px solid #ff6b35;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    padding-left: 20px;
}



.policy-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.contact-item {
    
    align-items: flex-start;
}



.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0px;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
}

.contact-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.policy-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 40px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.policy-footer p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-content {
        margin: 0 20px;
        border-radius: 15px;
    }
    
    .policy-header {
        padding: 40px 30px;
    }
    
    .policy-header h2 {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 30px 25px;
    }
    
    .policy-section h3 {
        font-size: 1.6rem;
    }
    
    .policy-section h4 {
        font-size: 1.3rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-header h2 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 25px 20px;
    }
    
    .policy-section h3 {
        font-size: 1.4rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-item i {
        margin: 0;
    }
}

/* Enhanced Privacy Policy Section with Animation */
.privacy-policy-section {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6) { animation-delay: 0.6s; }
.policy-section:nth-child(7) { animation-delay: 0.7s; }
.policy-section:nth-child(8) { animation-delay: 0.8s; }
.policy-section:nth-child(9) { animation-delay: 0.9s; }
.policy-section:nth-child(10) { animation-delay: 1.0s; }
.policy-section:nth-child(11) { animation-delay: 1.1s; }
.policy-section:nth-child(12) { animation-delay: 1.2s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover Effects for Interactive Elements */
.policy-section:hover h3::before {
    width: 8px;
    transition: width 0.3s ease;
}

.policy-section:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

/* Enhanced Typography */
.policy-section h3 {
    position: relative;
    overflow: hidden;
}

.policy-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.policy-section:hover h3::after {
    width: 100%;
}

/* Enhanced List Styling */
.policy-section ul {
    position: relative;
}

.policy-section li {
    transition: all 0.3s ease;
}

.policy-section li:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.policy-section li::before {
    transition: all 0.3s ease;
}

.policy-section li:hover::before {
    color: #8b0000;
    transform: scale(1.2);
}

/* Enhanced CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    color: white;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: #000c3c;
}

.cta-button i {
    font-size: 1.1rem;
}

.cta-text {
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

/* Story Intro Enhancement */
.story-intro h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.story-intro .story-quote-section {
    margin: 30px 0;
}

.story-intro .story-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-left: 5px solid #2196f3;
}

/* Cookies Policy Page Styles */
.cookies-policy-section {
    padding: 80px 0;
    background: #ffffff;
    color: #333333;
}

.cookies-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cookies-policy-section .policy-header {
    background: #ff6b35;
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.cookies-policy-section .policy-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.cookies-policy-section .policy-header .last-updated {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

.cookies-policy-section .policy-section {
    padding: 40px;
    border-bottom: 1px solid #ff6b35;
    position: relative;
}

.cookies-policy-section .policy-section:last-child {
    border-bottom: none;
}

.cookies-policy-section .policy-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.cookies-policy-section .policy-section h4 {
    color: #34495e;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    font-family: 'Outfit', sans-serif;
}

.cookies-policy-section .policy-section p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.cookies-policy-section .policy-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.cookies-policy-section .policy-section li {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}



.cookies-policy-section .policy-section a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookies-policy-section .policy-section a:hover {
    color: #8b0000;
    text-decoration: underline;
}

.cookies-policy-section .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cookies-policy-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.cookies-policy-section .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 40, 47, 0.15);
}

.cookies-policy-section .contact-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.cookies-policy-section .contact-item div {
    flex: 1;
}

.cookies-policy-section .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.cookies-policy-section .contact-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookies-policy-section .contact-item a:hover {
    color: #8b0000;
    text-decoration: underline;
}

.cookies-policy-section .policy-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 40px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.cookies-policy-section .policy-footer p {
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Enhanced Cookies Policy Section with Animation */
.cookies-policy-section {
    animation: fadeInUp 0.8s ease-out;
}

.cookies-policy-section .policy-section {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.cookies-policy-section .policy-section:nth-child(1) { animation-delay: 0.1s; }
.cookies-policy-section .policy-section:nth-child(2) { animation-delay: 0.2s; }
.cookies-policy-section .policy-section:nth-child(3) { animation-delay: 0.3s; }
.cookies-policy-section .policy-section:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design for Cookies Policy */
@media (max-width: 768px) {
    .cookies-policy-section {
        padding: 60px 0;
    }
    
    .cookies-policy-content {
        margin: 0 20px;
        border-radius: 15px;
    }
    
    .cookies-policy-section .policy-header {
        padding: 40px 30px;
    }
    
    .cookies-policy-section .policy-header h2 {
        font-size: 2rem;
    }
    
    .cookies-policy-section .policy-section {
        padding: 30px 25px;
    }
    
    .cookies-policy-section .policy-section h3 {
        font-size: 1.5rem;
    }
    
    .cookies-policy-section .policy-section h4 {
        font-size: 1.2rem;
    }
    
    .cookies-policy-section .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookies-policy-section .contact-item {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .cookies-policy-section .policy-section {
        padding: 25px 20px;
    }
    
    .cookies-policy-section .policy-section h3 {
        font-size: 1.4rem;
    }
    
    .cookies-policy-section .policy-section p {
        font-size: 1rem;
    }
    
    .cookies-policy-section .policy-section li {
        font-size: 1rem;
    }
}

/* Enhanced Cookies Policy Hover Effects */
.cookies-policy-section .policy-section:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
}

.cookies-policy-section .policy-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.cookies-policy-section .policy-section:hover h3::after {
    width: 100%;
}

/* Enhanced List Styling for Cookies Policy */
.cookies-policy-section .policy-section ul {
    position: relative;
}

.cookies-policy-section .policy-section li {
    transition: all 0.3s ease;
}

.cookies-policy-section .policy-section li:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.cookies-policy-section .policy-section li:hover::before {
    color: #8b0000;
    transform: scale(1.2);
}

/* Media Queries for India Footprint Section */
@media (max-width: 1200px) {
    .india-footprint-section {
        padding: 80px 0;
    }
    
    .footprint-title {
        font-size: 2.5rem;
    }
    
    .map-container {
        margin: 50px 0;
    }
    
    .india-map-image {
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .india-footprint-section {
        padding: 70px 0;
    }
    
    .footprint-title {
        font-size: 2.2rem;
    }
    
    .footprint-description {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .map-container {
        margin: 40px 0;
    }
    
    .india-map-image {
        max-width: 600px;
    }
    
    .cities-list {
        gap: 25px;
        margin-top: 35px;
    }
    
    .city-item {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .india-footprint-section {
        padding: 60px 0;
    }
    
    .footprint-title {
        font-size: 2rem;
    }
    
    .footprint-description {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .map-container {
        margin: 30px 0;
    }
    
    .india-map-image {
        max-width: 500px;
    }
    
    .india-map-img {
        max-height: 500px;
    }
    
    .cities-list {
        gap: 20px;
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .city-item {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .city-item i {
        font-size: 1rem;
    }
    
    /* Adjust city pin positions for mobile */
    .city-chandigarh {
        left: 28%;
        top: 18%;
    }
    
    .city-patiala {
        left: 28%;
        top: 21%;
    }
    
    .city-delhi {
        left: 31%;
        top: 31%;
    }
    
    .city-panipat {
        left: 30%;
        top: 27%;
    }
    
    .city-gwalior {
        left: 34%;
        top: 41%;
    }
    
    .city-shirdi {
        left: 23%;
        top: 52%;
    }
}

@media (max-width: 576px) {
    .india-footprint-section {
        padding: 50px 0;
    }
    
    .footprint-title {
        font-size: 1.8rem;
    }
    
    .footprint-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .map-container {
        margin: 25px 0;
    }
    
    .india-map-image {
        max-width: 400px;
    }
    
    .india-map-img {
        max-height: 400px;
    }
    
    .cities-list {
        gap: 15px;
        margin-top: 25px;
        padding: 0 15px;
    }
    
    .city-item {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .city-item i {
        font-size: 0.9rem;
    }
    
    /* Further adjust city pin positions for small mobile */
    .city-chandigarh {
        left: 26%;
        top: 16%;
    }
    
    .city-patiala {
        left: 26%;
        top: 19%;
    }
    
    .city-delhi {
        left: 29%;
        top: 29%;
    }
    
    .city-panipat {
        left: 28%;
        top: 25%;
    }
    
    .city-gwalior {
        left: 32%;
        top: 39%;
    }
    
    .city-shirdi {
        left: 21%;
        top: 50%;
    }
}

@media (max-width: 480px) {
    .india-footprint-section {
        padding: 40px 0;
    }
    
    .footprint-title {
        font-size: 1.6rem;
    }
    
    .footprint-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .map-container {
        margin: 20px 0;
    }
    
    .india-map-image {
        max-width: 350px;
    }
    
    .india-map-img {
        max-height: 350px;
    }
    
    .cities-list {
        gap: 12px;
        margin-top: 20px;
        padding: 0 10px;
    }
    
    .city-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .city-item i {
        font-size: 0.8rem;
    }
    .pin-marker {
        width: 8px;
        height: 8px;
    }
    /* Final city pin position adjustments for very small screens */
    .city-chandigarh {
        left: 24%;
        top: 20%;
    }
    
    .city-patiala {
        left: 24%;
        top: 22%;
    }
    
    .city-delhi {
        left: 27%;
        top: 31%;
    }
    
    .city-panipat {
        left: 26%;
        top: 25%;
    }
    
    .city-gwalior {
        left: 30%;
        top: 42%;
    }
    
    .city-shirdi {
        left: 19%;
        top: 54%;
    }
}

@media (max-width: 360px) {
    .footprint-title {
        font-size: 1.4rem;
    }
    
    .footprint-description {
        font-size: 0.85rem;
        padding: 0 8px;
    }
    
    .india-map-image {
        max-width: 300px;
    }
    
    .india-map-img {
        max-height: 300px;
    }
    
    .cities-list {
        gap: 10px;
        margin-top: 18px;
        padding: 0 8px;
    }
    
    .city-item {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .city-item i {
        font-size: 0.75rem;
    }
}