.btnelement { color: red; }

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}

/* Home */

#header {
  width: 100vw;
}

.hero {
  background: url(https://knorishblobstorage-cbbeebf4h6dudbf2.z01.azurefd.net/public/0ae4e5ae-f709-4b50-89c8-7ebfac33c8c0/customfile/01082025/973ea.png);
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80vh;
  padding: 100px 60px;
  margin: 80px 0 0 0;
  background-size: cover;
  gap: 40px;
}

.text-side {
  padding-right: 40px;
}

.text-side h2 {
  font-size: 32px;
  color: #1e1e1e;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.text-side h1 {
  font-size: 52px;
  color: #003366;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 60px;
}

.card-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.card {
  width: 220px;
  height: 400px;
  background-color: #003366;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card p {
  background-color: #003366;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
}

.arrow {
  background-color: #003366;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  user-select: none;
}

.card.active {
  width: 320px;
}

.bottom-text {
  margin: 60px 340px 0 0;
  font-size: 22px;
  color: #003366;
  width: 100%;
}

.bottom-text a {
  text-decoration: none;
  color: #003366;
  font-weight: bold;
}

/* FEATURED LOGOS */
#featured-logos {
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #00275f;
}

#featured-logos img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

#featured-logos img:hover {
  transform: scale(1.05);
}

/* COURSES */
#courses {
  width: 100vw;
  background: #0a3f8b;
  color: white;
  padding: 40px 20px;
}

#courses h2,
#testimonials h2 {
  color: white;
  border-radius: 40px;
  text-align: center;
}

#card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
}

.course-card {
  background: white;
  color: #003366;
  padding: 20px;
  width: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-card h4 {
  font-weight: 700;
}

#card-container .course-card a {
  background-color: #00275f;
  color: white;
  border-radius: 40px;
  padding: 10px 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  width: 180px;
}

#card-container .course-card a i {
  font-size: 20px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 4px 8px;
}

.course-card img {
  width: 100%;
}

.course-description {
  font-size: 16px;
  margin: 20px 0;
}

.course-card a {
  text-decoration: underline;
}

/* TESTIMONIALS */
#testimonials {
  width: 100vw;
  background: #0a3f8b;
  padding: 40px 20px;
  text-align: center;
}

#testimonial-grid {
  display: flex;
  gap: 160px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
}

.testimonial-card-profile-holder {
    background-color: white;
  height: 200px;
  color: #0a3f8b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -15px -15px 1px #00275f;
}

.testimonial-card {
  padding: 20px;
  width: 280px;
  height: 280px;
  border-radius: 8px;
}

.testimonial-card-profile-holder img {
  width: 100%;
  height: 80%;
}

.testimonial-card-profile-holder h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-card p {
  text-align: center;
  font-size: 16px;
  color: white;
  padding: 20px;
}

/* FAQ */

#faq-title {
  display: block;
  text-align: center;
  font-size: 24px;
  color: #003366;
  position: relative;
  padding: 20px 0;
}

#featured-title {
  display: block;
  text-align: center;
  font-size: 24px;
  background-color: #0A3F8B;
  color: white;
  position: relative;
  padding: 20px 0;
}

#faq-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #003366;
  display: block;
  margin: 10px auto 0;
}

.faq-box {
  width: 80vw;
  margin: 60px 10vw;
}

/* All questions and answers styled similarly */
[id^="faq-item"] {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

[id^="question"] {
  background-color: #fff;
  color: #003366;
  padding: 18px 20px;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

[id^="question"]:hover {
  background-color: #f5f5f5;
}

[id^="answer"] {
  padding: 15px 20px;
  display: none;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.active-answer {
  display: block;
}

.open::after {
  content: "-";
  font-size: 24px;
}

.closed::after {
  content: "+";
  font-size: 24px;
  color: #003366;
}

/* About Us */

#hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #003366;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

#header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

#header nav #signup-btn {
  padding: 8px 15px;
  background-color: #002b80;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#about-us {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 60px 50px;
  text-align: justify;
  margin-top: 80px;
}

#about-text,
#about-mission {
  width: 30%;
}

#about-text h4,
#about-mission h4 {
  margin-top: 60px;
  color: #0a408a;
}

#about-us h1 {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #0a408a;
}

#about-image {
  width: 20%;
}

#about-image img {
  width: 100%;
}

#founder-section {
  background-color: #002b80;
  color: white;
  padding: 50px 50px 0 50px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0 30px;
  border-radius: 30px;
}

#founder-photo {
  width: 30%;
}

#founder-photo img {
  width: 120%;
  border-radius: 8px;
  margin-bottom: -10px;
}

#founder-text {
  width: 70%;
  padding: 0 100px;
  text-align: justify;
}

#founder-text h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 400;
  text-align: end;
  font-family: "Montserrat", sans-serif;
}

#founder-text p {
  margin-bottom: 30px;
  font-size: 18px;
}

#founder-name {
  margin: 10px 100px;
  font-weight: bold;
  color: #1d1d1d;
  display: flex;
  align-items: center;
  gap: 30px;
}

#founder-name p {
  font-size: 16px;
  font-weight: 400;
  color: #00000090;
  margin-top: 20px;
}

#founder-name p span {
  font-size: 26px;
  color: #000;
}

#founder-name #hr {
  width: 80%;
  height: 1px;
  border: 1px solid #0a408a;
}

#team-section {
  text-align: center;
  padding: 50px;
}

#team-section h2 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #0a408a;
}

#team-section > p {
  padding: 0 180px;
}

#team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  width: 400px;
  background: #002b80;
  color: white;
  border-radius: 10px;
  padding: 15px 15px 0 15px;
  overflow: hidden;
}

.team-card > p {
  font-size: 24px;
}

.team-card > p > span {
  font-size: 16px;
}

.team-card img {
  width: 100%;
  margin-bottom: -10px;
  margin-top: 40px;
}

#why-choose {
  padding: 50px;
  background: #ffffff;
  text-align: justify;
}

#why-choose h2 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #0a408a;
}

#why-columns {
  display: flex;
  justify-content: space-between;
}

#why-left,
#why-right {
  width: 48%;
}

#why-right h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

#why-right p {
  margin-bottom: 4rem;
}

#why-image img {
  width: 100%;
  border-radius: 8px;
  margin-top: 2rem;
}

#socialLogos a {
  color: #0a408a;
  font-size: 30px;
  margin-right: 20px;
}

/* Contact Us */

#contact {
  padding: 8rem 6rem;
  background: #fff;
}

#contactHeading {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #0a408a;
}

#contactOptions {
  display: flex;
  align-items: center;
  gap: 10rem;
  margin: 3rem 0 6rem;
}

a {
  text-decoration: none;
}

#mapWrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #25252574;
}

#contactBtns {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

#btnCallWrap,
#btnMailWrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btnCircle {
  height: 80px;
  width: 80px;
  background-color: #1a70bd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#getInTouch h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #0a408a;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  font-weight: 300;
}

#socials {
  margin-top: 40px;
}

#socials p {
  margin-bottom: 20px;
}

.btnCircle i {
  font-size: 40px;
}

#btnCallWrap p,
#btnMailWrap p {
  font-size: 20px;
  font-weight: 400;
}

.iconLink {
  font-size: 46px;
  margin-right: 20px;
}

#contactForm {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contactForm input,
#contactForm textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  background: #bbd5ec;
  border-radius: 4px;
}

input::placeholder,
textarea::placeholder {
  font-size: 14px;
}

#contactForm textarea {
  resize: vertical;
  height: 120px;
}

#contactForm button {
  padding: 0.8rem;
  background: #1a70bd;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#formHeading {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0a408a;
  text-align: center;
  font-weight: 400;
}

#formFlex1,
#formFlex2 {
  display: flex;
  gap: 20px;
}

#formFlex1 input,
#formFlex2 input {
  width: 50%;
}

/* Footer */

#footer {
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-image: url(https://knorishblobstorage-cbbeebf4h6dudbf2.z01.azurefd.net/public/0ae4e5ae-f709-4b50-89c8-7ebfac33c8c0/customfile/30072025/ff2e6.jpg);
  background-size: cover;
  background-position: center;
  gap: 30px;
  font-size: 14px;
}

#footer .info {
  width: 30%;
  min-width: 250px;
  text-align: justify;
}

#footer .info p{
  font-size: 14px;
}

#footer a {
  color: white;
  text-decoration: none;
  display: block;
  margin-top: 2px;
  transition: color 0.3s ease;
  margin-bottom: 10px;
}

#about-us h4,
#footer h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

  #footer-mid {
    display: flex;
    gap: 250px;
  }

#logoContainer {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

#logoContainer i {
  font-size: 24px;
  color: white;
  transition: color 0.3s ease;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    gap: 10px;
    text-align: center;
  }

  .text-side {
    padding-right: 0;
  }

  .card-container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    width: 160px;
    height: 320px;
  }

  .card.active {
    width: 200px;
  }

  .text-side h1 {
    font-size: 44px;
  }

  .text-side h2 {
    font-size: 26px;
  }

  .bottom-text {
    text-align: center;
    margin: 30px 0;
    font-size: 18px;
  }

  #featured-logos {
    justify-content: center;
    gap: 30px;
  }

  #featured-logos img {
    height: 60px;
  }

  #about-us {
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    text-align: center;
  }

  #about-text,
  #about-mission {
    width: 80%;
    margin-bottom: 40px;
  }

  #about-image {
    width: 40%;
    margin-bottom: 40px;
  }

  #about-text h1 {
    font-size: 4rem;
  }

  #founder-section {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 40px 30px 0 30px;
  }

  #founder-photo {
    width: 60%;
    margin-bottom: 30px;
  }

  #founder-photo img {
    width: 100%;
    margin-bottom: 0;
  }

  #founder-text {
    width: 100%;
    padding: 0 30px;
    text-align: justify;
  }

  #founder-text h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
  }

  #founder-name {
    margin: 30px auto;
    flex-direction: column;
    gap: 10px;
  }

  #founder-name hr {
    width: 100%;
  }

  #team-section {
    padding: 40px 20px;
  }

  #team-section > p {
    padding: 0 80px;
  }

  .team-card {
    width: 320px;
  }

  .team-card > p {
    font-size: 20px;
  }

  .team-card > p > span {
    font-size: 14px;
  }

  #why-choose {
    padding: 40px 30px;
  }

  #why-columns {
    flex-direction: column;
    gap: 40px;
  }

  #why-left,
  #why-right {
    width: 100%;
  }

  #why-right h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  #why-right p {
    margin-bottom: 3rem;
  }

  #why-image img {
    margin-top: 1.5rem;
  }

  #contactOptions {
    flex-direction: column;
    gap: 4rem;
  }

  #mapWrapper iframe {
    width: 100%;
    height: 300px;
  }

  #contactBtns {
    flex-direction: column;
    gap: 20px;
  }

  #btnCallWrap,
  #btnMailWrap {
    flex-direction: column;
    gap: 10px;
  }

  #getInTouch {
    text-align: center;
  }

  .iconLink {
    font-size: 36px;
    margin: 0 10px;
  }

  #footer {
    padding: 10px 30px;
    gap: 10px;
  }

  #footer .info {
    width: 100%;
  }
}

@media (max-width: 768px) {

  #header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    position: relative;
  }

  #hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
  }

  #nav-links.show {
    display: flex;
  }

  #nav-links a {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
  }

  #signup-btn {
    margin-top: 20px;
  }

  .text-side h1 {
    font-size: 36px;
  }

  .text-side h2 {
    font-size: 22px;
  }

  .card {
    width: 140px;
    height: 300px;
  }

  .card.active {
    width: 180px;
  }

  .card p {
    font-size: 16px;
  }

  .arrow {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }

  #featured-logos {
    /* flex-direction: column; */
    padding: 20px;
  }

  #featured-logos img {
    height: 50px;
  }

  #about-text,
  #about-mission {
    width: 90%;
  }

  #about-image {
    width: 60%;
  }

  #about-text h1 {
    font-size: 3rem;
  }

  #about-text h4,
  #about-mission h4 {
    margin-top: 40px;
  }

  #about-us {
    padding: 40px 20px;
  }

  #founder-photo {
    width: 70%;
    margin-bottom: -60px;
  }

  #founder-text {
    padding: 0 20px;
  }

  #founder-text h2 {
    font-size: 24px;
  }

  #founder-name p span {
    font-size: 22px;
  }

  #founder-name p {
    font-size: 14px;
  }

  #team-section > p {
    padding: 0 40px;
  }

  .team-card {
    width: 280px;
  }

  .team-card > p {
    font-size: 18px;
  }

  .team-card > p > span {
    font-size: 13px;
  }

  #why-choose h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  #why-right h4 {
    font-size: 1.2rem;
  }

  #why-right p {
    font-size: 0.95rem;
  }

  #why-image img {
    border-radius: 6px;
  }

  #socials {
    display: flex;
    flex-direction: column;
  }

  #socialLogos {
    text-align: center;
    margin-top: 2rem;
  }

  #socialLogos a {
    font-size: 26px;
    margin: 0 10px;
  }

  #contactHeading {
    font-size: 2rem;
    text-align: center;
  }

  #contact {
    padding: 60px 10px;
    margin: 60px 10px;
  }

  #getInTouch h3 {
    font-size: 20px;
  }

  .btnCircle {
    width: 60px;
    height: 60px;
  }

  .btnCircle i {
    font-size: 30px;
  }

  #btnCallWrap p,
  #btnMailWrap p {
    font-size: 16px;
  }

  #socials p {
    font-size: 16px;
  }

  #mapWrapper {
    width: 80vw;
  }

  #mapWrapper iframe {
    height: 250px;
  }

  #footer {
    flex-direction: column;
    align-items: center;
  }

  #footer > div {
    width: 100%;
    margin-bottom: 30px;
  }

  #logoContainer {
    justify-content: flex-start;
  }

  #text-respon {
    font-size: 18px;
  }

    #footer-mid {
    gap: 100px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 15px;
    gap: 10px;
  }

  .text-side h1 {
    font-size: 28px;
  }

  .text-side h2 {
    font-size: 18px;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .card,
  .card.active {
    width: 90%;
    max-width: 300px;
    height: auto;
  }

  .card img {
    height: 200px;
  }

  .card p {
    font-size: 15px;
    padding: 8px;
  }

  .arrow {
    transform: rotateZ(90deg)
  }

  .bottom-text {
    font-size: 16px;
    margin: 20px;
    text-align: center;
  }

  #about-text h1 {
    font-size: 2.5rem;
  }

  #about-text h4,
  #about-mission h4 {
    font-size: 1rem;
    margin-top: 30px;
  }

  #about-text p,
  #about-mission p {
    font-size: 0.95rem;
  }

  #about-image {
    width: 80%;
  }

  #about-text,
  #about-mission {
    width: 100%;
  }

  #about-us {
    padding: 30px 15px;
  }

  #founder-section {
    border-radius: 20px;
    padding: 30px 15px;
  }

  #founder-photo {
    width: 100%;
  }

  #founder-text h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  #founder-text p {
    font-size: 18px;
  }

  #founder-name {
    gap: 5px;
    margin: 20px auto;
  }

  #founder-name p span {
    font-size: 18px;
  }

  #founder-name p {
    font-size: 13px;
  }

  #team-section {
    padding: 30px 10px;
  }

  #team-section h2 {
    font-size: 1.8rem;
  }

  #team-section > p {
    padding: 0 10px;
    font-size: 14px;
  }

  .team-card {
    width: 100%;
    padding: 10px 10px 0 10px;
  }

  .team-card > p {
    font-size: 16px;
  }

  .team-card > p > span {
    font-size: 12px;
  }

  #why-choose {
    padding: 30px 15px;
  }

  #why-choose h2 {
    font-size: 1.6rem;
  }

  #why-right h4 {
    font-size: 1rem;
  }

  #why-right p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  #why-image img {
    margin-top: 1rem;
  }

  #socialLogos a {
    font-size: 22px;
    margin: 0 8px;
  }

  #contactOptions {
    gap: 3rem;
    margin: 2rem 0 4rem;
  }

  .iconLink {
    font-size: 30px;
  }

  #socials {
    display: flex;
    align-items: center;
  }

  #socials a {
    margin-bottom: 10px;
  }

  p {
    font-size: 16px;
  }

  #footer {
    padding: 20px;
  }

  #logoContainer i {
    font-size: 20px;
  }

  #text-respon {
    font-size: 14px;
  }
}
