
.aa {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
}

.bb{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 64, 255, 0.85),
    rgba(0, 64, 255, 0.65)
  );
  
 display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

}
.hero-subtitle {
  color: white;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 50px);
}

.hero-title {
  color: white;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 80px);
}


/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
  background: #d8d8d849;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
/* IMAGE BASE */
.about-image img {
  width: 100%;
  border-radius: 15px;

  /* FLOAT */
  animation: floatImg 4s ease-in-out infinite;

  /* SCROLL FADE */
  opacity: 1;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease, box-shadow 0.4s ease;
}

/* FLOAT KEYFRAMES */
@keyframes floatImg {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* SCROLL ACTIVE */
.about-section.show .about-image img {
  opacity: 1;
  transform: scale(1);
}

/* HOVER LIFT */
.about-image img:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
}



/* CONTENT */
.about-content h5 {
  color: red;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 2px dotted red;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* FEATURES */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature span {
  font-size: 22px;
}

.feature p {
  margin: 0;
  font-weight: 600;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #1e40af;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature {
    justify-content: center;
  }
}




/* MISSION SECTION */
.mission-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.mission-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.mission-section h5 {
  color: red;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 2px dotted red;
}

.mission-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.mission-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* CARDS */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  background: rgba(58, 255, 173, 0.453);
  padding: 35px 25px;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card span {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
 
}

.mission-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
   color: red;
  display: inline-block;
  border-bottom: 2px dotted red;
}

.mission-card p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  font-weight: 500;
}

/* HOVER EFFECT */
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mission-cards {
    grid-template-columns: 1fr;
  }

  .mission-section h2 {
    font-size: 30px;
  }
}


/* WHAT WE OFFER SECTION */
.offer-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.offer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.offer-section h5 {
  color: red;
  display: inline-block;
  border-bottom: 2px dotted red;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.offer-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.offer-desc {
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* CARDS */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background: rgba(58, 255, 173, 0.453);
  padding: 35px 25px;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card span {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.offer-card h4 {
  display: inline-block;
  border-bottom: 2px dotted red;
  color: red;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  font-weight: 500;
}

/* HOVER EFFECT */
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .offer-cards {
    grid-template-columns: 1fr;
  }

  .offer-section h2 {
    font-size: 30px;
  }
}

.footer {
  background: radial-gradient(circle at top, #1e1b4b, #020617);
  color: #c7d2fe;
  padding: 70px 20px 0;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer-brand p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-newsletter form {
  display: flex;
  margin-top: 20px;
}

.footer-newsletter input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  padding: 14px 25px;
  background: #2563eb;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
  font-size: 15px;
  cursor: pointer;
}

.footer-links ul li:hover {
  color: #fff;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 12px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter button {
    margin-top: 10px;
  }
}





