/* About Section */
.about {
  padding: 40px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #173054;
}

.about-text span{
  font-size: 2.8 rem;
  margin-bottom: 20px;
  color: #0f4c61;
  text-decoration: underline;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.about-text a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  color: white;
  background: #171994;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.about-text a:hover {
  color: #171994;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(#171994, #3a868f) border-box;
  transform: translateY(-3px);
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.6s ease;
}

/* About Section End */

/* USP Section */
.usp-section {
  padding: 50px 10%;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.usp-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: rgba(9, 7, 172, 0.182);
  border-radius: 60% 40% 50% 70% / 40% 50% 70% 60%;
  z-index: 0;
}

.usp-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(0, 182, 179, 0.24);
  border-radius: 50% 40% 60% 30% / 40% 70% 30% 60%;
  z-index: 0;
}

.usp-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.usp-points {
  flex: 1;
  min-width: 300px;
}

.usp-points h2 {
  font-size: 38px;
  margin-bottom: 30px;
  color: #171994;
}

.usp-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,128,128,0.25);
}

.usp-icon {
  font-size: 22px;
  font-weight: bold;
  color: white;
  background: #173054;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.usp-text h3 {
  font-size: 20px;
  color: #173054;
  margin-bottom: 8px;
  text-decoration: underline;
}

.usp-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.usp-highlight {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  border-left: 6px solid #173054;
  background: rgba(2, 42, 136, 0.06);
  border-radius: 12px;
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.usp-highlight p {
  margin-bottom: 20px;
}

.usp-highlight h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #222;
}

.usp-highlight h2 span {
  color: #00a896;
}

.usp-card, .usp-highlight {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.usp-card.show, .usp-highlight.show {
  opacity: 1;
  transform: translateY(0);
}
/* USP Section End */

/* VMV [Vision, Mission, Values] */

.vmv-tabbed-section {
  padding: 50px 50px;
  background-color: #ffffff;
  text-align: center;
}

.vmv-tab-title {
  font-size: 40px;
  color: #171994;
  margin-bottom: 60px;
}

.vmv-tab-title span {
  color: #3a868f;
}

.vmv-tabs input[type="radio"] {
  display: none;
}

.vmv-tab-labels {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.vmv-tab-labels label {
  padding: 12px 30px;
  background-color: #f5f5f5;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  color: #171994;
  transition: background 0.3s, transform 0.3s;
}

.vmv-tab-labels label:hover {
  transform: translateY(-3px);
}

.vmv-tab-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  animation: fadeIn 0.5s ease-in-out;
}

#tab1:checked ~ .vmv-tab-labels label[for="tab1"] {
  background-color: #171994;
  color: white;
}
#tab2:checked ~ .vmv-tab-labels label[for="tab2"] {
  background-color: #171994;
  color: white;
}
#tab3:checked ~ .vmv-tab-labels label[for="tab3"] {
  background-color: #171994;
  color: white;
}

#tab1:checked ~ #content1 { display: block; }
#tab2:checked ~ #content2 { display: block; }
#tab3:checked ~ #content3 { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .vmv-tab-title { font-size: 32px; }
  .vmv-tab-labels { gap: 15px; flex-direction: column; }
}

/* End */

/* Services Section */

.services-cards {
  padding: 30px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #171994;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #173054;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card i {
  font-size: 30px;
  color: #3a868f;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  color: #171994;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Services Section End */

/* Timeline */

.timeline-carousel {
  padding: 30px 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.carousel-title {
  font-size: 40px;
  color: #173054;
  margin-bottom: 50px;
}

.carousel-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 15px;
}

.carousel-item {
  flex: 0 0 250px;
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.carousel-item:hover {
  transform: translateY(-5px);
}

.timeline-icon {
  font-size: 40px;
  color: #171994;
  margin-bottom: 15px;
}

.carousel-item.future .timeline-icon {
  color: red;
}

.carousel-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #3a868f;
}

.carousel-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}
.carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: #171994;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .carousel-item { flex: 0 0 80%; }
}

/* End */

/* Video Container */

.video-section {
  padding: 40px 20px;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  max-width: 1000px;
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 45%; /* maintains 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transition: transform 0.3s ease;
}

.video-wrapper video:hover {
  transform: scale(1.02);
}

/* Video Conatiner End */

/* Statistics Section */
.stats-section {
  position: relative;
  padding: 50px 20px;
  background: #f3f7fb;
  overflow: hidden;
  text-align: center;
}

.stats-overlay {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(182, 0, 22, 0.08);
  border-radius: 50% 35% 55% 45%;
  z-index: 0;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card h2 {
  font-size: 48px;
  font-weight: 700;
  color: #173054;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.stats-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(0, 128, 128, 0.08);
  border-radius: 40% 60% 55% 45% / 55% 35% 65% 45%;
  z-index: 0;
}
/* Statistics End */

/* FAQs */

.faq-section {
  padding: 40px 20px;
  background: #f9f9f9;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.faq-section.show {
  opacity: 1;
  transform: translateY(0);
}

.faq-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #0f4c61;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.faq-column {
  flex: 1;
}

.faq-divider {
  width: 2px;
  background: #0f4c61;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  padding: 15px 20px;
  font-size: 19px;
  font-weight: 500;
  color: #171994;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 17px;
  line-height: 1.5;
  color: #555;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* FAQs End */

/* Plans */

.profit-plans {
  padding: 40px 10%;
  background: #fff;
  text-align: center;
}

.profit-plans h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #171994;
}

.profit-plans h2 span {
  color: #0f4c61;
  text-decoration: underline;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.plan-card {
  background: #f9f9f9;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.plan-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #171994;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.plan-card ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.plan-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f4c61;
  font-weight: bold;
}

.plan-cta {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  border: 2px solid #171994;
  color: #171994;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.plan-cta:hover {
  background: #171994;
  color: white;
}

.plan-card.pro {
  background: linear-gradient(135deg, #3a868f, #171994);
  color: white;
  transform: scale(1.05);
}

.plan-card.pro h3,
.plan-card.pro ul li,
.plan-card.pro ul li::before {
  color: white;
}

.plan-card.pro .plan-cta {
  background: white;
  color: #171994;
  border: none;
}

.plan-card.pro .plan-cta:hover {
  background: #f1f1f1;
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffce00;
  color: #333;
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .profit-plans h2 {
    font-size: 2rem;
  }

  .plan-card {
    padding: 30px 20px;
  }
}

/* End */

/* Responsive FAQs */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    gap: 20px;
  }

  .faq-divider {
    display: none;
  }

  .faq-heading {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .faq-item {
    margin-bottom: 15px;
  }

  .faq-question {
    font-size: 15px;
    padding: 12px 16px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 0 16px;
  }
}