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


.free-signup-btn {
    background-color: #F08000;  /* Button background color */
    color: white;               /* White text color */
    font-size: 1.1rem;          /* Slightly larger text */
    font-weight: 600;           /* Bold text */
    padding: 12px 30px;         /* Adjust padding for button size */
    border-radius: 5px;         /* Rounded corners */
    text-transform: uppercase;  /* Uppercase text */
    text-decoration: none;      /* Remove underline from the link */
    display: inline-block;      /* Make sure it's a block element */
    transition: background-color 0.3s ease;  /* Smooth hover effect */
	margin-top: 20px;  
}

.free-signup-btn:hover {
    background-color: #e67000;  /* Slightly darker orange on hover */
}





.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 40px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0071f8;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.image-item {
    text-align: center;
    width: 250px;
    flex-shrink: 0;
}

.image-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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


.image-item p {
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;  /* Made bigger */
    font-weight: 600;    /* Slightly bolder */
    color: #000000;      /* Set to black */
}






.our-visas-section {
    padding: 40px 20px;
    text-align: center;
	
}

.our-visas-section h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
	margin-bottom: 70px;
}

.visa-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.visa-card {
    width: 280px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;         /* White background for card */
    padding: 20px;                  /* Padding inside card */
    border-radius: 12px;            /* Rounded corners */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);  /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}







.visa-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.visa-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 15px;
    color: #000;
}

.visa-card p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 12px;
    color: #111;  /* Darker text */
    padding: 0 10px;
}








.choose-us-section {
    padding: 20px 20px;
    text-align: center;
	
}

.choose-us-section h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
	margin-bottom: 20px;
}

/* Flex row for features and image */
.choose-us-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.choose-us-left {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

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

.feature-item {
    font-size: 1.65rem;       /* Slightly larger text */
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}


.feature-item i {
    font-size: 2rem;          /* Larger icon size */
    color: #2F388F;
    min-width: 28px;
}
.choose-us-right {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.choose-us-right img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    
}




.visa-hero {
  background: url("../images/flightnew.jpg") center/cover no-repeat;
  position: relative;
  padding: 100px 0;
  color: #fff;
	margin-bottom:50px;
}

.visa-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 1;
}

/* Keep content above overlay */
.visa-hero > * {
  position: relative;
  z-index: 2;
}

.visa-hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 80px 0;
}

.visa-hero-content {
  max-width: 900px;
}

.visa-subtitle {
  color: white;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.visa-subtitle i {
  margin-right: 10px;
}

.visa-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 50px;
	color:white;
}

.visa-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 5px;
	color:white;
	
}

.stat-item p {
  font-size: 15px;
  opacity: 0.9;
	color:white;
}

/* Responsive */
@media (max-width: 992px) {
  .visa-title {
    font-size: 36px;
  }

  .visa-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .visa-title {
    font-size: 28px;
  }

  .visa-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
}



@media (max-width: 768px) {
    .feature-list {
        text-align: left;
    }

    .feature-item {
        justify-content: flex-start;
        text-align: left;
    }
}