:root {
    --primary-color: #2563eb;  /* Vibrant blue */
    --secondary-color: #f59e0b; /* Amber */
    --accent-color: #10b981;   /* Emerald */
    --dark-color: #1e293b;     /* Dark blue-gray */
    --light-color: #f8fafc;    /* Light gray */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;margin: 0;box-sizing: border-box;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: rgb(27, 9, 184);
}
/* navbar */
   /* Custom styles */
   .navbar {
    background-color: #f8f9fa;
}

.hero-section {
    background-color: #e9ecef;
    padding: 60px 0;
    text-align: center;
    margin-top: 20px;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #1e293b;
        padding: 20px;
        margin-top: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .navbar-toggler {
        border: none;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

.content-section {
    padding: 40px 0;
}
/* navbar */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(4, 6, 46, 0.85)), 
                url('img/fir.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    margin: -0;
    padding: 120px 0;
}

.navbar {
    background-color: var(--dark-color) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
    font-size: 1.5rem;
}
.navbar-toggler-icon{
    margin-top: -30px;
}
.navbar-brand i {
    color: var(--secondary-color);
    margin-left: 10px;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 60px;
    z-index: 1020;
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.why-choose-us {
    background-color: var(--light-color);
    padding: 80px 0;
}
.icon{
    color: #ffffff;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.testimonial-card .rating {
    color: var(--secondary-color);
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
    padding-left: 10px;
}

footer h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--secondary-color);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.cab-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.cab-image:hover {
    transform: scale(1.02);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(37, 99, 235, 0.25);
}

.price-tag {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.booking-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}


/* Form css */
/* Form css */

/* Booking Section Styles */
#booking {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

#booking::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    transform: skewY(-2deg);
    z-index: 1;
}

.booking-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    position: relative;
    z-index: 2;
    border-top: 5px solid #2563eb;
    transform: translateY(0);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.section-title {
    position: relative;
    display: inline-block;
    color: #1e293b;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #10b981 100%);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    display: block;
}

.input-group-text {
    transition: all 0.3s ease;
}

.input-group:focus-within .input-group-text {
    background-color: #1d4ed8 !important;
    transform: scale(1.05);
}

.form-control, .form-select {
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 8px !important;
    transition: all 0.3s ease;
    height: auto;
}

.form-control:focus, .form-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Animation for form elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form .row > div {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.booking-form .row > div:nth-child(1) { animation-delay: 0.1s; }
.booking-form .row > div:nth-child(2) { animation-delay: 0.2s; }
.booking-form .row > div:nth-child(3) { animation-delay: 0.3s; }
.booking-form .row > div:nth-child(4) { animation-delay: 0.4s; }
.booking-form .row > div:nth-child(5) { animation-delay: 0.5s; }
.booking-form .row > div:nth-child(6) { animation-delay: 0.6s; }
.booking-form .row > div:nth-child(7) { animation-delay: 0.7s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-form {
        padding: 30px 20px;
    }
    
    #booking::before {
        top: -30px;
        height: 60px;
    }
}


/* Form css */
/* Form css */
/* Package */
body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1px;
}

h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #f39c12, #e74c3c);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Tour Package Cards */
.tour-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 25px;
}

h2 {
    color: #4400e2;
    margin-top: 0;
    font-size: 1.8rem;
}

.duration {
    color: #e74c3c;
    font-weight: 600;
    margin: 10px 0;
    display: block;
}

.route {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-style: italic;
}

.price {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: 700;
    margin-top: 20px;
}

.price span {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: normal;
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, #f39c12, #e74c3c);
    color: white;
    padding: 6px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(to right, #e74c3c, #f39c12);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-packages {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
}