.about {
  max-width: 1200px;
  background: #ffffff;
  background: linear-gradient(
    279deg,
    rgba(255, 255, 255, 1) 47%,
    rgba(0, 4, 255, 0.09) 100%
  );
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
  width: 100%;
  height: auto;
}

.about-images .main-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.about-content h2 {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #49646e;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: "";
  width: 0;
  height: 3px;
  background: #49646e;
  display: block;
  margin: auto;
  transition: 0.4s ease;
}

.about-content h2:hover::after {
  width: 100%;
  height: 0.3rem;
}
.about-content p {
  font-weight: 500;
  color: #332f2f;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: larger;
}

.btn-know {
  position: relative;
  background: transparent;
  color: #002a69;
  padding: 10px 26px;
  border: 2px solid #0b5ed7;
  border-radius: 8px;
  overflow: hidden;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border-color: #222;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  z-index: 0;
  isolation: isolate;
  transition: color 0.7s ease;
}

.btn-know::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b326b;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.7s ease;
  z-index: -1;
}

.btn-know:hover::before {
  transform: scaleX(1);
}

.btn-know:hover {
  color: #fff;
}

.btn-know:focus-visible {
  outline: 3px solid rgba(11, 94, 215, 0.35);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .about {
    padding: 30px 30px;
    background: #fff;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-images {
    height: 370px;
    width: 80%;
  }
  .about-images .main-img {
    display: none;
  }
  .about-images {
    display: none;
  }
}

.footer {
  --footer-bg: #fff;
  --footer-color: #333;
  background-color: var(--footer-bg);
  color: var(--footer-color);
  padding: 40px 20px;
  width: 100%;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 50;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-section img,
.footer-section p,
.footer-section ul {
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: clamp(22px, 4vw, 22px);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li i {
  margin-right: 10px;
  color: #161616;
}

.footer-section a {
  color: #161616;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover,
.footer-section i:hover {
  color: #04ca15;
}
.footer-section h4 {
  color: #315687;
}

.footer-section p {
  margin: 10px 0;
  font-size: 14px;
  color: #191818;
  line-height: 1.5;
}

.footer-logo {
  height: clamp(25px, 8vw, 45px);
  border-radius: 4px;
  display: block;
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  gap: 10px;
  font-size: 1.15rem;
  opacity: 0.95;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  list-style: none;
}
.social-links a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: color 0.2s;
}
.social-links a:hover {
  color: #00ff11;
  opacity: 1;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.footer-bottom {
  text-align: center;
  border-top: 2px solid rgba(14, 14, 14, 0.08);
  padding-top: 18px;
  margin-top: 18px;
  color: #315687;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer {
    padding: 28px 16px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-section {
    text-align: center;
    min-width: 100%;
  }
  .contact {
    align-items: center;
  }
}

.usp {
  max-width: 1200px;
  margin: 60px auto;
  padding: 52px 30px;
  border-radius: 20px;
  background: none;
  animation: uspFade 0.9s ease forwards;
}

@keyframes uspFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.usp-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #49646e;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
  position: relative;
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 140px;
  }
}

.usp-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 32px;
}

.usp-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  font-size: 40px;

  background: rgba(255, 255, 255, 0.95);
  padding: 22px 24px;
  border-radius: 18px;

  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 26px rgba(70, 46, 15, 0.1);

  position: relative;
  overflow: hidden;
  cursor: pointer;

  transition:
    transform 0.4s cubic-bezier(0.22, 0.68, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.usp-item::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.usp-item:hover::before {
  transform: translateX(100%);
}

.usp-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 60px rgba(15, 30, 70, 0.18);
  border-color: #03a3c4a5;
  background-color: #03cff82a;
}
.usp-items > .usp-item {
  opacity: 0;
  will-change: transform, opacity;
}
.usp-items > .usp-item:nth-child(odd) {
  transform: translateX(-36px);
  animation: uspSlideInLeft 0.62s cubic-bezier(0.22, 0.68, 0.36, 1) forwards;
}
.usp-items > .usp-item:nth-child(even) {
  transform: translateX(36px);
  animation: uspSlideInRight 0.62s cubic-bezier(0.22, 0.68, 0.36, 1) forwards;
}
.usp-items > .usp-item:nth-child(1) {
  animation-delay: 0.06s;
}
.usp-items > .usp-item:nth-child(2) {
  animation-delay: 0.14s;
}
.usp-items > .usp-item:nth-child(3) {
  animation-delay: 0.22s;
}
.usp-items > .usp-item:nth-child(4) {
  animation-delay: 0.3s;
}
.usp-items > .usp-item:nth-child(5) {
  animation-delay: 0.38s;
}
.usp-items > .usp-item:nth-child(6) {
  animation-delay: 0.46s;
}

@keyframes uspSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uspSlideInRight {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 900px) {
  .usp-items > .usp-item {
    transform: translateX(-28px);
    animation-name: uspSlideInLeft;
  }
}

.usp-icon {
  min-width: 60px;
  min-height: 60px;
  border-radius: 16px;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #20a6d7, #3a75b4);
  color: #fff;
  font-size: 22px;

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.usp-item:hover .usp-icon {
  transform: rotate(-8deg) scale(1.12);
}

.usp-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f2a4a;
  line-height: 1.4;
  margin: 2px 0 0;
  padding-top: 9px;

  transition: color 0.35s ease;
}

.usp-item:hover h3 {
  color: #111b52;
}

@media (max-width: 900px) {
  .usp-items {
    grid-template-columns: 1fr;
  }

  .usp {
    padding: 34px 18px;
    margin: 40px 16px;
  }

  .usp-heading {
    font-size: 26px;
  }
  .usp {
    padding: 25px 20px;
  }
}
.partners {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 30px;
}

.partners-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0f2a4a;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
  margin-bottom: 3rem;
}

.partners-container h2 {
  color: #49646e;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
  align-items: start;
}

.partner-card {
  text-align: center;
}

.partner-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(15, 30, 70, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  transform-origin: center center;
  transform: scale(1);
}

.partner-card:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 30, 70, 0.1);
}

.partner-card h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #0f2a4a;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .partners {
    padding: 30px 18px;
    margin: 30px 12px;
  }
  .partners-heading {
    font-size: 26px;
  }
}

/* contact */
.contact-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}
.contact-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #49646e;
  margin-bottom: 18px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 3rem;
  align-items: center;
}

.contact-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.contact-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(0.7);
}
.contact-thumb {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -10%);
  width: 220px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  background: #fff;
}
.contact-form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(15, 30, 70, 0.08);
}
.contact-form-wrap .form-row {
  margin-bottom: 12px;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  background: #ffffff;
  outline: none;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    box-shadow 0.18s,
    border-color 0.18s;
}

.contact-form-wrap textarea {
  resize: none;
  overflow: hidden;
  min-height: 80px;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: #b4b4b4;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: rgba(30, 107, 255, 0.35);
  box-shadow: 0 6px 18px rgba(30, 107, 255, 0.06);
}

.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.form-status {
  color: #0f5132;
  font-weight: 600;
}
.form-status.error {
  color: #7a1b1b;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-image {
    height: 200px;
  }
  .contact-image .contact-thumb {
    width: 140px;
    height: 140px;
    top: 45%;
  }
  .contact-form-wrap {
    padding: 18px;
  }
}

/* feedback */
.reviews-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 48px 30px;
  border-radius: 12px;
  background: none;
}
.reviews-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #49646e;
  margin-bottom: 24px;
  position: relative;
}
.reviews-heading::after {
  content: "";
  width: 140px;
  height: 4px;
  display: block;
  margin: 14px auto 0;
  border-radius: 50px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
.review-card {
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(15, 30, 70, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 30, 70, 0.12);
}
.review-meta {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.user-emoji {
  font-size: 18px;
  width: 44px;
  height: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: 0 8px 20px rgba(11, 74, 88, 0.06);
  margin-top: 6px;
}
.review-meta-info h3,
.review-name {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2a4a;
  letter-spacing: 0.3px;
}

#reviews h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2a4a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}
.review-score {
  font-size: 13px;
  color: #111b52;
  font-weight: 700;
  background: #eef6ff;
  padding: 3px 8px;
  border-radius: 12px;
}
.review-rating i {
  color: #ffc107;
  margin-right: 6px;
  font-size: 14px;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
  display: inline-block;
  will-change: transform;
}
.review-rating i:hover {
  animation: review-star-bounce 0.8s ease-in-out infinite;
}

.review-card:hover .review-rating i {
  transform: scale(1.03);
}

@keyframes review-star-bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.review-text {
  color: #332f2f;
  line-height: 1.6;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-section {
    padding: 28px 18px;
    margin: 40px 12px;
  }
  .reviews-heading {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .contact-grid img {
    padding-bottom: 0;
    margin-bottom: 0;
    transform: scale(0.8);
  }

  .contact-form-wrap {
    margin-top: -15%;
  }

  .contact-section h2 {
    margin-bottom: -5%;
  }
}
