@import url('./reset.css');
/*Global Reset CSS file*/
@import url('./header.css');
/*Importing header styles*/
@import url('./footerShowcase.css');
/*Importing footer styles*/

:root {
  --primary-yellow: #ea9f1e;
  --primary-blue: #023352;
  --deep-navy: #011e2a;
  --off-white: #f7f9fa;
  --soft-blue: #5da7d1;
  --white: #ffffff;
  --soft-white: ;
  --dark-grey: ;
  --mid-grey: ;
  --blue-black: #010e13;
  --light-yellow: #fffaf1;
  --light-blue: #cfe2ec;
}

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

body {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light-yellow);
}

.home-intro {
  display: flex;
  gap: 6%;
}

#intro-text {
  position: relative;
  top: 80px;
  left: 100px;
}

#intro-img {
  position: relative;
  top: -35px;
  margin: 0 17px 0 0;
}

#intro-text span {
  color: var(--primary-yellow);
  font-weight: bolder;
  font-size: 54px;
}

#intro-text h1 {
  color: var(--blue-black);
  font-weight: bolder;
  font-size: 64px;
}

#intro-text p {
  margin: 10px 0;
  font-size: 24px;
  line-height: 130%;
}

.btn-intro {
  display: flex;
  margin: 8% 0 2% 0;
  gap: 15%;
}

i {
  font-size: 20px;
  padding-top: 4%;
}

#btn-apply {
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 8px;
  background-color: var(--primary-yellow);
  color: #010e13;
  border: none;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 0.6s;
}

#btn-explore {
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 8px;
  background-color: var(--light-yellow);
  color: #023352;
  border: 1px solid var(--primary-blue);
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 0.6s;
}

#btn-apply:hover {
  background-color: var(--primary-blue);
  color: var(--light-yellow);
}

#btn-explore:hover {
  background-color: var(--primary-yellow);
  color: var(--blue-black);
  border: 1px solid var(--primary-yellow);
}

#accomplishment {
  position: relative;
  top: -60px;
  width: auto;
  height: auto;
  border-radius: 40px;
  background-color: var(--off-white);
  margin: 0 3%;
  box-shadow: 1px 1px 10px 1px var(--blue-black);
}

.list {
  display: flex;
  gap: 9%;
  margin: 3% 2% 2% 7%;
}

.demacation {
  display: flex;
}

.section-offers {
  margin: 0 0 0 100px;
}

.section-offers h2 {
  font-size: 38px;
  padding: 20px 0;
}

.section-offers p {
  font-size: 24px;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: auto;
  margin: 4% 100px;
}

/* Reveal-on-scroll animation styles */
.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.995);
  transition:
    opacity 1000ms ease-out,
    transform 200ms ease-out;
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: transform 0.2s;
}

#card:hover {
  transform: translateY(-5px);
}

#card img {
  padding: 5% 0 10% 0;
}

#card h3 {
  font-size: 25px;
  font-weight: bolder;
  padding: 2% 0 7% 0;
}

#card p {
  font-size: 18px;
  padding: 2% 0 10% 0;
}

.home-tracks {
  background-color: #fff;
}

.home-tracks h1 {
  font-size: 40px;
  font-weight: bold;
  margin: 2% 100px;
}

.track-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: auto;
  margin: 4% 100px;
}

.track-card {
  background: var(--light-yellow);
  border-radius: 25px 20px 20px 20px;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  overflow: hidden;
}

.mini {
  margin: 6% 4%;
  background-color: var(--light-blue);
  width: 45%;
  padding: 2% 5%;
  text-align: center;
  border-radius: 18px;
  font-size: 14px;
  font-weight: bold;
}

.mini-2 {
  margin: 6% 4%;
  background-color: #fff1d8;
  width: 45%;
  padding: 2% 5%;
  text-align: center;
  border-radius: 18px;
  font-size: 14px;
  font-weight: bold;
}

.mini-3 {
  margin: 6% 4%;
  background-color: #decfec;
  width: 45%;
  padding: 2% 5%;
  text-align: center;
  border-radius: 18px;
  font-size: 14px;
  font-weight: bold;
}

.track-card h4 {
  font-size: 22px;
  margin: 6% 6%;
}

.track-card p {
  font-size: 18px;
  margin: 6% 0% 6% 6%;
}

hr {
  border: 1px solid var(--blue-black);
  width: auto;
  margin: 12% 4% 4% 4%;
}

.link {
  display: flex;
  margin: 4% 6% 6% 6%;
}

.link a {
  text-decoration: none;
  color: var(--primary-yellow);
  margin-left: 15px;
}

.why-choose-us {
  margin: 7% 0 0 0;
  background-color: #fff;
}

#heading {
  text-align: center;
}

#heading h1 {
  font-size: 45px;
  font-weight: bold;
  margin: 5% 0 1% 0;
}

#heading p {
  font-size: 26px;
  margin-bottom: 10%;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
  gap: 5%;
  max-width: 1200px;
  margin: 4% 4% 15% 4%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

#benefits {
  text-align: center;
}

#benefits h3 {
  margin: 6%;
}

.testimony {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5% 0;
}

.testimony h1 {
  font-size: 45px;
  font-weight: bold;
  margin: 2% 0 1% 0;
}

.testimony p {
  font-size: 26px;
}

.testimonial-card {
  background-image: url(../assets/Images/bg2.png);
  background-color: var(--primary-blue);
  color: white;
  display: flex;
  margin: 5% 100px 0 100px;
  border-radius: 10px;
  padding: 1% 2% 1% 1%;
  gap: 3%;
}

#userImage {
  width: 321px;
  height: 328px;
  border-radius: 5%;
}

#userText {
  margin: 2% 3% 5% 0;
  font-size: 23px;
  line-height: 32px;
}

#userName {
  font-size: 22px;
  margin-bottom: 2%;
}

.profile {
  display: flex;
  gap: 7%;
}

.profile h4 {
  font-size: 18px;
}

.profile span {
  color: var(--primary-yellow);
  text-decoration: underline;
  font-size: 18px;
}

#prev,
#next {
  position: absolute;
  background: var(--primary-yellow);
  color: black;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

#prev {
  right: 95%;
}

#next {
  left: 95%;
}

#body-faqs {
  margin: 3% 0 0 0;
  background-color: #fff;
}

#faqs {
  text-align: center;
  font-weight: 600px;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 3% 0;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1rem;
  margin-left: 150px;
  margin-bottom: 3%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  padding: 10px 30px;
  margin: 2% 0 0 0;
  background: var(--light-blue);
  border-radius: 12px;
}

.faq-question {
  font-size: 18px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  position: relative;
  margin: 2%;
  padding: 0 0 0 8%;
}

.faq-question::after {
  content: '+';
  position: absolute;
  top: 2%;
  left: 0;
  font-size: 26px;
  color: var(--primary-yellow);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  color: black;
  margin-top: 10px;
  line-height: 1.6;
  overflow: hidden;
  max-height: 0;
}

.faq-item.active .faq-answer {
  display: block;
  max-height: 300px;
}

.cta {
  background: url(../assets/Images/bg.png);
  background-color: var(--primary-yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5%;
}

.cta-content {
  text-align: center;
}

.cta-content h1 {
  font-size: 45px;
  line-height: 1.6;
}

.cta-content p {
  font-size: 30px;
  margin-bottom: 4%;
}

.cta-content h6 {
  font-size: 18px;
  font-style: italic;
  margin-top: 3%;
}

#cta-btn {
  border: none;
  padding: 2% 4%;
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
  color: var(--primary-yellow);
  background-color: #023352;
  border-radius: 22px;
  cursor: pointer;
}

#cta-btn:hover {
  background-color: black;
  color: white;
}

/* Mobile Responsive - home-intro section only */
@media (max-width: 768px) {
  .home-intro {
    flex-direction: column;
    gap: 2%;
    align-items: center;
  }

  #intro-img {
    display: none;
  }

  #intro-text {
    position: relative;
    top: 20px;
    left: 0;
    text-align: center;
    padding: 0 20px;
  }

  #intro-text span {
    font-size: 32px;
  }

  #intro-text h1 {
    font-size: 36px;
  }

  #intro-text p {
    font-size: 16px;
    line-height: 130%;
  }
  .btn-intro {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .btn-intro a {
    width: 100%;
  }

  .btn-intro div {
    width: 100%;
  }

  #btn-apply,
  #btn-explore {
    width: 100%;
    font-size: 16px;
  }

  i {
    font-size: 14px;
  }

  #intro-img {
    position: relative;
    top: 0;
    margin: 0;
    width: 100%;
    max-width: 300px;
  }

  #intro-img img {
    width: 100% !important;
    height: auto !important;
    max-width: 300px;
  }

  /* Accomplishment section responsive */
  #accomplishment {
    position: relative;
    top: 0;
    margin: 5% 2%;
    border-radius: 20px;
    padding: 20px;
    margin-top: 2rem;
  }

  .list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 5% 0;
  }

  .demacation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .demacation img {
    width: 50px;
    height: 50px;
  }

  .demacation h1 {
    font-size: 28px !important;
    margin: 0;
  }

  .demacation p {
    font-size: 14px;
    margin: 0;
  }

  /* Section offers responsive */
  .section-offers {
    margin: 5% 20px 0 20px;
    text-align: center;
  }

  .section-offers h2 {
    font-size: 28px;
    padding: 15px 0;
  }

  .section-offers p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Grid layout responsive */
  .grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 5% 20px;
  }

  #card {
    padding: 20px;
  }

  #card h3 {
    font-size: 20px;
    padding: 3% 0 5% 0;
  }

  #card p {
    font-size: 16px;
    padding: 2% 0 10% 0;
  }

  /* Home tracks responsive */
  .home-tracks h1 {
    font-size: 28px;
    margin: 5% 20px;
  }

  .track-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 5% 20px;
  }

  .track-card {
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
  }

  .track-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .mini,
  .mini-2,
  .mini-3 {
    margin: 4% 0;
    width: 60%;
    padding: 2% 5%;
    font-size: 12px;
  }

  .track-card h4 {
    font-size: 18px;
    margin: 5% 0;
    padding: 0 20px;
  }

  .track-card p {
    font-size: 14px;
    margin: 3% 0;
    padding: 0 20px;
  }

  hr {
    margin: 8% 0;
  }

  .link {
    display: flex;
    margin: 4% 0;
    font-size: 14px;
  }

  /* Why choose us responsive */
  .why-choose-us {
    margin: 3% 0 0 0;
  }

  #heading h1 {
    font-size: 28px;
    margin: 5% 20px;
  }

  #heading p {
    font-size: 18px;
    margin-bottom: 5%;
    padding: 0 20px;
  }

  .benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 5% 20px 15% 20px;
  }

  #benefits {
    text-align: center;
    padding: 20px;
  }

  #benefits h3 {
    margin: 3%;
    font-size: 18px;
  }

  #benefits p {
    font-size: 14px;
  }

  /* Testimony responsive */
  .testimony h1 {
    font-size: 1.6rem;
    margin: 5% 0;
    padding: 0 1rem;
  }

  .testimony p {
    font-size: 18px;
    padding: 0 20px;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    margin: 5% 20px;
    padding: 20px;
    gap: 20px;
  }

  #userImage {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  #userText {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  #userName {
    display: flex;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 4%;
  }

  .profile {
    display: flex;
    flex-direction: row;
    gap: 55px;
    margin-top: 3%;
  }

  .profile h4 {
    font-size: 14px;
    margin: 0;
  }

  .profile span {
    font-size: 14px;
    margin: 0;
  }

  #prev,
  #next {
    padding: 6px 10px;
    font-size: 14px;
  }

  #prev {
    right: auto;
    left: 10px;
  }

  #next {
    left: auto;
    right: 10px;
  }

  /* FAQs responsive */
  #faqs {
    font-size: 28px;
    margin: 5% 20px;
  }

  .faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    width: 90%;
  }

  .faq-item {
    padding: 20px 20px;
    margin: 0;
  }

  .faq-question {
    font-size: 14px;
    margin: 0;
    padding: 0 0 0 25px;
  }

  .faq-question::after {
    font-size: 20px;
    top: 0%;
  }

  .faq-answer {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.5;
  }

  /* CTA responsive */
  .cta {
    padding: 5% 20px;
  }

  .cta-content h1 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 3%;
  }

  .cta-content p {
    font-size: 18px;
    margin-bottom: 3%;
  }

  .cta-content h6 {
    font-size: 14px;
    margin-bottom: 5%;
  }

  #cta-btn {
    padding: 12px 30px;
    font-size: 16px;
    margin: 6% 0;
  }

  #userText {
    text-align: center;
    margin-bottom: 1rem;
  }

  .profile {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
