
.hero {
  width: 100%;
  padding: 80px 20px;
  background: white;
  overflow: hidden;
}

.hero-container {
  max-width: 1156px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
  animation: fadeUp 0.9s ease forwards;
}

/* LEFT SIDE */
.hero-text {
  flex: 1;
}

.hero-text p {
  font-size: 12px;
  color: #01328E;
  max-width: 469px;
  display: inline-block;
  border: 1px solid #01328E;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: 104px;
  margin-left: 12px;
  opacity: 0;
  animation: slideLeft 0.7s ease forwards;
}

.hero-text h2 {
  font-size: 42px;
  color: #01328E;
  margin-left: 15px;
  opacity: 0;
  animation: slideLeft 0.9s ease forwards;
  animation-delay: 0.2s;
  margin-top: 15px;
}

/* RIGHT SIDE */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 90px;
  margin-right: 18px;
  opacity: 0;
  animation: slideRight 0.9s ease forwards;
  animation-delay: 0.4s;
}

/* BUTTONS */
.btn-secondary,
.btn-primary {
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 10px 12px;
}

.btn-secondary {
  background-color: #01328E;
  color: #fff;
  border-radius: 50%;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #01328E;
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: #08A1DD;
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(8, 161, 221, 0.25);
}

.btn-secondary img {
  filter: brightness(0) invert(1);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    margin-top: 75px;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 30px;
    margin-right: 0;
  }

  .hero-text h2 {
    font-size: 30px;
  }
}

/* <!-- SECTION TWO SECTION TWO SECTION TWO SECTION TWO SECTION TWO --> */

.image-section {
  width: 100%;
  padding: 16px 20px 0;
  margin-top: -40px;
  /* halka sa upar shift */
  background: #fff;
  box-sizing: border-box;
}

.image-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.image-container img {
  width: 100%;
  max-width: 1156px;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* =========================
   Laptop Screens
========================= */
@media (max-width: 1200px) {
  .image-container img {
    max-width: 100%;
  }
}

/* =========================
   Tablet Screens
========================= */
@media (max-width: 768px) {
  .image-section {
    padding: 12px 15px 0;
    margin-top: -20px;
  }

  .image-container img {
    border-radius: 8px;
  }
}

/* =========================
   Mobile Screens
========================= */
@media (max-width: 480px) {
  .image-section {
    padding: 10px;
    margin-top: -10px;
  }

  .image-container img {
    border-radius: 6px;
  }
}


/* SECTON THREE SECTON THREE SECTON THREE SECTON THREE SECTON THREE */

/* TITLE */
.day {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #01328E;
  margin-top: -27px;
}

#hopes {
  display: block;
  margin: 43px auto;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #01328E;
  color: #01328E;
  text-decoration: none;
  font-size: 12px;
  width: fit-content;
  margin-top: 87px;
}

/* SECTION */
.plan-section {
  .plan-section {
    min-height: 100vh;
    margin-top: 80px;
    /* 👈 yahan increase karo */
    padding: 60px 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

}

/* CONTAINER */
.plan-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;

}

/* CARD */
.plan-card {
  background: white;
  padding: 30px;
  width: 310px;
  text-align: left;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  opacity: 0;
  transform: translateY(60px);
  transition: all 0.7s ease;
  border: 1px solid rgba(1, 50, 142, 0.21);
}

/* SHOW */
.plan-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER */
.plan-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* PRICE */
.price {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0;
}

/* LIST */
.plan-card ul {
  list-style: none;
  padding-left: 0;
}

.plan-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;


}

.plan-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: black;
  font-size: 18px;
}

/* BUTTON */
.plan-card button {
  margin-top: 15px;
  padding: 10px 40px;
  border: none;
  background: #01328E;
  color: white;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100%;
}

.plan-card button:hover {
  background: #08A1DD;
  transform: scale(1.05);
}

.france {
  color: #01328E;
}

.plan-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-card button {
  margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .plan-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }
}


/* SECTION FOUR SECTION FOUR SECTION FOUR SECTION FOUR SECTION FOUR */
.hero-wrapper {
  width: 100%;
  margin-top: 103px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  min-height: 100vh;
  position: relative;

  background-image: url("Rectangle\ 161125282.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

  padding-top: clamp(100px, 10vh, 160px);
  padding-left: clamp(20px, 5vw, 120px);
  padding-right: 20px;
}

.info-card {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  opacity: 1;
  transform: translateY(0);
}

.card-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #01328E;
  border-radius: 20px;
  font-size: 13px;
  color: #01328E;
  margin-bottom: 16px;
}

.close-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 55px;
  height: 55px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.close-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.info-card h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  color: #1639b3;
  margin-bottom: 14px;
  font-weight: 400;
  padding-right: 60px;
}

.info-card p {
  font-size: clamp(18px, 2.2vw, 26px);
  color: #000;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 70px;
}

.business {
  display: inline-block;
  position: absolute;
  padding: 10px 27px;
  background: #1e2fbf;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 11px;
  bottom: 27px;
  right: 28px;
  border: none;
}

.business:hover {
  background-color: #08A1DD;
}

/* ===== LAPTOP ===== */

@media (max-width: 1400px) {

  .hero-bg {
    padding-left: 50px;
    padding-top: 150px;
  }

  .info-card {
    max-width: 520px;
  }

  .info-card p {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 18px;
  }

  .info-card h2 {
    font-size: 25px;
    line-height: 1.2;
    color: #1639b3;
    margin-bottom: 14px;
    font-weight: 400;
  }

  .card-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid #01328E;
    border-radius: 20px;
    font-size: 9px;
    color: #01328E;
    margin-bottom: 16px;
  }

  .info-card a {
    display: inline-block;
    position: absolute;
    padding: 10px 20px;
    background: #01328E;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-size: 11px;
    bottom: 27px;
    right: 40px;
  }

  .close-icon img {
    position: absolute;
    right: 38px;
    width: 45px;
    height: 45px;
  }

  .info-card {
    width: 100%;
    max-width: 450px;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    margin-top: -106px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-left: 0;
  }

  .hero-bg {
    width: 100%;
    min-height: 184vh;
    position: relative;
    background-image: url(Rectangle\ 161125282.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 188px;
    padding-left: clamp(20px, 5vw, 120px);
    padding-right: 20px;
  }


}

@media (max-width: 1200px) {

  .hero-bg {
    padding-left: 50px;
    padding-top: 150px;
  }

  .info-card {
    max-width: 520px;
  }
}

/* ===== TABLET ===== */

@media (max-width: 992px) {

  .hero-bg {
    padding-left: 40px;
    padding-top: 130px;
    min-height: 850px;
  }

  .info-card {
    max-width: 450px;
    padding: 24px;
  }
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .hero-bg {
    padding-left: 0;
    padding-top: 100px;
    justify-content: center;
    align-items: flex-start;
    min-height: 700px;
  }

  .info-card {
    width: 92%;
    max-width: 92%;
    padding: 20px;
  }
}

/* ===== SMALL MOBILE ===== */

@media (max-width: 480px) {

  .hero-bg {
    padding-top: 80px;
    min-height: 620px;
  }

  .info-card {
    width: 94%;
    max-width: 94%;
    padding: 18px;
    border-radius: 16px;
  }
}

/* SECTION FIVE SECTION FIVE SECTION FIVE SECTION FIVE */

/* SECTION */
.faq-section {
  padding: 0px 20px;
  margin-top: 102px;
}

/* CONTAINER */
.faq-container {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

/* TAG */
.faq-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #01328E;
  border-radius: 30px;
  font-size: 12px;
  color: #01328E;
  margin-bottom: 18px;
}

/* TITLE */
.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #01328E;
  margin-bottom: 12px;
}

/* SUBTITLE */
.faq-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 45px;
}

/* FAQ WRAPPER */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ ITEM */
.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* ACTIVE ITEM */
.faq-item.active {
  background: #01328E;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #111;
}

/* ACTIVE QUESTION */
.faq-item.active .faq-question {
  color: #fff;
}

/* ICON */
.faq-icon {
  font-size: 24px;
  transition: 0.3s;
}

/* ROTATE ICON */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  display: none;
  padding: 0 26px 24px;
  text-align: left;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  max-width: 90%;
}

/* SHOW ACTIVE ANSWER */
.faq-item.active .faq-answer {
  display: block;
}

/* BUTTONS */
.faq-buttons {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* BUTTON */
.faq-btn {
  min-width: 149px;
  height: 40px;
  background: #01328E;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.faq-btn:hover {
  transform: translateY(-2px);
  background-color: #08A1DD;
}

.faq-icon img {
  transition: 0.3s ease;
  width: 30px;
  height: 30px;
}

/* Default blue */
.faq-icon img {
  filter: brightness(0);
  width: 30px;
  height: 30px;
}



/* Active item par bhi white */
.faq-item.active .faq-icon img {
  filter: brightness(0) invert(1);
  width: 30px;
  height: 30px;
}

/* MOBILE */
@media (max-width: 768px) {

  .faq-title {
    font-size: 30px;
  }

  .faq-subtitle br {
    display: none;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .faq-buttons {
    flex-direction: column;
    align-items: center;
  }

  .faq-btn {
    width: 100%;
    max-width: 250px;
  }
}