/* Chad eVisa Website Styles */
/* Chad Flag Colors: Blue (#002868), Yellow (#FECB00), Red (#CE1126) */

/* Root Variables */
:root {
    --chad-blue: #002868;
    --chad-yellow: #FECB00;
    --chad-red: #CE1126;
    --chad-blue-light: #1a4480;
    --chad-blue-dark: #001a4d;
    --chad-yellow-light: #ffdc33;
    --chad-red-light: #e63946;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: transparent;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--chad-blue), var(--chad-blue-light));
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .contact-info span,
.top-bar .language-selector span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.top-bar i {
    margin-right: 5px;
    color: var(--chad-yellow);
}

/* Main Navigation */
.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    /*padding: 10px 0;*/
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    text-decoration: none;
}

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

.flag-icon {
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, var(--chad-blue) 33.33%, var(--chad-yellow) 33.33%, var(--chad-yellow) 66.66%, var(--chad-red) 66.66%);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--chad-blue);
    margin: 0;
    font-weight: 700;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 2px;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-nav .nav-link:hover {
    background-color: var(--chad-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 5px;
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--chad-blue);
    color: var(--white);
}

.btn-apply {
    background: linear-gradient(135deg, var(--chad-red), var(--chad-red-light));
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(206, 17, 38, 0.3);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 17, 38, 0.4);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--chad-blue) 0%, var(--chad-blue-light) 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/zakouma_national_park.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.hero-feature i {
    color: var(--chad-yellow);
    font-size: 1.2rem;
}

/* Quick Apply Section */
.quick-apply {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-hover);
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.quick-apply h3 {
    color: var(--chad-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.visa-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 2rem;
}

.visa-type-card {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 20px;
    /* text-align: center; */
    cursor: pointer;
    transition: var(--transition);
}

.visa-type-card:hover,
.visa-type-card.active {
    border-color: var(--chad-blue);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.visa-type-card i {
    font-size: 2rem;
    color: var(--chad-red);
    margin-bottom: 10px;
}

.visa-type-card h5 {
    color: var(--chad-blue);
    margin-bottom: 5px;
}

.visa-type-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Statistics Section */
.stats-section {
    background: var(--bg-light);
    padding: 60px 0;
}

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

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--chad-blue), var(--chad-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--chad-red);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--chad-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--chad-yellow), var(--chad-yellow-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    color: var(--chad-blue);
    font-size: 2rem;
}

.feature-card h4 {
    color: var(--chad-blue);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Tourism Section */
.tourism-section {
    background: linear-gradient(135deg, var(--chad-blue) 0%, var(--chad-blue-light) 100%);
    color: var(--white);
    padding: 50px 0;
    position: relative;
}

.tourism-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/ennedi_plateau.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.tourism-content {
    position: relative;
    z-index: 2;
}

.tourism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 1rem;
}

.tourism-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

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

.tourism-card i {
    color: var(--chad-yellow);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tourism-card h4 {
    margin-bottom: 15px;
}

.tourism-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 1rem;
}

.process-step {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    top:-45px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--chad-red), var(--chad-red-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-step i {
    color: var(--chad-blue);
    font-size: 2.5rem;
    margin: 20px 0;
}

.process-step h4 {
    color: var(--chad-blue);
    margin-bottom: 15px;
}

/* Footer */
.footer-main {
    background: linear-gradient(135deg, var(--chad-blue-dark) 0%, var(--chad-blue) 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-section h5 {
    color: var(--chad-yellow);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h5 i {
    color: var(--chad-yellow);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--chad-yellow);
    padding-left: 5px;
}

.footer-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    color: var(--chad-yellow);
    font-size: 1.2rem;
}

.stat-item span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--chad-yellow);
    margin-top: 3px;
    width: 16px;
}

.emergency-contacts {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.emergency-contacts h6 {
    color: var(--chad-yellow);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--chad-yellow);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--chad-red), var(--chad-red-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(206, 17, 38, 0.3);
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(206, 17, 38, 0.4);
}

/* Content Pages */
.page-header {
    background: linear-gradient(135deg, var(--chad-blue) 0%, var(--chad-blue-light) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
}

.content-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-card h2 {
    color: var(--chad-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card h2 i {
    color: var(--chad-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .quick-apply {
        margin: 20px 0px;
        padding: 10px;
    }
    
    .visa-type-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stats-grid,
    .tourism-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar .contact-info span,
    .top-bar .language-selector span {
        margin-right: 10px;
        margin-bottom: 5px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 2px 0;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .page-header {
        padding: 20px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .stats-section,
    .features-section,
    .tourism-section,
    .process-section {
        padding: 25px 0 !important;
    }
    
    .footer-main {
        padding: 20px 0 15px;
    }
    
    .emergency-contacts .row > div {
        margin-bottom: 10px;
    }
    
    .footer-links-bottom a {
        margin-left: 10px;
        font-size: 0.9rem;
    }

    .visa-type-card .card-body {
        padding: 10px !important;
    }


    .requirement-item,
    .tourism-card ,
.stat-card ,
    .feature-card,
    .visa-type-card
    , .process-step,
    .content-card
    {
padding: 10px !important;

    }

    .feature-icon {
    width: 60px;
    height: 60px;
  
    margin: 0 auto 15px;
}

.feature-icon i {
    color: var(--chad-blue);
    font-size: 25px;
}

    .tourism-card i {
    color: var(--chad-yellow);
    font-size: 25px;
    margin-bottom: 15px;
}

.process-step i {
    color: var(--chad-blue);
    font-size: 25px;
    margin: 15px 0;
}
}

/* Print Styles */
@media print {
    .top-bar,
    .main-nav,
    .footer-main,
    .back-to-top {
        display: none;
    }
    
    .page-content {
        padding: 20px 0;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }


}



/* ===== FORM STYLES ===== */
.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 1rem;
    min-width: 120px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step-title {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
}

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

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.evisa-form .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.evisa-form .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.evisa-form .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.evisa-form .card-body {
    padding: 2rem;
}

.file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(30, 58, 138, 0.05);
}

.file-upload-area.file-selected {
    border-color: var(--success-color);
    background: rgba(34, 197, 94, 0.05);
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    color: #6c757d;
}

.file-upload-text i {
    color: var(--primary-color);
}

.fee-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.fee-breakdown {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

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

.fee-item.total {
    background: var(--primary-color);
    color: white;
}

.fee-amount {
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input:checked + label {
    color: var(--primary-color);
    font-weight: 600;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.destination-content {
    padding: 1rem;
}

.destination-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.destination-location {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.highlight-tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.destination-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.info-item {
    font-size: 0.875rem;
    color: #6c757d;
}

/* ===== CULTURAL CARDS ===== */
.cultural-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.cultural-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cultural-content {
    padding: 1rem;
}

.cultural-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: rgba(251, 191, 36, 0.1);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== ACTIVITY CARDS ===== */
.activity-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.activity-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.activity-icon i {
    font-size: 2rem;
    color: white;
}

.activity-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== FOOD CARDS ===== */
.food-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.food-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.food-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.food-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.food-content {
    padding: 1.5rem;
}

.food-description {
    color: #6c757d;
    margin-bottom: 1rem;
}

.food-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-tag {
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== CULTURE CARDS ===== */
.culture-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.culture-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.culture-content {
    padding: 1rem;
}

.culture-location {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* ===== FESTIVAL CARDS ===== */
.festival-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.festival-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.festival-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.festival-icon i {
    font-size: 2rem;
    color: white;
}

.festival-time {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.festival-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ===== CRAFT CARDS ===== */
.craft-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.craft-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.craft-image {
    height: 150px;
    overflow: hidden;
}

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

.craft-content {
    padding: 1rem;
}

.craft-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== REQUIREMENTS STYLES ===== */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.requirement-item {
    /*display: flex;*/
    /*align-items: flex-start;*/
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
    .note-card i{

        font-size: 1.5rem;
    color: #CE1126;  
    }
.requirement-item i{
    font-size: 1.5rem;
    color: #CE1126;
}
.requirement-icon i {
    font-size: 1.5rem;
    color: #CE1126;
}

.requirement-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== VISA TYPE CARDS ===== */
.visa-type-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.visa-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.visa-type-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    /* color: white; */
    padding: 1rem;
}

.visa-type-card .card-body {
    padding: 1rem;
}

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

.requirements-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

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

.visa-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.info-item {
    font-size: 0.875rem;
    color: #6c757d;
}

/* ===== CHECKLIST STYLES ===== */
.checklist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     padding: 1rem;
}

.checklist-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    /* color: white; */
  
}

.checklist-body {
   
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

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

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.checklist-item label {
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.checklist-footer {
    padding: 1rem;
    background: #f8f9fa;
    text-align: center;
}

/* ===== NOTE CARDS ===== */
.note-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.note-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 1.25rem;
    color: white;
}

.note-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== SECURITY FEATURES ===== */
.security-feature {
    padding: 1.5rem;
}

.security-feature h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== TIP ITEMS ===== */
.tip-item {
    padding: 1rem;
}

.tip-item h5 {
    margin-bottom: 1rem;
}

/* ===== MUSIC ITEMS ===== */
.music-item {
    padding: 1.5rem;
}

.music-item h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .progress-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .page-content {
    padding: 30px 0;
}
    .step {
        min-width: 80px;
    }
    
    .step-title {
        font-size: 0.75rem;
    }
    
    .evisa-form .card-body {
        padding: 1rem;
    }
    
    .file-upload-area {
        padding: 1rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .requirements-grid {
        gap: 1rem;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .visa-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .note-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .destination-highlights,
    .culture-highlights,
    .festival-features,
    .food-details {
        justify-content: center;
    }
    
    .payment-options {
        gap: 0.5rem;
    }
    
    .fee-item {
        padding: 0.75rem 1rem;
    }
.chart-container,
        .note-card{
            padding: 10px !important;
        }

}


/* ===== ENHANCED HEADER STYLES ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.contact-info {
    /* display: flex; */
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.contact-item a:hover {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
}

.processing-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.main-nav {
    background: white;
    /*padding: 1rem 0;*/
    border-bottom: 1px solid #e9ecef;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flag-icon {
    display: flex;
    flex-direction: column;
    width: 40px;
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flag-stripe {
    flex: 1;
}

.flag-stripe.blue {
    background: var(--primary-color);
}

.flag-stripe.yellow {
    background: var(--secondary-color);
}

.flag-stripe.red {
    background: var(--accent-color);
}

.brand-text {
    line-height: 1.2;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.brand-subtitle {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* ===== SEARCH FUNCTIONALITY ===== */
.search-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-form {
    position: relative;
}

.search-input {
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.btn-search {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #1e40af;
    transform: translateY(-50%) scale(1.05);
}

.btn-search i {
    color: white;
    font-size: 0.875rem;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.search-suggestions.show {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f1f3f4;
}

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

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-item i {
    color: var(--primary-color);
    width: 16px;
}

/* ===== MEGA MENU ===== */
.mega-dropdown .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mega-menu {
    min-width: 600px;
    padding: 2rem;
}

.mega-menu .dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.mega-menu .dropdown-item {
    padding: 0.5rem 0;
    color: #6c757d;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.mega-menu .dropdown-item:hover {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.mega-menu .dropdown-item i {
    color: var(--secondary-color);
    width: 20px;
}

/* ===== NAVIGATION ITEMS ===== */
.nav-link {
    color: #495057;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.25rem;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(30, 58, 138, 0.1);
}

.nav-link.btn-apply {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-left: 1rem;
}

.nav-link.btn-apply:hover {
    background: linear-gradient(135deg, #1e40af, #f59e0b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ===== DROPDOWN MENUS ===== */
.dropdown-menu {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #495057 !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
}

.dropdown-item i {
    color: var(--secondary-color);
    width: 20px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item {
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* ===== QUICK ACCESS TOOLBAR ===== */
.quick-access-toolbar {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.toolbar-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.toolbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.toolbar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.toolbar-item.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.toolbar-item.primary:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.toolbar-item i {
    font-size: 1.5rem;
}

.toolbar-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== CONTENT ORGANIZATION ===== */
.content-section {
    padding: 3rem 0;
}

.content-section.bg-light {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    gap: 2rem;
}

.content-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 1rem;*/
     font-size: 1.5rem;
}

.info-card i {
    font-size: 1.5rem;
    color: #CE1126;
}
.card-icon i {
    font-size: 1.5rem;
    color: #CE1126;
}
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

/* ===== TABLE STYLES ===== */
.data-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.table {
    margin: 0;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #f1f3f4;
    vertical-align: middle;
}

.table tbody tr:hover {
    background: rgba(30, 58, 138, 0.05);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== CHART CONTAINER ===== */
.chart-container {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===== CALL TO ACTION ENHANCEMENTS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    /* color: white; */
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta.primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-cta.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.btn-cta.secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE DESIGN ENHANCEMENTS ===== */
@media (max-width: 992px) {
    .mega-menu {
        min-width: auto;
        padding: 1rem;
    }
    
    .toolbar-items {
        gap: 1rem;
    }
    
    .toolbar-item {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .search-container {
        margin: 1rem 0;
        order: -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar-right {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .brand-title {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .toolbar-items {
        justify-content: space-around;
        gap: 0.5rem;
    }
    
    .toolbar-item {
        min-width: 80px;
        padding: 0.5rem;
    }
    
    .toolbar-item span {
        font-size: 0.75rem;
    }
.cta-section,
    .content-section {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .quick-access-toolbar {
        padding: 0.5rem 0;
    }
    
    .toolbar-items {
        gap: 0.25rem;
    }
    
    .toolbar-item {
        min-width: 70px;
        padding: 0.5rem 0.25rem;
    }
    
    .toolbar-item i {
        font-size: 1.25rem;
    }
    
    .search-input {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .btn-search {
        width: 35px;
        height: 35px;
    }
}

