:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
}




/* Hero Carousel */
.carousel {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.carousel-item {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.carousel-item:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1501594907352-04cda38ebc29');
}

.carousel-item:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325');
}

.carousel-item:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1464037866556-6812c9d1c72e');
}

.carousel-caption {
    bottom: 30%;
    text-align: left;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Section Styling */
.section-header h2 {
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-header p {
    color: #777;
}

/* Continent Tabs */
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    color: #495057;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 3px solid var(--primary-color);
}

.nav-tabs .nav-link:hover:not(.active) {
    border-bottom: 3px solid rgba(52, 152, 219, 0.3);
}

/* Search Box */
#searchInput {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    border: 1px solid #dee2e6;
}

#searchInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.input-group-text {
    border-radius: 25px 0 0 25px;
    background-color: white;
    border-right: none;
}

/* Country Cards */
.country-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Visa Type Badges */
.badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Star Ratings */
.fa-star {
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
    font-size: large !important;
}

.country-card img {
    height: 200px;
    object-fit: cover;
}

.country-card .card-body {
    padding: 1.5rem;
}

.country-card .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.country-card .card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Services Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card i {
    color: var(--primary-color);
}

/* Contact Form */
#contactForm .form-control,
#contactForm .form-select {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel,
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-caption {
        bottom: 20%;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}
.book-btn {
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.book-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
.fa-calendar-check{
    color: white !important;
    font-size: large !important;
}
.fa-search{
    color: #777 !important;
}
.fa-star-half-alt{
    font-size: large !important;
}
.rating{
    color: #f9c74f !important;
}
.cta-background {
    background:whitesmoke;
}