/* ============================================
   GLOBAL STYLES FOR ALL PAGES
   ============================================ */
/* Top Header Bar */
.top-header-bar {
    position: relative;
    z-index: 1001;
}

.slider img {
    filter: brightness(120%);
}

/* Main Header - position below top bar */
.atf-site-header.atf-style1 {
    background: #1a1a2e !important;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 45px;  /* Height of top header bar */
    left: 0;
    z-index: 1000;
}

/* Adjust main content padding to account for both headers */
.atf-main-content {
    padding-top: 137px; /* 47px (top bar) + 90px (header) */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .atf-site-header.atf-style1 {
        top: 0; /* Smaller top bar height on mobile */
    }
    
    .atf-main-content {
        padding-top: 130px;
    }
    
     .top-header-bar {
        display: none;
    }
}

.atf-main-header {
    background: linear-gradient(
312deg, #1a1a2e 21%, #2a2a3e 19%, #ffc107 100%);
    transition: all 0.3s ease;
    position: relative;
}


/* Fix Select Dropdown Styles - Only add this if selects are broken */
select,
.form-select {
    width: 100%;
    padding: 0px 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
}

select:focus,
.form-select:focus {
    border-color: #ffc107;
    outline: none;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="url"], textarea {
    outline: none;
    height: 56px;
    width: 100%;
    line-height: 56px;
    font-size: 16px;
    padding-left: 25px;
    padding-right: 25px;
    color: var(--thm-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #f8f6f6;
    border-radius: 15px;
}

/* Logo Styles */
.atf-site-branding img {
    max-height: 70px;
    width: auto;
}

/* Navigation Menu */
.atf-site-header.atf-style1 .atf-nav-list > li > a {
    color: #ffffff !important;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.atf-site-header.atf-style1 .atf-nav-list > li > a:hover,
.atf-site-header.atf-style1 .atf-nav-list > li > a.active {
    color: #ffc107 !important;
}

/* Sticky Header */
.atf-site-header.atf-style1.atf-sticky-active {
    background: #1a1a2e !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Remove the pseudo-element from footer */
.atf-single-footer::after {
    display: none !important;
    content: none !important;
}

.atf-footer-area::before {
    display: none !important;
    content: none !important;
}

/* Main Content Wrapper */
.atf-main-content {
    padding-top: 90px;
}

/* ============================================
   PAGE BANNER STYLES (For all pages)
   ============================================ */
.atf-page-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    margin-top: 0;
}

.atf-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.z-index-1 {
    z-index: 1;
}

/* ============================================
   BREADCRUMB STYLES (Global - Used on all pages)
   ============================================ */
.atf-breadcrumb-wrapper {
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #ffc107;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    font-size: 18px;
}

/* ============================================
   SECTION SPACING
   ============================================ */
.atf-section-padding {
    padding: 80px 0;
}

/* ============================================
   FEATURE CARDS (Global)
   ============================================ */
.atf-feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.atf-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon i {
    transition: transform 0.3s ease;
}

.atf-feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

/* ============================================
   COUNTER BOX (Global)
   ============================================ */
.atf-counter-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.atf-counter-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.counter-number {
    line-height: 1.2;
    font-weight: 700;
}

/* ============================================
   ABOUT IMAGE (Global)
   ============================================ */
.atf-about-image {
    overflow: hidden;
    border-radius: 20px;
}

.atf-about-image img {
    transition: transform 0.5s ease;
}

.atf-about-image:hover img {
    transform: scale(1.05);
}

.atf-experience-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
    font-weight: 500;
    font-size: 14px;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.atf-themes-btn {
    background: #ffc107;
    color: #1a1a2e;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.atf-themes-btn:hover {
    background: #ffcd38;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .atf-main-content {
        padding-top: 90px;
    }
    
    .atf-page-banner {
        padding: 60px 0;
    }
    
    .atf-section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 991px) {
    .atf-main-content {
        padding-top: 80px;
    }
    
    .atf-page-banner {
        padding: 50px 0;
    }
    
    .atf-page-banner h1 {
        font-size: 2.5rem;
    }
    
    .atf-section-padding {
        padding: 50px 0;
    }
    
    .atf-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .atf-main-content {
        padding-top: 70px;
    }
    
    .atf-page-banner {
        padding: 40px 0;
    }
    
    .atf-page-banner h1 {
        font-size: 2rem;
    }
    
    .atf-section-padding {
        padding: 40px 0;
    }
    
    .atf-title {
        font-size: 1.75rem !important;
    }
    
    .counter-number {
        font-size: 1.75rem !important;
    }
    
    .atf-breadcrumb-wrapper {
        padding: 6px 16px;
    }
    
    .breadcrumb-item {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .atf-main-content {
        padding-top: 60px;
    }
    
    .atf-page-banner {
        padding: 30px 0;
    }
    
    .atf-page-banner h1 {
        font-size: 1.75rem;
    }
    
    .atf-section-padding {
        padding: 30px 0;
    }
    
    .atf-title {
        font-size: 1.5rem !important;
    }
    
    .counter-number {
        font-size: 1.5rem !important;
    }
    
    .atf-feature-card {
        padding: 20px !important;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .atf-experience-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}



