/* Optimized Combined CSS - All duplicate styles merged */

/* Header Styles - Consistent across all pages */
.header-section {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(35, 42, 92, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
    min-height: 80px;
}

.header-wrapper {
    padding: 15px 0 !important;
}

.header-wrapper .logo img {
    max-height: 50px;
    width: auto;
}

.menu a {
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #dc3545 !important;
}

/* Body padding for fixed header */
body {
    padding-top: 80px !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Container Styles - Optimized */
.container, .container-fluid {
    max-width: 95% !important;
    margin: 0 auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

section {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Footer Styles - Consistent */
.footer-section {
    background-size: cover;
    background-position: center;
    padding: 40px 0 20px;
    min-height: 200px;
}

.footer-bottom {
    padding: 20px 0 !important;
}

.footer-middle {
    min-height: 150px;
    padding: 30px 0;
}

.footer-logo img {
    max-width: 150px;
}

.footer-logo {
    width: 20%;
    padding-left: 40px;
}

.footer-bottom-content {
    color: #fff;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom-content a {
    color: #4a90e2;
    text-decoration: none;
}

.match-social-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    gap: 10px;
}

.match-social-list img {
    width: 30px;
    height: 30px;
}

.footer-links-section h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

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

.footer-links-list a:hover {
    color: #4a90e2;
}

/* Image Optimization */
.about-image img {
    height: 100%;
    object-fit: cover;
}

/* Box Sizing */
* {
    box-sizing: border-box !important;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Column Padding */
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6,
.col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* Breadcrumb Height Fix */
.pageheader-section {
    padding: 100px 0 50px !important;
}

.pageheader-title {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
}

.breadcrumb {
    margin-bottom: 0 !important;
}

/* Mobile Menu Toggle Functionality */
.menu li.mobile-only {
    display: none !important;
}

.menu-area .login,
.menu-area .signup {
    display: none;
}

/* Desktop - Hide mobile-only items */
@media (min-width: 992px) {
    .menu li.mobile-only {
        display: none !important;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .menu li.mobile-only {
        display: block;
    }
    .header-section {
        min-height: 70px;
    }
    
    .header-wrapper {
        padding: 10px 0 !important;
    }
    
    .header-wrapper .logo img {
        max-height: 40px;
    }
    
    body {
        padding-top: 70px !important;
    }
    
    .container, .container-fluid {
        max-width: 98% !important;
        width: 98% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .footer-section {
        padding: 20px 0 10px;
        min-height: 150px;
    }
    
    .footer-middle {
        min-height: 100px;
        padding: 20px 0;
    }
    
    .footer-bottom {
        padding: 15px 0 !important;
    }
    
    .footer-logo {
        display: none !important;
    }
    
    .footer-links-section {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .menu-area .menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(35, 42, 92, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9998;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.4);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .menu-area .menu.active {
        display: block;
    }
    
    .menu-area .menu li {
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .menu-area .menu li a {
        display: block;
        padding: 15px 20px;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
        font-weight: 600;
    }
    
    .menu-area .menu li a:hover {
        background: rgba(255, 0, 82, 0.6);
        color: #fff !important;
    }
    
    .padding-top {
        padding-top: 30px !important;
    }
    
    .padding-bottom {
        padding-bottom: 30px !important;
    }
    
    .pageheader-section {
        padding: 80px 0 30px !important;
    }
    
    .pageheader-title {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
}

.header-section{
    padding: 5px 0 !important;
}

.banner__content{
    padding-top: 20px !important;
}

@media (max-width: 575px) {
    .header-section {
        min-height: 60px;
    }
    
    .header-wrapper {
        padding: 8px 0 !important;
    }
    
    .header-wrapper .logo img {
        max-height: 35px;
    }
    
    body {
        padding-top: 60px !important;
    }
    
    .container, .container-fluid {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .footer-section {
        padding: 15px 0 8px;
        min-height: 120px;
    }
    
    .footer-middle {
        min-height: 80px;
        padding: 15px 0;
    }
    
    .footer-bottom {
        padding: 10px 0 !important;
    }
    
    .menu-area .menu {
        top: 108px;
        max-height: calc(100vh - 60px);
    }
    
    .pageheader-section {
        padding: 70px 0 25px !important;
    }
    
    .pageheader-title {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }
    
    .breadcrumb {
        font-size: 14px !important;
    }
}

@media (min-width: 1080px) {
    #footer-links{
        line-height: 1;
        padding-top: 5px;
        padding-left: 7%;
        font-weight: 500;
    }
}