/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

/* Apply Font to Body */
body {
  font-family: 'Poppins', sans-serif;
}

.header {
    background-color: white;
}

.logo img {
    width: 150px;
}

.apply-btn {
    background-color: #FF0055;
    color: white;
    padding: 3px 20px;
    font-weight: bold;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
}


.main-tittle {
  width: 100%;
  font-size: 35px;
  margin-top: 20px;
  margin-bottom: 55px;
  color: #fff;
  font-weight: 500;
  background-color: #21252978;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 15px;
  text-align: center;
  text-transform: capitalize;
}
.main-tittle_sub{
  color: rgb(255, 255, 255);
  width: 60%;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 55px;
}
.students-img {
    max-width: 100%;
    height: auto;
    display: none;
margin-bottom: -65px;
overflow: hidden;


}
.form-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 20px 40px;

}

.form-box h2 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.form-box input,
.form-box select {
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 45px;
}

.form-box button {
    background-color: #FF0055;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
}

.services-section {
    background-color: #f7f7f7;
  }
  
  .services-title {
    font-weight: bold;
    color: #ff0055;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: 100px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: start; /* Align content to start */
    padding: 0.5rem; /* Padding for spacing */
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px); /* Subtle hover effect */
  }
  
  .service-icon {
    width: 40px;
    height: auto;
    margin-right: 15px; /* Space between icon and text */
  }
  .service-card p {
    font-size: 12px;
    color: #333;
    margin: 0;
    text-align: left;
}
  
  .view-all-wrapper {
    display: flex; /* Ensures center alignment of the button */
    justify-content: center;
    align-items: center;
  }
  
  .view-all-wrapper .btn {
    background-color: #ff0055;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%; /* Full width of the container */
  }
  
 


 /* Responsive Settings: Adjusting columns based on screen size */
 @media (min-width: 992px) {
    .col-lg-2 {
      flex: 0 0 20%; /* 5 columns */
      max-width: 20%;
    }
  }
  
  @media (max-width: 991px) {
    .col-md-4 {
      flex: 0 0 33.3333%; /* 3 columns */
      max-width: 33.3333%;
    }
  
    .services-container .col-md-4:nth-child(n+9):not(.view-all-wrapper) {
      display: none; /* Hide cards after the 9th on tablets */
    }
  
    .view-all-wrapper {
      display: block; /* Ensure "View All" is visible */
    }
  }
  
  @media (max-width: 768px) {
    .col-sm-6 {
      flex: 0 0 50%; /* 2 columns on mobile */
      max-width: 50%;
    }
  
    .services-container .col-sm-6:nth-child(n+8):not(.view-all-wrapper) {
      display: none; /* Hide cards after the 8th on mobile */
    }
  
    .view-all-wrapper {
      display: block; /* Ensure "View All" is visible */
    }
  }

/* General Section Styles */
.courses-section {
    background-color: #fff;
  }
  
  .courses-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    width: 40%;
  }
  
  .courses-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
  
    width: 86%;
  }
  
  /* Course Card Styles */
  .course-card {
    display: flex;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .course-card:hover {
    transform: translateY(-5px);
  }
  .course-image {
    width: auto;
    height: 241px;
 
}
  
  .course-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .course-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
  }
  
  .course-info p {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
  }
  
  .btn-link {
    align-self: start;
    padding: 8px 47px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border-radius: 32px;
}

  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .course-card {
      flex-direction: column;
      align-items: center;
    }
  
    .course-image {
      width: 99%;
      height: auto;
    }
    .course-info {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: #f7f7f7;
        margin-top: -200px;
      }

    .btn-danger {
        background-color: #ff0055;
        color: #fff;
        width: 100%;
      }
      
    .course-info {
      text-align: center;
    }
    .courses-title {
        font-size: 40px;
        font-weight: 700;
        color: #333;
        width: 100%;
      }
  }
  
  /* General Section Styles */
.destinations-section {
    background-color: #001f61;
  }
  
  .text-white {
    color:#fff;
    font-size: 14px;
  }
  
  .flag-wrapper {
    cursor: pointer;
  }
  
  .country-flag {
    max-width: 60px;
  }
  
  .country-info-wrapper {
    display: flex;
    align-items: start;
   justify-content: space-around;
  }

  .country-info-data{
    display: flex;
  }
  

  
  .country-info h4 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .country-info p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 22px;
    padding-top: 20px;
}
  
.btn-danger {
    background-color: #ff0055;
    color: white;
    padding: 7px 21px;
    border-radius: 5px;
    border-radius: 40px;
    width: 67%;
}
  .our_destinatinon{
    font-size: 48px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 800;
  }
  
  /* Responsive Design */

  @media (max-width: 991px) {
    .country-info {
      margin-top: 20px;
    }
    .btn-danger {
        background-color: #ff0055;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        border-radius: 40px;
        width: 100%;
      }
      .country-info {
        background-color: rgb(12, 6, 81);
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 30px;
       
      }
      .country-info h4 {
        font-size: 24px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 20px;
        text-align: justify;
      }
      
      .country-info p {
        font-size: 14px;
        color: #ffffff;
        font-weight: 300;
        margin-bottom: 24px;
        line-height: 20px;
        text-align: justify;
    }
    .our_destinatinon{
        font-size: 38px;
        color: #fff;
        margin-bottom: 60px;
        font-weight: 800;
      }
  }
  
/* General Section Styles */
.about-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #d0eaff 100%);
  }
  
  .about-image {
    max-width: 84%;
    height: auto;
    margin-bottom: -100px;
  }
  
  .about-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }
  
  .about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
  }
  

  
/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-section .row {
      flex-direction: column-reverse; /* Reverse the order for mobile/tablet */
      text-align: center;
    }
  
    .about-title, .about-description {
      text-align: left;
    }
  
    .about-image {
      margin-top: 40px;
      max-height: 400px;
      max-width: 85%;
      height: auto;
      margin-bottom: -47px;
  }
  }
/* Media query for laptops (1024px and up) */
@media (min-width: 1024px) and (max-width: 1366px) {
  .about-image {
    max-width: 77%;
    height: auto;
    margin-bottom: -143px;
}
}

/* Media query for desktops (1366px and up) */
@media (min-width: 1367px) {
  .about-image {
    max-width: 77%;
    height: auto;
    margin-bottom: -47px;
}
}
  

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
  }
  
  /* Accordion Style */
  .accordion-item {
    border: none;
    margin-bottom: 10px;
  }
  
  .accordion-header {
    padding: 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  .accordion-title {
    font-size: 18px;
    color: #333;
    margin: 0;
    flex: 1;
    font-weight: 500;
  }
  
  .accordion-body {
    padding: 15px;
    font-size: 14px;
    color: #666;

}
  
  .btn-link {
    font-size: 18px;
    color: #3f3f3f;
    text-decoration: none;
    width: 100%;
    text-align: left;
  }
  
  .accordion-icon {
    font-size: 24px;
    font-weight: 500;
    color: #353535;
    transition: transform 0.3s ease;
    margin-right: 20px;
  }
  
  /* Number Circle */
  .number-circle {
    width: 40px;
    height: 40px;
    background-color: #6c9aff;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-left: 15px;
  }
  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /* Get in Touch Section */
.get-in-touch-section {
  background-color: #f1f3f5;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.section-description {
  font-size: 16px;
  color: #666;
}

.get-in-touch-image {
  width: 100%;
  border-radius: 8px;
}

.get-in-touch-form {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

input.form-control,
select.form-control {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.get-in-touch-form .btn {
  background-color: #ff0055;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  width: 100%;
}

  .get_img {
    max-height: 100%;
    left: 104px;
    padding-top: 23px;
    padding-left: 115px;
}


.get-in-touch-form .btn:hover {
  background-color: #e6004c;
}

  
  /* Footer Section */
  .footer-section {
    background-color: #0a2056;
    color: white;
  }
  
  .footer-section p {
    font-size: 14px;
    color: white;
    margin: 0;
  }
  .name_touch{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .get-in-touch-form .row {
      flex-direction: column;
    }
  
    .get-in-touch-form .btn {
      width: 100%;
      margin-top: 10px;
    }
    .get_img {
      max-height: 100%;
      padding-top: 23px;
      padding-left: 0;
  }


    .btn-link {
        font-size: 12px;
        color: #3f3f3f;
        text-decoration: none;
        width: 100%;
        text-align: left;
      }
      .btn-link {
        align-self: start;
        padding: 1px 20px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 4px;
        border-radius: 32px;
    }
    .name_touch{
        display: block;
        align-items: center;
      }
      .get-in-touch-form {
       margin-top: -130px;
      }
  }
  
/* Section Styles */
/* Section Styles */
.testimonial-section {
  background-color: #f7f7f7;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

/* Flexbox for aligning the buttons */
.nav-container {
  display: flex; /* Align buttons in a row */
 justify-content: end;
  gap: 10px; /* Add space between the buttons */
}

.nav-btn {
  background: none;
  border: 2px solid #ccc; /* Add a border to the arrows */
  border-radius: 50%; /* Make the border circular */
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* Fixed size for consistency */
  height: 40px;
}

.nav-btn svg {
  stroke: #333;
  width: 24px;
  height: 24px;
}

.testimonial-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.8s ease-in-out; /* Smooth transition */
}

.testimonial-item {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .testimonial-item {
    min-width: 50%; /* Show 2 testimonials per row on larger screens */
    max-width: 50%;
  }
}

.testimonial-content {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 340px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: bold;
}

.position {
  color: #ff0055;
  font-size: 14px;
}

.quote {
  font-size: 16px;
  color: #333;
  margin-top: 20px;
}

.quote-icon {
  font-size: 30px;
  color: #ff0055;
  margin-right: 5px;
}

.d-flex.align-items-center {
  display: flex;
  align-items: center;

}
@media (max-width: 991px) {
.section-title {
  font-size: 27px;
  font-weight: 700;
  text-align: center;
}
.nav-container {

 justify-content: center;
}
.testimonial-content{
  height: 450px;
}
}

.tabcontent img{
  border-radius: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.canter-country-padd{
  padding-top: 150px;
}

.tablinks p{
  margin-bottom: 5rem;
}