﻿/* .mainNav {
            max-width: 1080px;
            margin: 12px auto 0;
            border-radius: 50px;
        } */
    body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            background-color: #ffffff;
            color: #333333;
        }

.mainNav .logo{
    height : 70px;
}

.mainNav .nav-link{
    font-size: 15px !important;
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: #ffffff;
}

 .custom-title-line {
            line-height: 1.22 !important;
        }

/* Sponsor Slider Styles */
.sponsor-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 122, 112, 0.1);
    border-bottom: 1px solid rgba(0, 122, 112, 0.1);
}

.sponsor-slider-container {
    position: relative;
    padding: 2rem 0;
}

.sponsor-title {
    color: #333333;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.sponsor-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    height: 120px;
    background: white;
    border-radius: 16px;
    border: 1.5px solid rgba(0, 122, 112, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.sponsor-slide:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 122, 112, 0.3);
    box-shadow: 0 12px 32px rgba(0, 122, 112, 0.1);
}

.sponsor-logo {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.sponsor-slide:hover .sponsor-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0) 5%, 
        rgba(255, 255, 255, 0) 95%, 
        rgba(255, 255, 255, 1) 100%);
}

@media (max-width: 768px) {
    .sponsor-slide {
        height: 100px;
        padding: 1rem;
    }
    
    .sponsor-logo {
        max-width: 120px;
        max-height: 50px;
    }
}

  #searchModal {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        #searchModal.show {
            opacity: 1;
            pointer-events: auto;
        }

        #searchModal.show #searchModalContent {
            opacity: 1;
            transform: scale(1);
        }