* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f8f9ff;
  color: #1a1a1a;
}
 h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height:2;
}

.highlight {
  color: #0077cc;
}

.tagline {
  color:#002b5bff;
  font-weight: bold;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 1px rgba(4, 11, 53, 0.88);
  margin-bottom: 1rem;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ctaicon {
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 10px;
  text-align: center;
  line-height: 40px;
  color: white;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
  color: #0077cc;
}

.ctaicon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 2rem;
    font-weight: bold;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p {
    font-size: 0.95rem;
  }
  .tagline {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}


}

/* Language Buttons */
.language-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.language-toggle button {
  padding: 0.5rem 1rem;
  border: none;
  background: #e0e0e0;
  color: #000;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-toggle button:hover {
  background-color: #0077cc;
  color: #fff;
  transform: scale(1.05);
}

.language-toggle button.active {
  background-color: #0077cc;
  color: white;
  box-shadow: 0 0 10px rgba(0, 119, 204, 0.6);
  transform: scale(1.1);
}

/* Language content */
.lang {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  transform: scale(0.98);
}

.lang.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Language content fade */


.top-strip {
  background: #fffde0;
  text-align: center;
  padding: 0.5rem;
  font-size: 14px;
  border-bottom: 1px solid #f4f4f4;
}

/* hero section style */

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Overlay using ::before */
.hero::before {
 content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
 background: linear-gradient(
  180deg,
  hsla(46, 72%, 60%, 0.66) 0%,
  rgba(239, 240, 239, 0.36) 33%,
  rgba(20, 49, 63, 0.23) 66%,
  rgba(247, 247, 247, 0.54) 100%
);
  z-index: 0;
}

.hero-content {
  margin-top: 1rem;
  position: relative;
  z-index: 10; /* Ensure content is above the overlay */
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}



.hero-video {
  aspect-ratio: 12 / 7; /* custom aspect ratio */
  width: 100%;
  max-width: 840px;
  margin: 1.5rem auto;
  border-radius: 8px;
  overflow: hidden;
  shadow: 0 0 10px rgba(0, 0, 0, 0.23);
  border: 2px solid #0077cc;
  position: relative;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  font-weight:bold;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.consultation-btn1 {
  position: relative;
  overflow: hidden;
    font-weight:bold;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  background-color: #0077cc;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.consultation-btn2 {
  position: relative;
  overflow: hidden;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  background-color: #FEC401;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.consultation-btn1:hover,
.consultation-btn2:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 119, 204, 0.6);
}
/* Light slide animation */
.consultation-btn1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2s infinite;
}
.consultation-btn2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


.btn {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  border: none;
  background-color: #0077cc;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}


.btn:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  color: #0077cc;
  border: 2px solid #0077cc;
}

.btn-outline:hover {
  background-color: #0077cc;
  color: white;
}

.btn-primary {
  background-color: #FEC401;
}

.btn-primary:hover {
  background-color: #ddaa02ff;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
.hero-video {
  aspect-ratio: 8 / 9; /* custom aspect ratio */
}

  .hero-video iframe {
  height: 100%;
}
}

/* stats section style */
.stats {
  z-index: 1; 
  position: relative;
  margin: 0 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  background-color: #002b5bff;
  color: white;
  padding:2rem;
  flex-wrap: wrap;
  text-align: center;
}

.stat-box {
  font-size: 2rem;
  font-weight: bold;
  color:#ffd001ff;

}

.stat-box span {
  color:#fff;
  font-size: 1rem;
  font-weight: normal;
  gap: 0.5rem;
  display: block;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  
  .stats {
    padding: 1rem 2rem;
  }
  .cards {
    flex-direction: column;
  }
}

/* Objection Block */
.objections {
  text-align: center;
  padding: 3rem 1rem;
}



.objections .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  background: #f1f1f1;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 250px;
}

.card img {
  width: 60px;
  margin-bottom: 1rem;
}

.card h3 {
  color: #002b5b;
}

.card p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .objections .cards {
    flex-direction: column;
    align-items: center;
  }

}



/* meet your mentor style */

.mentor-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  margin: 0 2rem;
  border-radius: 10px;
}

.mentor-bg {
  flex: 1;
  min-height: 400px;
  background-image: url('/vrushal-s.jpeg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  border-radius: 10px 0px 0px 10px;
}

.mentor-content {
  flex: 1;
  background: #002b5b;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0px 10px 10px 0px;
}

.mentor-content h2 {
  color: #ffd001ff;
  margin-bottom: 0.5rem;
}

.mentor-content h3 {
  color: #fff;
}

.mentor-content p {
  color: #fff;
  margin-bottom: 2rem;
}

.mentor-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.highlight-card {
  background-color: hsla(209, 100%, 50%, 0.09);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.highlight-card h3 {
  color: #ffd001ff;
}

.highlight-card p {
  color: #fff;
}

@media (max-width: 768px) {
  .mentor-section {
    flex-direction: column;
    margin: 0 0.5rem;

  }

  .mentor-bg {
    height: 300px;
    border-radius: 10px 10px 0px 0px;
  }

  .mentor-content {
    padding: 2rem 1.5rem;
    border-radius: 0px 0px 10px 10px;
  }

  .mentor-highlights {
    justify-content: center;
    flex-wrap: wrap;
  }
  .highlight-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }
}

/* testimonial sections style */
.testimonial-section {
  padding: 3rem 1rem;
  background-color: #f4f9ff;
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-header {
  margin-bottom: 2rem;
}

.testimonial-header h2 {
  color: #0077cc;
  margin-bottom: 0.5rem;
}

.testimonial-header p {
  font-size: 1rem;
  color: #333;
}

.testimonial-video {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.testimonial-video video {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-header h2 {
    font-size: 1.5rem;
  }

  .testimonial-header p {
    font-size: 0.95rem;
  }
}

/* faq style */

.faq {
  background-color: rgb(233, 239, 245);
  border-radius: 20px;
  padding: 4rem 4rem;
  text-align: center;
  margin: 1rem 2rem;
}
.accordion {
  display: grid;
  padding: 1rem;
  margin: 1rem 2rem;
}

.accordion li {
  list-style: none;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}

.accordion li label {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

label::after {
  content: "+";
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

input[type="radio"] {
  display: none;
}

.accordion .content {
  max-height: 0;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

.accordion input[type="radio"]:checked + label + .content {
  max-height: 100px; /* Adjust as needed */
  padding: 0.5rem;
}

.accordion input[type="radio"]:checked + label::after {
  content: "-";
}

/* Responsive */
@media (max-width: 768px) {
 .faq {
    padding: 2rem 1rem;
    margin:0.5rem 0.5rem 5rem 0.5rem;
  }
  .faq .accordion {
    margin: 0.5rem;
    padding: 0rem;
  }
  .faq .accordion li {
    padding: 0.3rem;
  }
}

/* footer secton style */
.footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 42, 91, 0.77);
  color: white;
  padding: 1rem 1rem;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 999;
  display: none;
  animation: fadeInUp 0.5s ease;
  border-top: 2px solid #fdfdfdff;
}

.footer-cta-content {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1rem;
}
.footer-cta-content button {
  margin: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: #ffc107;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer-cta-content button:hover {
  background: #e0a800;
}

.footer-cta-content h3 {
  margin-bottom: 0.5rem;
}

.footer-cta {
  transition: all 0.3s ease;
}

.footer-cta.visible {
  opacity: 1;
  pointer-events: all;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-cta{
    padding:1rem ;
  }
  .footer-cta-content {
  flex-wrap:wrap;
  padding:0;
  gap:0.1rem;
}
  .footer-cta-content h3{
    display:none;
  }
  .footer-cta-text{
    display:none;
  }
}


