
.contact-header {
    text-align: center;
    margin-bottom: 40px;
    background-color: #ff9801;
    padding: 20px 0;
    border-bottom: 2px solid #ddd;
  }
  
  .contact-header h2 {
    font-size: 2.5rem;
    color: black;
  }
  
  .contact-header p {
    font-size: 1.2rem;
    color: black;
    margin-top: 10px;
  }

    /* Container for the flag grid */
    .country__container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 20px;
      background-color: #f9f9f9;
    }

    /* Card style for each country */
    .country__card {
      width: 200px;
      margin: 15px;
      text-align: center;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .country__card:hover {
      transform: scale(1.05);
    }

    /* Image style for country flag */
    .country__card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }

    /* Country name */
    .country__card h3 {
      font-size: 1.2rem;
      color: black;
      padding: 10px;
      background-color: #ff9801;
      color: white;
    }

    /* Responsive styling for mobile screens */
    @media (max-width: 768px) {
      .country__card {
        width: 45%;
      }
    }

    @media (max-width: 480px) {
      .country__card {
        width: 90%;
      }
    }
  

    .section__header2 {
        text-align: center;
        font-size: 2.5rem;
        color: #333;
        margin: 20px 0;
      }
      
      /* For tablets (medium devices) */
      @media (max-width: 768px) {
        .section__header2 {
          font-size: 2rem;
        }
      }
      
      /* For mobile phones (small devices) */
      @media (max-width: 480px) {
        .section__header2 {
          font-size: 1.5rem;
        }
      }

  /* Base Styles */
.home__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #ff9801;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-style: none;
}

.info__group {
  text-align: center;
  margin-right: 20px;
}

.info__group label {
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
}

.info__group p {
  font-size: 1.1rem;
  color: #000;
}

.btn {
  background-color: #fff;
  color: #000;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.btn i {
  font-size: 1.5rem;
}

/* Responsive Styles */

/* For screens smaller than 768px */
@media (max-width: 768px) {
  .home__container {
    flex-direction: column;
    text-align: center;
  }

  .info__group {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .btn {
    margin-top: 20px;
  }
}

/* For screens larger than 1024px (Optional fine-tuning) */
@media (min-width: 1024px) {
  .info__group label {
    font-size: 1.4rem;
  }

  .info__group p {
    font-size: 1.3rem;
  }
}

/*    ...............................................  */ 

 /* General Styling for Header Download Section */
.download-header {
  background-color: #f7a700; /* Orange background */
  padding: 40px 20px;
  text-align: center;
  border-radius: 15px;
  color: #fff;
}

.download-header h2 {
  font-size: 2.5rem;
  color: #000; /* Black text */
  font-weight: bold;
  margin-bottom: 15px;
}

.download-header p {
  font-size: 1.2rem;
  color: #000; /* Black text */
  margin-bottom: 30px;
}

/* Button Styling */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.download-btn {
  background-color: #000; /* Black background */
  color: #f7a700; /* Matching orange text */
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 38px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
  width: auto;
}

.download-btn:hover {
  background-color: #fff;
  color: #f7a700; /* Reverse the colors on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .download-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .download-header h2 {
    font-size: 2.2rem;
  }

  .download-header p {
    font-size: 1rem;
  }

  .download-btn {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .download-header h2 {
    font-size: 1.8rem;
  }

  .download-header p {
    font-size: 0.9rem;
  }

  .download-btn {
    font-size: 0.9rem;
    padding: 12px 25px;
    border-radius: 50px;
  }
}

 /* Scroll to Top Button Styling */
 .scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff9801 , #ff9801 );
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

* For very small screens (less than 480px) */
@media (max-width: 480px) {
  .scroll-to-top {
    width: 35px;
    height: 35px;
    font-size: 16px;
    bottom: 100px;
    right: 15px;
  }
}

/* For tablets and medium screens (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 22px;
    bottom: 100px;
    right: 25px;
  }
}

/* For large screens (desktops, laptops) */
@media (min-width: 1025px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 100px;
    right: 30px;
  }
}