* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
/* Preloader Full Screen */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Loading Animation */
.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top-color: #4e9eff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Spin Animation */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.business-section {
  width: 100%;
  background: url('./Assets/About-Us/Hero.jpg') right/cover no-repeat;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* CHANGED from flex-end → flex-start */
}

.business-container {
  max-width: 600px;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.business-container h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #222;
}

.business-container p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #444;
}

.join-btn {
  background: #00c2d1;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.join-btn:hover {
  background: #009aa6;
}

/* Responsive */
@media (max-width: 1024px) {
  .business-section {
    justify-content: center;
    padding: 60px 20px;
  }

  .business-container {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .business-container h2 {
    font-size: 26px;
  }

  .business-container p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .business-container {
    padding: 25px;
  }

  .business-container h2 {
    font-size: 22px;
  }

  .join-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}


/* ================================
   ABOUT US SECTION
================================ */
.about-simple {
  width: 100%;
  padding: 90px 0;
  background: #f7faff;
}

.about-simple-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.about-left {
  flex: 1;
}

.about-left img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.12);
}

/* RIGHT CONTENT */
.about-right {
  flex: 1;
}

.about-right h2 {
  font-size: 36px;
  color: #0b3a67;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-right p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 32px;
  background: #0b3a67;
  color: #fff;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #082a4d;
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-simple-container {
    flex-direction: column;
  }

  .about-left img {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .about-right h2 {
    font-size: 28px;
  }

  .about-right p {
    font-size: 15px;
  }

  .about-left img {
    height: 300px;
  }
}


/* .achievement-section */
.blue-counter-section {
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(90deg, #0039a6, #0066ff, #3399ff);
  color: #fff;
}

.blue-counter-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.blue-counter-item h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.blue-counter-item p {
  font-size: 18px;
  opacity: 0.9;
  margin: 0;
}

.divider {
  height: 50px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .blue-counter-container {
    flex-direction: column;
    gap: 30px;
  }

  .divider {
    display: none;
  }

  .blue-counter-item h2 {
    font-size: 36px;
  }

  .blue-counter-item p {
    font-size: 16px;
  }
}

/* mission&vision */
.mvc-section {
  padding: 80px 0;
  width: 100%;
  background: #f5f8ff;
}

.mvc-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #002d73;
}

.mvc-cards {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Extraordinary Card Style */
.mvc-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px 25px;
  position: relative;
  border: 2px solid transparent;

  /* Gradient Border */
  background-clip: padding-box;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 90, 255, 0.2);

  transition: all 0.4s ease;
}

.mvc-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #004b9a;
}

.mvc-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Hover Effects – Glow + Lift */
.mvc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 100, 255, 0.35);
  border-color: rgba(0, 115, 255, 0.7);
  background: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .mvc-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .mvc-cards {
    grid-template-columns: 1fr;
  }

  .mvc-card {
    text-align: center;
  }
}

/* why-choose-us */
.trust-img-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.trust-img-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT SIDE */
.trust-left {
  flex: 1;
}

.trust-heading {
  font-size: 34px;
  font-weight: 700;
  color: #003a8c;
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.trust-icon {
  font-size: 40px;
  color: #0066ff;
}

.trust-item h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #002d72;
}

.trust-item p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

/* RIGHT SIDE IMAGE */
.trust-right {
  flex: 1;
}

.trust-right img {
  width: 80%;
  margin-left: 20px;
  object-fit: contain;
  border-radius: 0;
}






/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-img-container {
    flex-direction: column;
    text-align: left;
  }

  .trust-right img {
    width: 100%;
  }
}
