/*
============================
Theme Name: Visafast
Theme URI: https://consultia.fleexstudio.com
Author: VikingLab
Author URI: https://themeforest.net/user/vikinglab/portfolio
Description: Visafast - Visa consulting Template
Version: 1.0.0
License: GNU General Public License v1 or later
License URI: LICENSE
Text Domain: eduker
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
============================
*/

/*
============================
Name:  Visafast Consulting Theme
Version: 1.0.0
Description:
Author: Noyon Ahemd
Author URI:
Location:
============================
*/

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .service-box {
    width: calc(50% - 20px); /* Two columns per row */
   
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }
  .service-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
  }
  .service-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .service-box {
      width: 100%; /* Full width on smaller screens */
    }
  }

  .visa-section {
 /* max-width: 1000px; */
margin: auto;
padding: 40px 20px;
background: #f8f9fa;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.visa-section h2 {
font-size: 26px;
font-weight: 700;
color: #333;
text-align: center;
margin-bottom: 20px;
}
.visa-category {
padding: 20px;
background: #fff;
border-radius: 10px;
margin-bottom: 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.visa-category h3 {
font-size: 22px;
color: #007bff;
margin-bottom: 10px;
}
.visa-category p {
font-size: 16px;
color: #555;
line-height: 1.6;
}


.contact-box {
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}
.form-label {
  font-weight: 600;
}
.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary:hover {
  background-color: #0056b3;
}
.contact-info p {
  font-size: 16px;
  margin: 5px 0;
}