@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Global Font Family - Excluding Font Awesome Icons */
*:not(.fas):not(.far):not(.fab):not(.fa):not(.fal):not(.fad):not(.bi) {
    font-family: 'Poppins', sans-serif !important;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

/* ===============================================
   FLIGHTS PAGE - Modern Design with Theme Colors
   =============================================== */

/* Flights Page Header */
.flights-header {
    background: var(--bg-gradient);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.flights-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.flights-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.flights-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.flights-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
}

.flights-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.flights-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--secondary);
    border: 2px solid var(--secondary);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    transform: translateY(-3px);
}

.flights-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Search Section */
.flights-search-section {
    background: var(--card-bg);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.flights-search-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.flights-search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
}

.search-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.search-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form .form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.search-form .form-control,
.search-form .form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25);
    outline: none;
}

.advanced-filters {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.search-actions {
    border-top: 2px solid var(--border);
    padding-top: 25px;
}

/* Results Section */
.flights-results {
    background: var(--bg-light);
    min-height: 60vh;
}

.results-header {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--card-border);
}

.results-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.results-subtitle {
    color: var(--text-secondary);
    margin: 0;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sort-select {
    min-width: 150px;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25);
    outline: none;
}

.sort-direction {
    display: flex;
    gap: 5px;
}

.btn-sort {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.btn-sort:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-sort.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.btn-sort.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sort.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* Flight Cards */
.flight-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.flight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.flight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.airline-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.airline-logo {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.airline-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.airline-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.flight-number {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.flight-class .class-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.class-economy {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.class-business {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.class-first {
    background: rgba(251, 191, 36, 0.1);
    color: var(--secondary);
}


/* Flight Route */
.flight-route {
    margin-bottom: 20px;
}

.route-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.departure,
.arrival {
    text-align: center;
    flex: 1;
}

.time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.airport {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.city {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.route-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 120px;
}

.duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.line {
    width: 100%;
    height: 2px;
    background: var(--bg-gradient);
    border-radius: 1px;
    position: relative;
}

.line::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Flight Details */
.flight-details {
    margin-bottom: 20px;
}

/* Flight Pricing */
.flight-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-details {
    margin-left: 8px;
}

.price-details small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.price-actions .btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Flight Info Items */
.flight-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.info-item i {
    color: var(--primary);
    font-size: 0.8rem;
}

.info-item .text-success {
    color: var(--success) !important;
}

.info-item .text-danger {
    color: #dc3545 !important;
}

/* No Results */
.no-results {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--card-border);
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-results-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.no-results-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Custom Pagination Design */
.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* background: linear-gradient(135deg, var(--bg-white) 0%, #f8f9fa 100%); */
    /* padding: 25px 35px; */
    /* border-radius: 25px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
    /* border: 1px solid var(--border); */
    /* backdrop-filter: blur(15px); */
    position: relative;
    overflow: hidden;
}

.custom-pagination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    border-radius: 25px 25px 0 0;
}

.custom-pagination::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 20px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 15px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.pagination-btn:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    /* transform: translateY(-4px) scale(1.08); */
    /* box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.4); */
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
    /* transform: translateY(-2px); */
}

.pagination-btn.disabled {
    background: var(--bg-light);
    color: var(--text-muted);
    border-color: var(--border);
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.pagination-btn.disabled:hover {
    background: var(--bg-light);
    color: var(--text-muted);
    border-color: var(--border);
    transform: none;
    box-shadow: none;
}

.pagination-btn.disabled::before {
    display: none;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.pagination-nav i {
    font-size: 16px;
    margin: 0 4px;
}

.pagination-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 8px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Hide default Bootstrap pagination */
.pagination {
    display: none !important;
}

/* Visa Booking Page Styles */
.visa-booking-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.booking-header-home {
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.booking-header-home::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.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.booking-badge-home {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.booking-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.visa-summary-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.visa-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.visa-flag {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
}

.visa-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.visa-details h5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 5px;
}

.visa-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.processing-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.visa-price {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.visa-price small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Progress Steps */
.booking-progress {
    background: var(--bg-white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step.completed::after {
    background: var(--primary);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.completed .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.step-label {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

.step.completed .step-label,
.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

/* Booking Form */
.booking-form-section {
    padding: 50px 0;
}

.booking-form-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.booking-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

.form-step {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Document Upload */
.document-section-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.document-upload {
    margin-bottom: 20px;
}

.upload-area {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.upload-info i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.upload-info p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.upload-info small {
    color: var(--text-muted);
}

/* Application Summary */
.application-summary {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.summary-section {
    margin-bottom: 25px;
}

.summary-section:last-child {
    margin-bottom: 0;
}

.summary-section h6 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
}

.summary-item .label {
    font-weight: 600;
    color: var(--text-secondary);
}

.summary-item .value {
    color: var(--text-primary);
    text-align: right;
}

/* Payment Summary */
.payment-summary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    border-radius: 15px;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.payment-summary h5 {
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
}

.payment-breakdown {
    margin-bottom: 25px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.btn-outline-secondary {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

/* Success Page */
.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.success-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Information Section (Step 1) */
.information-section {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    min-height: 70vh;
}

.information-section .container {
    max-width: 1200px;
}

.information-section .requirements-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.information-section .requirements-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

/* Requirements Section */
.requirements-section {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.requirements-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.requirements-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.requirements-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.requirement-category h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

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

.requirement-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.processing-info {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item.total {
    font-weight: 700;
    color: var(--primary);
    border-top: 2px solid var(--primary);
    margin-top: 10px;
    padding-top: 15px;
}

.info-item .label {
    font-weight: 600;
    color: var(--text-secondary);
}

.info-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Help Card */
.help-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    border-radius: 15px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.help-card h5 {
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.help-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.help-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.help-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

/* OCR Section */
.ocr-section {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
    border: 2px dashed var(--primary);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.ocr-header {
    text-align: center;
    margin-bottom: 20px;
}

.ocr-header h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.ocr-header p {
    color: var(--text-secondary);
    margin: 0;
}

.ocr-upload {
    position: relative;
}

.ocr-upload .upload-area {
    border: 2px dashed var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    transition: all 0.3s ease;
}

.ocr-upload .upload-area:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--secondary);
}

.ocr-upload .upload-info i {
    color: var(--primary);
    font-size: 2.5rem;
}

.ocr-upload .upload-info p {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.ocr-upload .upload-info small {
    color: var(--text-muted);
}

/* Requirements Preview */
.requirements-preview {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

.requirements-preview h6 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

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

.requirements-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    font-size: 14px;
}

/* Enhanced Document Upload */
.document-section-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
}

.document-upload {
    margin-bottom: 20px;
}

.upload-area {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.1), transparent);
    transition: left 0.6s;
}

.upload-area:hover::before {
    left: 100%;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.upload-info i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.upload-area:hover .upload-info i {
    transform: scale(1.1);
    color: var(--secondary);
}

.upload-info p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.upload-info small {
    color: var(--text-muted);
}

/* Enhanced Form Steps */
.form-step {
    animation: fadeInUp 0.6s ease;
    position: relative;
}

.form-step::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-step:hover::before {
    opacity: 1;
}

.step-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.step-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
    padding-left: 20px;
    border-left: 3px solid var(--border);
    background: rgba(var(--primary-rgb), 0.02);
    padding: 20px;
    border-radius: 0 15px 15px 0;
}

/* Enhanced Form Controls */
.form-control,
.form-select {
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1), 0 4px 20px rgba(var(--primary-rgb), 0.15);
    background: var(--bg-white);
    transform: translateY(-2px);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.1);
    transform: translateY(-1px);
}

.form-control::placeholder,
.form-select::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.form-control:focus::placeholder,
.form-select:focus::placeholder {
    opacity: 0.7;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group .form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.form-group .form-label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    opacity: 0.7;
}

/* Enhanced Checkboxes */
.form-check {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    background: var(--bg-white);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 2px;
}

.form-check-input:checked {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    transform: scale(1.1);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-check-label {
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    line-height: 1.5;
}

.form-check:hover .form-check-input {
    border-color: var(--secondary);
}

/* Textarea Enhancements */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

textarea.form-control:focus {
    min-height: 140px;
}

/* Select Enhancements */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
}

/* .form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23" + str_replace('#', '', var(--primary)) + "' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
} */

/* Form Layout Enhancements */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-section {
    background: rgba(var(--primary-rgb), 0.02);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.form-section-title i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Enhanced Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.4);
}

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

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 15px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
    border-color: transparent;
}

.btn-outline-secondary {
    border: 2px solid var(--border);
    color: var(--text-secondary);
    border-radius: 15px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
}

.btn-outline-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Flash Messages */
.alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-title {
        font-size: 2rem;
    }

    .progress-steps {
        flex-direction: column;
        gap: 15px;
    }

    .step::after {
        display: none;
    }

    .booking-form-card {
        padding: 25px;
        margin: 0 15px;
    }

    .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .success-actions {
        flex-direction: column;
    }

    .requirements-content {
        gap: 20px;
    }

    .help-card {
        position: static;
        margin-top: 20px;
    }

    .ocr-section {
        padding: 20px;
    }

    .step-title {
        font-size: 1.5rem;
    }
}

/* Flights and Visas Pagination - Use main pagination styles */
.flights-pagination,
.pagination-section {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

/* Pagination Info */
.pagination-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px 25px;
    /* background: var(--bg-white); */
    /* border-radius: 12px; */
    /* border: 1px solid var(--border); */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    position: relative;
    z-index: 10;
}

/* Prevent overlapping elements */
.pagination-wrapper * {
    position: relative;
    z-index: 10;
}

/* Hide any conflicting elements */
.pagination-wrapper .fa-arrow-left,
.pagination-wrapper .fa-arrow-right,
.pagination-wrapper .arrow {
    display: none !important;
}

.pagination-info .info-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.pagination-info .info-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Pagination */
@media (max-width: 768px) {

    .flights-pagination .pagination,
    .pagination-section .pagination {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .flights-pagination .pagination .page-link,
    .pagination-section .pagination .page-link {
        padding: 10px 14px;
        margin: 0 2px;
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .pagination-info {
        margin: 15px 10px 0;
        padding: 12px 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .flights-header {
        min-height: 60vh;
        padding: 40px 0;
    }

    .flights-title {
        font-size: 2.5rem;
    }

    .flights-subtitle {
        font-size: 1rem;
    }

    .flights-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .flights-stats {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .stats-container {
        gap: 15px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .flights-search-card {
        padding: 25px;
        margin: 0 15px;
    }

    .sort-options {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .sort-select {
        width: 100%;
    }

    .sort-direction {
        justify-content: center;
    }

    .route-details {
        flex-direction: column;
        gap: 15px;
    }

    .route-line {
        max-width: none;
        width: 100%;
    }

    .line {
        width: 100%;
    }

    .flight-pricing {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .price-actions {
        width: 100%;
    }

    .price-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .flights-header {
        padding: 40px 0;
    }

    .flights-title {
        font-size: 1.75rem;
    }

    .search-form .row {
        margin: 0;
    }

    .search-form .col-md-3,
    .search-form .col-md-2 {
        padding: 0 0 15px 0;
    }

    .flight-card {
        padding: 20px;
    }

    .airline-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .flight-card-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===============================================
   SERVICES SECTION MODERN CARDS - Enhanced Design
   =============================================== */

/* Service Card Container */
.service-card-modern {
    height: 100%;
    transition: all 0.3s ease;
}

.service-card-inner {
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card-modern:hover .service-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Background Pattern */
.service-bg-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.03;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-bg-pattern {
    opacity: 0.08;
    transform: scale(1.2);
}

/* Icon Container */
.service-icon-container {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-wrapper::before {
    opacity: 1;
}

.service-icon-wrapper i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card-modern:hover .service-icon-wrapper i {
    transform: scale(1.1);
}

/* Content Styling */
.service-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-description {
    color: var(--text-primary);
}

/* Features Styling */
.service-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.service-card-modern:hover .feature-item span {
    color: var(--text-primary);
}

.service-card-modern:hover .feature-item i {
    transform: scale(1.1);
}

/* Hover Effect Overlay */
.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
    z-index: 1;
}

.service-card-modern:hover .service-hover-effect {
    opacity: 0.05;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card-inner {
        padding: 1.5rem;
    }

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .service-icon-wrapper i {
        font-size: 28px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
}

/* Animation Enhancements */
.service-card-modern {
    animation-fill-mode: both;
}

/* ===============================================
   ABOUT SECTION FEATURE CARDS - Modern Design
   =============================================== */

/* Feature Card Container */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color);
}

/* Background Pattern */
.feature-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-bg-pattern {
    opacity: 0.08;
    transform: translate(20px, -20px) scale(1.2);
}

/* Icon Container */
.feature-icon-container {
    position: relative;
    z-index: 2;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper::before {
    opacity: 1;
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon-wrapper i {
    transform: scale(1.1);
}

/* Content Styling */
.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
    transform: translateX(5px);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Hover Effect Overlay */
.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
    z-index: 1;
}

.feature-card:hover .feature-hover-effect {
    opacity: 0.05;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon-wrapper i {
        font-size: 24px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

/* Animation Enhancements */
.about-feature {
    animation-fill-mode: both;
}

.about-feature:nth-child(1) {
    animation-delay: 0.1s;
}

.about-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.about-feature:nth-child(3) {
    animation-delay: 0.3s;
}

.about-feature:nth-child(4) {
    animation-delay: 0.4s;
}

/* ===============================================
   TEXT COLOR OVERRIDES - Fix Visibility Issues
   =============================================== */

/* Override Bootstrap text utilities with theme colors */
.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-dark {
    color: var(--text-primary) !important;
}

.text-light {
    color: var(--text-light) !important;
}

/* Fix specific visibility issues */
.small,
small {
    color: var(--text-secondary) !important;
}

.lead {
    color: var(--text-primary) !important;
}

/* Override any hardcoded gray colors */
.text-gray-500 {
    color: var(--text-muted) !important;
}

.text-gray-600 {
    color: var(--text-secondary) !important;
}

.text-gray-700 {
    color: var(--text-primary) !important;
}

/* Ensure all paragraph text uses theme colors */
p {
    color: var(--text-primary);
}

/* Fix form labels and descriptions */
.form-label,
label {
    color: var(--text-primary) !important;
}

.form-text {
    color: var(--text-muted) !important;
}

/* Fix card text elements */
.card-text {
    color: var(--text-primary) !important;
}

.card-subtitle {
    color: var(--text-secondary) !important;
}

/* Fix list items */
.list-group-item {
    color: var(--text-primary) !important;
}

/* Fix badge text */
.badge {
    color: var(--text-white) !important;
}

/* Fix button text */
.btn {
    color: inherit;
}

/* Fix link colors */
a {
    color: var(--primary);
}

a:hover {
    color: var(--primary-dark);
}

/* Fix heading colors */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary) !important;
}

/* Fix specific component text issues */
.team-role,
.testimonial-role,
.country-subtitle {
    color: var(--text-secondary) !important;
}

.stat-label,
.progress-label {
    color: var(--text-secondary) !important;
}

.feature-description,
.service-description {
    color: var(--text-primary) !important;
}

/* ===============================================
   COMPREHENSIVE COLOR OVERRIDES - Fix All Issues
   =============================================== */

/* Override any remaining hardcoded colors */
* {
    /* Force all text to use theme colors */
    color: inherit;
}

/* Specific overrides for common Bootstrap classes */
.text-gray-400 {
    color: var(--text-light) !important;
}

.text-gray-500 {
    color: var(--text-muted) !important;
}

.text-gray-600 {
    color: var(--text-secondary) !important;
}

.text-gray-700 {
    color: var(--text-primary) !important;
}

.text-gray-800 {
    color: var(--text-primary) !important;
}

.text-gray-900 {
    color: var(--text-primary) !important;
}

/* Override any inline styles or specific selectors */
[style*="color: #6b7280"] {
    color: var(--text-secondary) !important;
}

[style*="color: #9ca3af"] {
    color: var(--text-muted) !important;
}

[style*="color: #374151"] {
    color: var(--text-primary) !important;
}

/* Fix any remaining visibility issues */
.text-muted,
.text-secondary,
.text-light {
    opacity: 1 !important;
}

/* Ensure proper contrast for all text */
body,
html {
    color: var(--text-primary);
}

/* Fix any remaining hardcoded hex colors */
[style*="#6b7280"] {
    color: var(--text-secondary) !important;
}

[style*="#9ca3af"] {
    color: var(--text-muted) !important;
}

[style*="#374151"] {
    color: var(--text-primary) !important;
}

[style*="#1f2937"] {
    color: var(--text-primary) !important;
}

/* ===============================================
   MODERN TOPBAR STYLES - Fix Visibility Issues
   =============================================== */

.topbar-modern {
    background: var(--bg-gradient) !important;
    padding: 10px 15px !important;
    position: relative;
    overflow: hidden;
}

.topbar-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.topbar-link {
    color: var(--text-white) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.topbar-link:hover {
    color: var(--secondary) !important;
    transform: translateY(-1px);
}

.topbar-link i {
    color: var(--secondary) !important;
    transition: all 0.3s ease;
}

.topbar-link:hover i {
    color: var(--text-white) !important;
    transform: scale(1.1);
}

.topbar-social {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.topbar-social:hover {
    background: var(--text-white);
    color: var(--primary) !important;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.topbar-social::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--text-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

/* ===============================================
   MODERN HERO SECTION - Advanced Design
   =============================================== */

.hero-modern {
    background: var(--bg-gradient);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.geometric-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 5%;
    animation-delay: 3s;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 1s;
}

.hero-content {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-btn-primary {
    background: var(--secondary);
    border: 2px solid var(--secondary);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.hero-btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    transform: translateY(-3px);
}

.hero-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 576px) {
    .hero-trust-indicators {
        flex-direction: row;
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .hero-trust-indicators {
        justify-content: flex-start;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: var(--text-white);
    transform: translateY(-2px);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: var(--secondary);
    color: var(--text-white);
    transform: scale(1.1);
}

.hero-booking-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.hero-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
}

.booking-header-home {
    text-align: center;
    margin-bottom: 30px;
}

.booking-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.booking-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

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

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25);
    outline: none;
}

.booking-submit {
    background: var(--bg-gradient);
    border: none;
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===============================================
   FOOTER MODERN STYLES - Theme Color Integration
   =============================================== */

.footer-modern {
    background: var(--bg-gradient) !important;
    color: var(--text-white) !important;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.footer-logo-icon {
    color: var(--secondary) !important;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.footer-logo-text {
    color: var(--text-white) !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
}

.footer-heading {
    color: var(--text-white) !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--secondary) !important;
    transform: translateX(5px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: var(--secondary);
    color: var(--text-white) !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.footer-social-link::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--text-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

.footer-email-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-white) !important;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-email-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25) !important;
    outline: none;
}

.footer-subscribe-btn {
    background: var(--secondary) !important;
    border: 2px solid var(--secondary) !important;
    color: var(--text-white) !important;
    /* border-radius: 8px; */
    padding: 10px 20px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-subscribe-btn:hover {
    background: var(--secondary-dark) !important;
    border-color: var(--secondary-dark) !important;
    color: var(--text-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
}

/* ===============================================
   COMPREHENSIVE BUTTON COLOR FIXES
   =============================================== */

/* Fix all button hover borders and colors */
.btn:hover {
    border-color: inherit !important;
}

.btn-primary:hover {
    border-color: var(--primary-dark) !important;
    background: var(--primary-dark) !important;
}

.btn-secondary:hover {
    border-color: var(--secondary-dark) !important;
    background: var(--secondary-dark) !important;
}

.btn-success:hover {
    border-color: var(--accent-dark) !important;
    background: var(--accent-dark) !important;
}

.btn-warning:hover {
    border-color: var(--secondary-dark) !important;
    background: var(--secondary-dark) !important;
}

.btn-outline-primary:hover {
    border-color: var(--primary) !important;
    background: var(--primary) !important;
}

.btn-outline-secondary:hover {
    border-color: var(--secondary) !important;
    background: var(--secondary) !important;
}

.btn-outline-light:hover {
    border-color: var(--text-white) !important;
    background: var(--text-white) !important;
    color: var(--primary) !important;
}

/* Fix any remaining hardcoded button colors */
.btn[style*="border-color"] {
    border-color: inherit !important;
}

.btn[style*="background-color"] {
    background-color: inherit !important;
}

/* Override any inline button styles */
.btn[style*="color:"] {
    color: inherit !important;
}

/* Fix Bootstrap button variants */
.btn-light:hover {
    background: var(--gray-light) !important;
    border-color: var(--gray-light) !important;
    color: var(--text-primary) !important;
}

.btn-dark:hover {
    background: var(--gray-dark) !important;
    border-color: var(--gray-dark) !important;
}

/* Fix outline button variants */
.btn-outline-success:hover {
    border-color: var(--success) !important;
    background: var(--success) !important;
    color: var(--text-white) !important;
}

.btn-outline-warning:hover {
    border-color: var(--secondary) !important;
    background: var(--secondary) !important;
    color: var(--text-white) !important;
}

.btn-outline-danger:hover {
    border-color: #dc3545 !important;
    background: #dc3545 !important;
    color: var(--text-white) !important;
}

/* Fix any remaining hardcoded colors in buttons */
.btn[style*="#007bff"] {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn[style*="#28a745"] {
    background: var(--success) !important;
    border-color: var(--success) !important;
}

.btn[style*="#ffc107"] {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn[style*="#dc3545"] {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
}

/* Fix button focus states */
.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25) !important;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25) !important;
}

.btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25) !important;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start - Standardized Design ***/
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.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 ease;
}

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

.btn-square {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
}

.btn-sm-square {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0;
}

.btn-md-square {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
}

.btn-lg-square {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 0;
}

/* Primary Button - Standard Design */
.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border-color: var(--primary-dark);
}

/* Secondary Button - Standard Design */
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Outline Button - Standard Design */
.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Success Button - Standard Design */
.btn-success {
    background: var(--success);
    color: var(--text-white);
    border: 2px solid var(--success);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: var(--accent-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border-color: var(--accent-dark);
}

/* Warning Button - Standard Design */
.btn-warning {
    background: var(--secondary);
    color: var(--text-white);
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-warning:hover {
    background: var(--secondary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    border-color: var(--secondary-dark);
}

/* Small Button Variants */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1.125rem;
    border-radius: 12px;
}

/* Rounded Pill Buttons */
.btn.rounded-pill {
    border-radius: 50px;
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--primary);
    color: var(--secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bg-secondary) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--primary) !important;
        color: var(--primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid var(--border);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bg-secondary) !important;
    }

    .navbar-light .navbar-nav .nav-link {
        color: var(--text-dark);
        font-size: 15px;
        font-weight: 500;
        outline: none;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary);
        transform: translateY(-2px);
    }

    /* Removed decorative ::before and ::after pseudo-elements */
    /* .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 100%;
    } */
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}

/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--primary);

}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}

.counter-facts .counter h3 {
    color: var(--primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}

/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-secondary);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--secondary) !important;
}

/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bg-secondary);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bg-secondary);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--secondary);
}

/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}

/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bg-secondary);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--primary);
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--secondary) !important;
}

/*** copyright end ***/

/* ===============================================
   COMPONENT STYLES - Moved from individual components
   =============================================== */

/* Hero Section Styles */
.hero-header {
    background: var(--hero-bg);
    color: var(--text-white);
}

.hero-title {
    /* background: linear-gradient(45deg, var(--text-white), var(--secondary)); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    color: var(--text-white) !important;
}

.hero-description {
    color: var(--text-white);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.shadow-2xl {
    box-shadow: var(--shadow-lg);
}

.hero-form-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(30, 58, 138, 0.05));
}

/* About Section Styles */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image-wrapper img {
    transition: transform 0.3s ease;
}

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

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(30, 58, 138, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .about-overlay {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Services Section Styles */
.service-card-enhanced {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* ===============================================
   COUNTRIES SECTION - Modern Design
   =============================================== */

/* Countries Section Modern */
.countries-section-modern {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Country Card Modern */
.country-card-modern {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.country-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Image Box */
.country-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.country-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.country-card-modern:hover .country-img {
    transform: scale(1.08);
    /* slight zoom on hover */
}

.country-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0.8;
}

/* Top Badge */
.country-top-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

/* Content Box */
.country-content-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.country-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* Hover Lift Helper */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===============================================
   TESTIMONIALS SECTION - Modern Design
   =============================================== */

.testimonials-section-modern {
    background: #f8f9fa;
    /* Slightly darker than pure white */
}

/* Testimonial Card Modern */
.testimonial-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow default */
    transition: all 0.4s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-rating .fas {
    font-size: 0.9rem;
    margin-right: 2px;
}

.text-muted-light {
    color: #e0e0e0 !important;
}

.author-img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--bg-light);
}

/* Trust Stats */
.trust-indicators-box {
    margin-top: 20px;
}

.border-end-md {
    border-right: 1px solid #eee;
}

@media (max-width: 768px) {
    .border-end-md {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
}

/* Contact Section Styles */
.contact-form-enhanced {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.contact-form .form-floating {
    margin-bottom: 20px;
}

.contact-form .form-control {
    border: 2px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.contact-info-enhanced {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    height: 100%;
}

.info-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.social-media {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    color: var(--text-white);
}

/* Features Section Styles */
.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Pricing Section Styles */
.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===============================================
   TEAM SECTION - Modern Design
   =============================================== */

.team-section-modern {
    background: var(--bg-light);
}

.team-card-modern {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Image Wrapper */
.team-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-modern:hover .team-img-wrapper img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-img-wrapper img {
    /* Optional: start slightly desaturated if desired, else remove filter */
    filter: grayscale(20%);
}

/* Social Overlay */
.team-social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--bs-primary-rgb), 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.team-card-modern:hover .team-social-overlay {
    opacity: 1;
}

.social-links-circle {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.team-card-modern:hover .social-links-circle {
    transform: translateY(0);
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

/* Content Box */
.team-content-box {
    padding: 25px 20px;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Blog Section Styles */
.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-category {
    background: var(--primary);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem !important;
    }

    .floating-shapes .shape {
        display: none;
    }

    .container-fluid {
        padding: 2rem 1rem;
    }

    .service-card-enhanced,
    .country-card-enhanced,
    .testimonial-card-enhanced,
    .contact-form-enhanced,
    .contact-info-enhanced {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .feature-icon,
    .service-icon-enhanced {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.btn-loading {
    position: relative;
    overflow: hidden;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.animate__animated {
    animation-duration: 1s;
}

/* ===============================================
   ADDITIONAL COMPONENT STYLES - From individual components
   =============================================== */

/* About Component Styles */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image-wrapper img {
    transition: transform 0.3s ease;
}

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

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(30, 58, 138, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .about-overlay {
    opacity: 1;
}

.stats-card {
    background: var(--bg-gradient);
    color: var(--text-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.stats-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stats-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Blog Component Styles */
.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
}

.blog-date .day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.blog-date .month {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
}

.blog-content h5 a:hover {
    color: var(--primary) !important;
}

/* Features Component Styles */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-stats {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

/* Pricing Component Styles */
.pricing-card-featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-price {
    margin: 30px 0;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.pricing-features {
    margin: 30px 0;
}

.pricing-features li {
    font-size: 0.95rem;
}

/* Team Component Styles */
.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(30, 58, 138, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

.team-content {
    padding: 25px 20px;
}

.team-stat {
    text-align: center;
}

/* Advanced Team Component Styles */
.team-card-advanced {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: 1px solid var(--card-border);
}

.team-card-advanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.team-image-advanced {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: var(--bg-gradient);
}

.team-image-advanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(20%);
}

.team-card-advanced:hover .team-image-advanced img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-overlay-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(30, 58, 138, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.team-card-advanced:hover .team-overlay-advanced {
    opacity: 1;
}

.team-social-advanced {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.social-link-advanced:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link-advanced::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

.team-quote {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

.team-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.badge-text {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.team-content-advanced {
    padding: 30px 25px;
    background: var(--card-bg);
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 20px;
}

.team-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.team-rating i {
    color: var(--secondary);
    font-size: 0.875rem;
}

.rating-text {
    margin-left: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.875rem;
}

.team-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Stats Section */
.team-stats-section {
    background: var(--bg-gradient);
    border-radius: 25px;
    padding: 40px 30px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.team-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

/* ===============================================
   SERVICES SECTION - Modern Design
   =============================================== */

/* Services Section Modern */
.services-section-modern {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Service Badge */
.section-badge {
    display: inline-block;
}

.section-badge .badge-text {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--bs-primary-rgb, 5, 150, 105), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Title & Desc */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Item Modern */
.service-item-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    /* Center align text */
}

.service-item-modern:hover {
    transform: translateY(-5px);
    /* Decreased transition */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Adjusted shadow */
    border-color: transparent;
}

/* Service Icon Box */
.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(var(--bs-primary-rgb, 5, 150, 105), 0.08);
    /* Using primary color with opacity */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    margin: 0 auto 24px auto;
    /* Center icon and add bottom margin */
}

.service-item-modern:hover .service-icon-box {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.service-icon-box i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-item-modern:hover .service-icon-box i {
    color: var(--white);
}

/* Service Content */
.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-item-modern:hover .service-title {
    color: var(--primary);
}

.service-text {
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Service Features List */
.service-features-list {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.service-features-list li i {
    font-size: 1rem;
}

/* Hover Overlay Effect */
.service-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(var(--bs-primary-rgb, 5, 150, 105), 0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-item-modern:hover .service-hover-overlay {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .service-item-modern {
        padding: 30px 20px;
    }

    .service-icon-box {
        width: 60px;
        height: 60px;
    }

    .service-icon-box i {
        font-size: 1.75rem;
    }
}

/* Responsive Design for Advanced Team */
@media (max-width: 768px) {
    .team-image-advanced {
        height: 250px;
    }

    .team-content-advanced {
        padding: 20px 15px;
    }

    .team-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .team-stats-section {
        padding: 30px 20px;
    }

    .team-stat-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ===============================================
   STANDARDIZED HOVER EFFECTS - Universal Design
   =============================================== */

/* Universal Card Hover Effect */
.card-hover-effect {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-hover-effect:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Universal Image Hover Effect */
.image-hover-effect {
    transition: all 0.3s ease;
    overflow: hidden;
}

.image-hover-effect img {
    transition: all 0.3s ease;
}

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

/* Universal Icon Hover Effect */
.icon-hover-effect {
    transition: all 0.3s ease;
}

.icon-hover-effect:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Universal Link Hover Effect */
.link-hover-effect {
    transition: all 0.3s ease;
    position: relative;
}

.link-hover-effect::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.link-hover-effect:hover::after {
    width: 100%;
}

.link-hover-effect:hover {
    color: var(--primary) !important;
}

/* Universal Social Link Hover Effect */
.social-hover-effect {
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-hover-effect:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Universal Overlay Hover Effect */
.overlay-hover-effect {
    position: relative;
    overflow: hidden;
}

.overlay-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.overlay-hover-effect:hover::before {
    opacity: 0.9;
}

/* Universal Badge Hover Effect */
.badge-hover-effect {
    transition: all 0.3s ease;
    position: relative;
}

.badge-hover-effect:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Universal Stats Hover Effect */
.stats-hover-effect {
    transition: all 0.3s ease;
}

.stats-hover-effect:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.05);
}

/* Universal Form Input Hover Effect */
.form-hover-effect {
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.form-hover-effect:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Universal Section Hover Effect */
.section-hover-effect {
    transition: all 0.3s ease;
}

.section-hover-effect:hover {
    background: rgba(59, 130, 246, 0.02);
}

/* Universal Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Currency Selector Styles */
.currency-selector {
    position: relative;
    display: inline-block;
}

.currency-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--bs-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.currency-btn:hover,
.currency-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--bs-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.currency-btn i.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.currency-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.currency-code {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Modal-style Currency Dropdown */
.currency-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.currency-modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
}

.currency-modal-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.currency-modal-header h6 {
    font-weight: 600;
    color: var(--bs-dark);
    margin: 0;
}

.currency-modal-header .btn-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--bs-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.currency-modal-header .btn-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--bs-dark);
}

.currency-modal-body {
    padding: 8px 0;
    max-height: 60vh;
    overflow-y: auto;
}

.currency-modal-item {
    width: 100%;
    padding: 12px 24px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.currency-modal-item:hover {
    background: rgba(var(--bs-primary-rgb), 0.1);
}

.currency-modal-item.active {
    background: rgba(var(--bs-primary-rgb), 0.15);
    color: var(--bs-primary);
    font-weight: 600;
}

.currency-item {
    padding: 8px 12px;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: block;
    font-size: 14px;
}

.currency-item:hover {
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.currency-item.active {
    background: rgba(var(--bs-primary-rgb), 0.15);
    color: var(--bs-primary);
    font-weight: 600;
}

.currency-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.currency-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.currency-symbol {
    font-weight: 700;
    font-size: 14px;
    color: var(--bs-primary);
}

.currency-name {
    font-size: 13px;
    color: var(--bs-dark);
    font-weight: 500;
}

.currency-item .currency-code {
    font-size: 11px;
    font-weight: 600;
    color: var(--bs-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure topbar doesn't interfere with dropdown */
.topbar-modern {
    position: relative;
    z-index: 100;
    overflow: visible;
}

/* Ensure the topbar container allows overflow */
.topbar-modern .container-fluid {
    overflow: visible;
}

/* Ensure the row and column allow overflow */
.topbar-modern .row,
.topbar-modern .col-lg-7 {
    overflow: visible;
}

/* Force dropdown to appear above everything */
.currency-dropdown-wrapper {
    z-index: 99999 !important;
}

/* Ensure no parent containers clip the dropdown */
.col-lg-7,
.d-flex,
.justify-content-end {
    overflow: visible !important;
}

/* Responsive Currency Selector */
@media (max-width: 768px) {
    .currency-selector {
        margin-bottom: 10px;
    }

    .currency-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .currency-dropdown-wrapper {
        right: 0;
        left: auto;
    }

    .currency-item {
        padding: 10px 14px;
    }

    .currency-name {
        font-size: 13px;
    }

    .currency-symbol {
        font-size: 14px;
    }
}

/* Premium Sort Controls */
.premium-sort-controls {
    background: linear-gradient(135deg, var(--bs-white) 0%, #f8f9fa 100%);
    border: 1px solid var(--bs-border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.premium-sort-controls::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 16px 16px 0 0;
}

.sort-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bs-border-color);
}

.sort-header i {
    color: var(--bs-primary);
    font-size: 16px;
}

.sort-label {
    font-weight: 600;
    color: var(--bs-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sort-options-premium {
    display: flex;
    gap: 20px;
    align-items: end;
}

.sort-field {
    flex: 1;
    min-width: 0;
}

.sort-field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--bs-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.sort-select-premium {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bs-border-color);
    border-radius: 10px;
    background: var(--bs-white);
    color: var(--bs-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    appearance: none;
    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: 40px;
}

.sort-select-premium:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
    transform: translateY(-1px);
}

.sort-select-premium:hover {
    border-color: var(--bs-primary);
    transform: translateY(-1px);
}

.sort-direction-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.direction-buttons {
    display: flex;
    gap: 4px;
    background: var(--bs-light);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--bs-border-color);
}

.direction-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: var(--bs-secondary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.direction-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 ease;
}

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

.direction-btn:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.direction-btn.active {
    background: var(--bs-primary);
    color: var(--bs-white);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
    transform: translateY(-1px);
}

.direction-btn i {
    font-size: 14px;
}

.direction-btn span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Sort Controls */
@media (max-width: 768px) {
    .premium-sort-controls {
        padding: 16px;
        border-radius: 12px;
    }

    .sort-options-premium {
        flex-direction: column;
        gap: 16px;
    }

    .sort-direction-premium {
        align-items: stretch;
    }

    .direction-buttons {
        justify-content: center;
    }

    .direction-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .premium-sort-controls {
        padding: 12px;
    }

    .sort-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .sort-label {
        font-size: 12px;
    }

    .sort-select-premium {
        padding: 10px 14px;
        font-size: 13px;
    }

    .direction-btn {
        padding: 6px 8px;
        font-size: 11px;
    }

    .direction-btn span {
        display: none;
    }
}



.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price-left {
    flex: 1;
}

.price-separator {
    color: #6c757d;
    font-weight: 300;
    margin: 0 15px;
    font-size: 18px;
}

.price-right {
    flex: 1;
    text-align: right;
}

.price-actions {
    width: 100%;
}

.btn-block {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* Visa Listing Page Styles */
.visa-listing-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.visa-hero-section {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.visa-hero-section::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)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.visa-hero-content {
    position: relative;
    z-index: 2;
}

.visa-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.visa-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.visa-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.visa-hero-image {
    position: relative;
    z-index: 2;
}

.visa-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.visa-search-section {
    padding: 40px 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    position: relative;
    z-index: 3;
    border-radius: 20px 20px 0 0;
}

.visa-search-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.visa-search-form .form-label {
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 8px;
}

.visa-search-form .form-control,
.visa-search-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.visa-search-form .form-control:focus,
.visa-search-form .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.sort-direction-buttons {
    display: flex;
    gap: 10px;
}

.sort-direction-buttons .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sort-direction-buttons .btn.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.visa-results-section {
    padding: 60px 0;
}

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

.results-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 1rem;
}

.results-subtitle {
    font-size: 1.1rem;
    color: var(--bs-secondary);
    margin-bottom: 0;
}

/* Visa Cards */
.visa-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.visa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--bs-primary);
}

.visa-card-header {
    padding: 25px 25px 20px;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.country-flag {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e9ecef;
    flex-shrink: 0;
}

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

.country-details {
    flex: 1;
}

.country-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.visa-type {
    font-size: 0.9rem;
    color: var(--bs-primary);
    font-weight: 600;
}

.visa-badge .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
}

.visa-card-body {
    padding: 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.visa-description {
    margin-bottom: 20px;
}

.visa-description p {
    color: var(--bs-secondary);
    line-height: 1.6;
    margin: 0;
}

.visa-details {
    margin-top: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--bs-secondary);
}

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

.detail-item i {
    width: 16px;
    text-align: center;
}

/* Visa Pricing (reusing flight pricing styles) */
.visa-pricing {
    border-top: 1px solid #e9ecef;
    padding: 20px;
}


.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    color: var(--bs-secondary);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--bs-secondary);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .visa-hero-title {
        font-size: 2.5rem;
    }

    .visa-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .visa-search-form .row {
        margin-bottom: 1rem;
    }

    .sort-direction-buttons {
        flex-direction: column;
    }

    .visa-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .country-info {
        width: 100%;
    }
}

/* ===============================================
   ADMIN PANEL COMPONENTS
   =============================================== */

/* Panel Header Component */
.header-profile .nav-link {
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-profile .nav-link:hover {
    background-color: rgba(108, 117, 125, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.user-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-profile .dropdown-menu {
    min-width: 280px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 10px;
}

.header-profile .dropdown-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 16px 16px 0 0;
}

.header-profile .dropdown-header h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.header-profile .dropdown-header small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.header-profile .dropdown-divider {
    margin: 0;
    border-color: #e9ecef;
}

.header-profile .dropdown-item {
    padding: 12px 20px;
    border: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.header-profile .dropdown-item:hover {
    background-color: var(--bg-secondary);
    color: var(--primary);
    transform: translateX(5px);
}

.header-profile .dropdown-item svg {
    transition: all 0.2s ease;
}

.header-profile .dropdown-item:hover svg {
    transform: scale(1.1);
}

.header-profile .dropdown-item.ai-icon {
    display: flex;
    align-items: center;
}

.header-profile .dropdown-item.ai-icon svg {
    flex-shrink: 0;
}

/* Notification Dropdown Component */
.notification_dropdown .nav-link {
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #6c757d;
}

.notification_dropdown .nav-link:hover {
    background-color: rgba(108, 117, 125, 0.1);
    color: #495057;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.notification-dropdown {
    min-width: 380px;
    max-width: 420px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow: hidden;
    margin-top: 10px;
}

.notification-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    position: relative;
}

.notification-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    right: 20px;
    height: 20px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
}

.notification-header h6 {
    font-weight: 600;
    font-size: 16px;
}

.unread-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.notification-list::-webkit-scrollbar {
    width: 4px;
}

.notification-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.notification-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: var(--bg-secondary);
    transform: translateX(5px);
}

.notification-item.unread {
    background: rgba(var(--bs-primary-rgb, 5, 150, 105), 0.05);
    border-left: 4px solid var(--primary);
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 16px;
}

.notification-icon.primary {
    background: var(--primary);
    color: var(--white);
}

.notification-icon.success {
    background: var(--success);
    color: var(--white);
}

.notification-icon.warning {
    background: var(--warning, #f59e0b);
    color: var(--white);
}

.notification-icon.info {
    background: var(--info, #3b82f6);
    color: var(--white);
}

.notification-icon.danger {
    background: var(--danger, #ef4444);
    color: var(--white);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.3;
}

.notification-message {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.4;
}

.notification-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-time {
    font-size: 11px;
    color: #95a5a6;
    font-weight: 500;
}

.unread-indicator {
    background: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.notification-action {
    margin-left: 12px;
    flex-shrink: 0;
}

.notification-action .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.empty-notifications {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-notifications h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #7f8c8d;
}

.empty-notifications p {
    font-size: 14px;
    margin: 0;
    opacity: 0.7;
}

.notification-footer {
    background: var(--bg-secondary);
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-footer .btn {
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
}

.notification-footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--primary);
}

.notification-footer .btn-outline-light:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.notification-footer .btn-light {
    background: var(--white);
    border-color: var(--border);
    color: var(--text-primary);
}

.notification-footer .btn-light:hover {
    background: var(--bg-secondary);
    border-color: var(--border);
}

/* ===============================================
   AGENT PORTAL COMPONENTS
   =============================================== */

/* Agent Auth Layout */
.auth-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.auth-header {
    background: var(--primary);
    color: var(--white);
    border-radius: 1rem 1rem 0 0;
    padding: 2rem;
    text-align: center;
}

/* Responsive adjustments for Admin Panel */
@media (max-width: 768px) {
    .header-profile .dropdown-menu {
        min-width: 260px;
        max-width: 90vw;
    }

    .header-profile .dropdown-header {
        padding: 16px;
    }

    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .user-avatar-large {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .notification-dropdown {
        min-width: 320px;
        max-width: 90vw;
    }

    .notification-item {
        padding: 12px 16px;
    }

    .notification-header {
        padding: 16px;
    }

    .notification-footer {
        padding: 12px 16px;
        flex-direction: column;
        gap: 8px;
    }

    .notification-footer .btn {
        width: 100%;
    }
}

/* ===============================================
   HERO SECTION - Premium Modern Design
   =============================================== */

/* Hero Container */
.hero-modern {
    background: var(--primary);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Advanced Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation: float 25s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation: float 18s ease-in-out infinite reverse;
}

.shape-5 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation: float 22s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particle-float 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 50%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-btn-primary {
    background: var(--white) !important;
    color: var(--primary) !important;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: var(--primary) !important;
}

.hero-btn-secondary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: var(--white) !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-3px);
    color: var(--white) !important;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Hero Booking Card - Simple & Modern */
.hero-booking-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.booking-header-home {
    margin-bottom: 25px;
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.booking-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Booking Form - Clean & Simple */

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 12px; */
    margin-bottom: 18px;
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 0.875rem;
    display: block;
}

.booking-form .form-select,
.booking-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: var(--white);
}

.booking-form .form-select:focus,
.booking-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb, 5, 150, 105), 0.08);
}

.booking-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary) !important;
    color: var(--white) !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.booking-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb, 5, 150, 105), 0.25);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-booking-card {
        padding: 28px;
        margin-top: 40px;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 15px;
    }

    .hero-booking-card {
        padding: 22px;
    }

    .booking-title {
        font-size: 1.3rem;
    }

    .shape-1,
    .shape-2 {
        width: 250px;
        height: 250px;
    }

    .shape-3,
    .shape-4,
    .shape-5 {
        width: 150px;
        height: 150px;
    }
}


/* ===============================================
   ABOUT SECTION - Modern Split-Screen Design
   =============================================== */

/* About Section Modern */
.about-section-modern {
    background: var(--white);
    overflow: hidden;
}

/* Content Wrapper */
.about-content-wrapper {
    background: var(--bg-light);
    min-height: 600px;
}

/* Badge */
.about-badge {
    display: inline-block;
}

.badge-text {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--bs-primary-rgb, 5, 150, 105), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Title */
.about-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Description */
.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

/* Features List */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.feature-check-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-list-content {
    flex: 1;
}

.feature-list-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.feature-list-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Visual Wrapper */
.about-visual-wrapper {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
}

.about-main-visual {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Experience Card */
.about-experience-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.experience-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-primary-rgb, 5, 150, 105), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.experience-years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

.experience-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Decorative Elements */
.about-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb, 5, 150, 105), 0.05);
    z-index: 1;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    right: 50px;
}

/* Stats Section Modern */
.stats-section-modern {
    background: var(--bg-light);
}

.stat-item-modern {
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.stat-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.stat-icon-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-modern i {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-value-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 15px 0 10px 0;
}

.stat-text-modern {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content-wrapper {
        min-height: auto;
        padding: 50px 40px !important;
    }

    .about-main-title {
        font-size: 2.25rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-main-visual {
        min-height: 400px;
    }

    .about-experience-card {
        position: relative;
        margin: -40px auto 50px auto;
        /* Centered horizontally */
        padding: 20px;
        z-index: 20;
        max-width: 90%;
        /* Ensure it doesn't touch edges */
        width: fit-content;
    }

    /* Ensure visual wrapper allows content to expand */
    .about-visual-wrapper {
        min-height: auto;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about-content-wrapper {
        padding: 40px 25px !important;
    }

    .about-main-title {
        font-size: 1.875rem;
    }

    .feature-list-item {
        gap: 15px;
    }

    .feature-check-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .feature-list-title {
        font-size: 1rem;
    }

    .stat-value-modern {
        font-size: 2rem;
    }

    .about-main-visual {
        min-height: 350px;
    }
}

@media (max-width: 575px) {
    .about-content-wrapper {
        padding: 30px 20px !important;
    }

    .about-main-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.95rem;
    }
}


/* Fallback Pattern for About Visual */
.about-pattern-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb, 5, 150, 105), 0.05) 0%, rgba(var(--bs-primary-rgb, 5, 150, 105), 0.1) 100%);
}

.pattern-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px;
}

.pattern-icon {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: float-icon 3s ease-in-out infinite;
}

.pattern-icon:nth-child(1) {
    animation-delay: 0s;
}

.pattern-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.pattern-icon:nth-child(3) {
    animation-delay: 1s;
}

.pattern-icon:nth-child(4) {
    animation-delay: 1.5s;
}

.pattern-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.pattern-icon:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {
    .pattern-icon-grid {
        gap: 20px;
        padding: 40px 20px;
    }

    .pattern-icon {
        width: 80px;
        height: 80px;
    }

    .pattern-icon i {
        font-size: 2rem;
    }
}

/* Custom Stats Styling */
.stat-item {
    transition: transform 0.3s ease;
    padding: 10px;
}

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

.trust-stat {
    padding: 15px;
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-3px);
    background-color: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 10px;
}

.border-end-md {
    border-right: 1px solid #dee2e6;
}

@media (max-width: 768px) {
    .border-end-md {
        border-right: none;
    }
}

/* Footer & Contact Enhancements */
.footer-modern {
    background: #1a1a1a;
    color: #b0b0b0;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--primary-color, #0d6efd);
    padding-left: 5px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--primary-color, #0d6efd);
    transform: translateY(-3px);
}

.contact-form-enhanced {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-enhanced {
    background: var(--primary-color, #0d6efd);
    color: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h6 {
    color: #fff;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

.social-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: #fff;
    color: var(--primary-color, #0d6efd);
}

/* Newsletter Styling */
.footer-email-input {
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 10px 20px;
    flex-grow: 1;
    margin-right: 10px;
}

.footer-email-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color, #0d6efd);
    color: #fff;
    outline: none;
}

.footer-subscribe-btn {
    border-radius: 50px;
    padding: 10px 25px;
    background: var(--primary-color, #0d6efd);
    border: none;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.footer-subscribe-btn:hover {
    background: #fff;
    color: var(--primary-color, #0d6efd);
}

/* Theme Alignment & Fixes (Green Theme) */
.footer-modern {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.footer-heading {
    color: var(--white) !important;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-link:hover {
    color: var(--white) !important;
    padding-left: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.contact-info-enhanced {
    background: var(--primary) !important;
}

/* Newsletter Layout Fix */
.footer-modern .d-flex {
    flex-wrap: nowrap !important;
}

.footer-email-input {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: var(--white) !important;
    min-width: 0;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-subscribe-btn {
    background: var(--dark) !important;
    color: var(--white) !important;
    white-space: nowrap;
    min-width: fit-content;
    height: auto;
}

.footer-subscribe-btn:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
}

/* Scroll to Top Fix */
#back-to-top {
    background: var(--dark) !important;
    color: var(--white) !important;
    bottom: 30px;
    right: 30px;
    z-index: 9999 !important;
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px !important;
}

#back-to-top:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
    transform: translateY(-5px);
}

/* Contact Card Visibility Fixes */
.contact-info-enhanced h5,
.contact-info-enhanced h6,
.contact-info-enhanced .fw-bold {
    color: #ffffff !important;
}

.contact-info-enhanced .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-info-enhanced .social-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info-enhanced .social-btn:hover {
    background: #ffffff;
    color: var(--primary) !important;
    border-color: #ffffff;
}