:root{
  --blue:#0b4ea2;
  --gold:#c2a21b;
  --orange:#ff3b00;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Roboto', sans-serif;
  background:#f9fbfd;
}

/* ================= NAVBAR ================= */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--blue);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 30px;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  list-style:none;
  padding:0;
  margin:0;
  align-items:center;
  justify-content:space-around;
  width: 100%;
}

.nav-links li{
  position:relative;
  flex-shrink: 0;
}

.nav-links > li > a{
  display:flex;
  align-items: center;
  padding:10px 12px;
  color:#fff;
  text-decoration:none;
  white-space: nowrap;

  font-family:'Poppins', sans-serif;
  font-size:15px;
  font-weight:500;
}

.nav-links > li:hover{
  background:#093d80;
}

/* DROPDOWN */
.dropdown{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:200px;
  display:none;
  box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.dropdown a{
  display:block;
  padding:12px 16px;
  color:#222;
  text-decoration:none;
  font-size:14px;
}

.dropdown a:hover{
  background:#f2f2f2;
}

.has-dropdown:hover .dropdown{
  display:block;
}
/* CONTACT STRIP */
.contact-strip{
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  background:var(--gold);
  padding:5px 15px;
  gap: 10px;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:14px;
  border-radius:4px;
}

/* ================= HERO ================= */
.hero{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  min-height: 80vh;
  padding: 60px 80px;
  box-sizing: border-box;
  background:linear-gradient(to right,#eef6fb,#f9fcff);
  margin-top: 0;
}

.hero-text{
  max-width:55%;
  align-self: flex-start;
  padding-top: 20px;
}

.hero-text h2{
  font-family:'Poppins', sans-serif;
  font-size: 40px;
  font-weight:800;
  color:var(--gold);
  letter-spacing:2px;
  margin-top: 0;
  margin-bottom: 5px;
}

.hero-text h3{
  font-family:'Poppins', sans-serif;
  font-size:44px;
  font-weight:800;
  color:var(--blue);
  margin-bottom:20px;
  margin-top: 0;
}
/*Arrow line starts
.mate-arrow {
  position: relative;
  display: inline-block;
  padding-right: 80px; /* space for arrow */


 /*Arrow line
.mate-arrow::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 55px;
  height: 3px;
  background-color: #1f4fa3; /* your brand blue */
  


/* Arrow head
.mate-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 12px solid #1f4fa3;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
/*Arrow line ends*/

.hero-text p{
  font-weight:800;
  font-family:'Poppins', sans-serif;
  font-size: 30px;
}

:root {
  --border-color: #e0e6ed;
  --text-color: #7d8b9a;
  --primary-blue: #007bff;
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

.search-container {
  width: 100%;
  max-width: 480px;
  position: relative;
  margin-top: 15px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1.5px solid #dcdcdc;
  border-radius: 6px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.input-wrapper:focus-within {
  box-shadow: 0 2px 8px rgba(191,163,77,0.2);
  border-color: #bfa34d;
}

.search-icon {
  font-size: 16px;
  color:#1a4a8d;
  margin-right: 12px;
}

input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: #333;
}

input::placeholder { color: var(--text-color); }

/* Dropdown Logic */
.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 999;
  overflow: hidden;
  min-width: 450px;
}

/* Expandable Rows */
summary {
  list-style: none;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #1a4a8d;
  border-bottom: 1px solid #f0f0f0;
}

summary:hover { background: #f9f9f9; }


.select-btn {
  white-space: nowrap; /* This prevents "Click to Select" from splitting */
  flex-shrink: 0;      /* This prevents the button from getting squashed */
  margin-left: 10px;
  margin-right: auto;   /* Adds a gap between the text and the button */
  position: relative;
  align-self: flex-start;
  top: 2px;
  margin-top: 2px;
  margin-right: 5px;


  padding: 4px 8px;
  font-size: 12px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;

}


.summary-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;         /* Uses all available width */
  padding: 10px 15px;
  box-sizing: border-box;
}

.summary-content span {
  max-width: 70%; /* Leaves 30% of the space for the button */
  display: inline-block;
  line-height: 1.4;
  word-wrap: break-word; 
  overflow-wrap: break-word;
}

/* Custom Arrow
.arrow::after {
  content: '▶';
  font-size: 10px;
  transition: transform 0.2s;
  color: var(--text-color);
}

details[open] .arrow::after {
  transform: rotate(90deg);
}

/* Sub-items style */
.sub-options {
  background: #f1f5f9;
}

.sub-options a {
  display: block;
  padding: 12px 40px;
  text-decoration: none;
  color: #4a5568;
  font-size: 14px;
}

.sub-options a:hover {
  background: #e2e8f0;
  color: var(--primary-blue);
}

.hero-image{
  margin-top: -95px;;
}

/*.hero-text p{
  font-size:17px;
  line-height:1.7;
  color:#333;
  max-width:520px;
  margin-bottom:35px;
}*/

/*.hero-buttons{
  display:flex;
  gap:15px;
}


.btn-primary,
.btn-secondary{
  padding:14px 28px;
  border-radius:30px;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  text-decoration:none;
  color:#fff;
}

.btn-primary{background:var(--blue);}
.btn-secondary{background:var(--gold);}
*/

.hero-image img{
  height: auto;
  width: 100%;
  max-width:520px;
  mix-blend-mode: multiply;
  display: block;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .hero{
    flex-direction:column;
    text-align:center;
    padding:50px 25px;
  }

  .hero-text{
    max-width:100%;
  }

  .hero-image{
    margin-top:40px;
  }

  .navbar{
    flex-direction:column;
    padding:0;
  }
}


        /* -------- CARDS SECTION -------- */
        .cards {
            padding: 60px 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .card {
            background-color: #fff;
            padding: 24px;
            border-radius: 6px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }

        .card h3 {
            margin-bottom: 12px;
        }

        .card p {
            margin-bottom: 16px;
        }

        .library { border-top: 4px solid #0077cc; }
        .english { border-top: 4px solid #f57c00; }
        .learning { border-top: 4px solid #2e7d32; }


         /* -------- ABOUT YOU SECTION -------- */
        
        
.about-you {
padding: 10px 20px;
background-color: whitesmoke;
}

.main-heading{
    text-align: center;
    margin-bottom: 100px;
}

.question-block.with-image {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  margin-left: 80px;
  
}

.question-block.with-image img{
    display: inline-block;
    vertical-align: top;
    justify-content: flex-start;
    width: clamp(220px, 12vw, 820px);
    height: auto;
    margin-right: 40px;
    margin-bottom: 40px;
}

.question-content{

    display: block;
    max-width: 520px;
    margin-left: -20px;
}

.with-image{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.with-image.reverse {
  flex-direction: row-reverse;
}

.question-image{
    width: 120px;
    flex-shrink: 0;
}

.question-content ul{
    max-width: 600px;
    margin: 8px 0 0 0;
    padding-left: 18px;
    margin-top: 10px;
}

.main-question {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 20px; 
}

.shift-right {
  margin-left: 120px;
}

.shift-right-1{
   
    margin-left: 670px;
}

.supporting-points1 {
  margin-left: 22px;
  padding-left: 0;
  margin-bottom: 100px;
  font-size: medium;
}

.supporting-points2 {
  margin-left: 22px;
  padding-left: 0;
  margin-bottom: 100px;
  font-size: medium;
}

.supporting-points3 {
  margin-left: 22px;
  padding-left: 0;
  margin-bottom: 100px;
  font-size: medium;
}

.supporting-points4 {
  margin-left: 22px;
  padding-left: 0;
  margin-bottom: 100px;
  font-size: medium;
}

.supporting-points li {
  font-size: 16px;
  color: #555;
  margin: 6px 0;
}
             
      /* FAQ (Frequently Asked Question) */


.faq-container {
  width: 100%;
  max-width: 100%;
  margin: 40px 0;
  padding: 0 40px;
  font-family: Arial, sans-serif;
}

.faq-heading {
  font-size: 28px;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
}

.faq-question {
  padding: 18px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1f4fa3; /* blue like image */
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "▾";
  position: absolute;
  right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 10px 20px;
}



.cta {
  background: #ffffff;
  padding: 80px 20px 100px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-content h2 {
  font-size: 32px;
  font-family:'Roboto', sans-serif;
  font-weight: 700;
  color: #000;
}

.cta-content button {
  padding: 14px 32px;
  font-size: 16px;
  font-family:'Roboto', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background-color: #f3f3f3;
  color: #000;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-content button:hover {
  background-color: #0b4ea2;
  color: #fff;
}


 /* -------- CTA --------
  .cta {

  position: relative;
  text-align: center;
  padding: 160px 20px;
  background: linear-gradient(
  180deg,
    #eef6ff 0%,
    #dfeeff 50%,
    #cfe6ff 100%
  );
  overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
  }
   /* .cta-wave {
  padding: 120px 20px 90px;
  background: linear-gradient(
    180deg,
    #eef6ff 0%,
    #dfeeff 50%,
    #cfe6ff 100%
  );
}

.cta-wave h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b3c87;
}

.cta-button {
  background: #ffffff;
  padding: 40px 20px 80px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(180deg, #0b4ea2, #083b7a);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(11, 78, 162, 0.3);
}

        /* wave shape */

  /*.cta::before {

  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 140px;
  background: white;
  border-bottom-left-radius: 50% 120px;
  border-bottom-right-radius: 50% 120px;

        }

  .cta::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 160px;
  background: white;
  border-top-left-radius: 50% 140px;
  border-top-right-radius: 50% 140px;
}


        /* content stays above wave */


/*.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  
}

.cta h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b3f8a;
  margin-bottom: 24px;
}

.cta button {
  padding: 14px 40px;
  font-size: 17px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b4ea2, #083d78);
  box-shadow: 0 12px 30px rgba(11, 78, 162, 0.35);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;


  color: white;
  cursor: pointer;
  border: none;
}

.cta button:hover {

  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(11, 78, 162, 0.45);

}

        /* -------- FOOTER -------- */


        .footer {
  background-color: #d9ebfb;
  padding: 50px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 0 40px;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  width: 180px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: #0b3c7a;
  font-size: 25px;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #0b3c7a;
  font-size: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  color: #0b3c7a;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 0;
  padding-top: 0;
  align-self: flex-start;

}

.footer-contact p{

    margin-top: 0;
    margin: 0 0 8px;
}

.footer-contact i {
  margin-right: 10px;
}

.contact-item{

    display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-item i {
  margin-top: 3px; /* fine alignment */
}

.contact-item span {
  line-height: 1.5;
}
