/* General Styles */
/* Apply a professional font style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'rublik', sans-serif;

    margin: 0;
    padding: 0;
   
    box-sizing: border-box;
}
.announcment_bar{
    background-color: #ff5e00;
    text-align:center;
    color: white;
    
}

.navbar-inverse {
    background-color: #d9d9d9; /* Replace with your desired color */
    border-color: #219aca; /* This also changes the border color (optional) */
    
}
.topv{
    margin-left: 20%;
    margin-right: 20%;
    height: 500px;
    
}
.nav>li>a{
     font-family:Rublik;
     font-size: 15px;
}

.navbar-inverse .navbar-brand, 
.navbar-inverse .navbar-nav>li>a {
   
    color: black; /* Adjust text color if necessary */
}

.navbar-inverse .navbar-brand:hover, 
.navbar-inverse .navbar-nav>li>a:hover {
    color: #ff5e00; /* Adjust hover color if necessary */
}


/* Main Section */
.main-section {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    width: 100%;
    background: url('img/homeimg.jpeg') no-repeat center center/cover;

}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%; /* Take up 80% of the screen */
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: row; /* Align items in a single horizontal line */
    justify-content: space-between;
    align-items: center;
    width: 80%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0; /* Sharp corners */
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    width: 70%; /* Each dropdown takes 30% width */
}

.button-container {
    width: 20%; /* Button takes 20% */
    display: flex;
    justify-content: center;
}

/* Dropdown Styling */
.country-dropdown {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.visa-dropdown {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Button Styling */
.check-requirements {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    border-radius: 5px;
}

.check-requirements:hover {
    background-color: #0056b3;
}





/* Top Visas Section */
.top-visas-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #eee;
}

.top-visas-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.top-visas-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.visa {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.visa img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.visa a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #004080;
    font-weight: bold;
}

.visa a:hover {
    color: #ffcc00;
}
.reviews-section {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.testimonials_iframe {
    border: none;
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

.index__title h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}


/* Navigation Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 10;
}

.prev-btn { left: 5px; }
.next-btn { right: 5px; }

.prev-btn:hover, .next-btn:hover {
    background: #555;
}
/* Steps List */
.index__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
/* Title Styling */
.index__title h1 {
    font-size: 32px; /* Increased font size */
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
/* Individual Step */
.index__steps__item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 10px;
}

/* Step Number (Left Side) */
.index__steps__icon {
    font-size: 24px;
    font-weight: 500;
    background-color: #ff5e00;
    color: white;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #999;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Step Box */
.index__steps__label {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 10px 5px #f0f2f4;
    display: flex;
    flex-direction: row; /* Align image and text side by side */
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: 650px;
    gap: 20px; /* Space between image and text */
}

/* Step Image (Left Side Inside Box) */
.index__steps__img {
    width: 120px;
    height: 120px;
    flex-shrink: 0; /* Prevent shrinking */
}

.index__steps__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Step Text */
.index__steps__text {
    display: flex;
    flex-direction: column;
}

/* Ensure paragraph is below heading */
.index__steps__text h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.index__description {
    font-size: 14px;
    color: #555;
    padding: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .index__steps__label {
        flex-direction: column; /* Stack image and text on small screens */
        text-align: center;
    }
}
.random-video-section {
    background-color: #eee; /* Light grey background */
    padding: 30px 0;
    text-align: center;
}

.random-video-section .container {
    width: 80%;

    margin: 0 auto;
}

.random-video-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.random-video-section .video-container iframe {
    max-width: 100%;
    height: 80%;
}
.random-video-section iframe {
    height: 300px !important;
}
.vi__fullwidth_block {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.container {
    
    margin: 0 auto;
}

.index__title h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.flex-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.index__top_box {
    flex: 1 1 45%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.index__top_box__body h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.index__top_box__description {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .index__top_box {
        flex: 1 1 100%;
    }
}
.form-custom-search {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.visa-info__banner__form {
    max-width: 600px;
    margin: auto;
}




/* Recommended Section */
.recommended-section {
    background-color: #f8f9fa; /* Light Grey Background */
    padding: 50px 0;
    text-align: center;
}

/* Title Styling */
.section-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Logos Container */
.recommended-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual Logo Item */
.logo-item {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Image Styling */
.logo-item img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.logo-item a:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .recommended-logos {
        flex-direction: column;
        align-items: center;
    }
}




/* Map container styling */
#map {
    height: 400px; /* Adjust height as needed */
    width: 100%;
    border: 2px solid #fffcfc;
    border-radius: 10px;
}

/* Center text */
h2 {
    text-align: center;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

/* Specific styling for the second form */
.second-form {
    background-color: #eee; 
    height: 400px;
}

.second-form-wrapper {
    margin-top: 50px; /* Adjust spacing */
}

.second-form-container {
    display: flex;
    flex-direction: row; /* Align items in a single horizontal line */
    justify-content: space-between;
    align-items: center;
    width: 80%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0; /* Sharp corners */
    margin-top: 120px;
    margin-left: 200px;
}

/* Second form dropdowns */
.second-country-dropdown, .second-visa-dropdown {
    width: 100%;
    border: 2px solid #b1b3b6; /* Blue border for uniqueness */
}

/* Second form button */
.second-check-requirements {
    background-color: #56976a;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    width: 160px;
}

.second-check-requirements:hover {
    background-color: #005bb5;
}


.form-group-second {
    display: flex;
    flex-direction: column;
    width: 30%; /* Each dropdown takes 30% width */
}

.second-form-container {
    padding: 30px; /* Adds padding inside the form container */
}

.form-heading {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px; /* Space between heading and form */
}
#visa-requirements {
    width: 100%;
    margin-top: 20px;
}

#visa-requirements table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#visa-requirements th {
    background-color: #ff5e00;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ddd;
}

#visa-requirements td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
}

#visa-requirements tr:nth-child(even) {
    background-color: #f9f9f9;
}

#visa-requirements tr:hover {
    background-color: #f1f1f1;
}

.waves-block-container {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
}

.wave-block {
    display: flex;
    justify-content: center;
}

.travel-ninja__title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.travel-ninja__content {
    padding: 15px;
}

.travel-ninja__video iframe {
    border-radius: 10px;
    height: fit-content;
}
.footer{
   color: white;
}
.travolo-logo {
    max-width: 150px;
    height:150px;
width:150px;

}
.header .logo {
    display: flex;
    align-items: center;
    height:70%;
}

.header-logo {
    max-height: 100px; /* Adjust height as needed */
    width: 130px;
}

