/* === BASE SHARED STYLE.CSS === */

/* === BASE === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #002f5f;
  width: 100%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem; 
  box-sizing: border-box;
}

.brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}
/* === BURGER MENU === */
.mobile-menu-icon {
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  z-index: 1001;
  border-radius: 8px;
  position: sticky;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark */
  backdrop-filter: blur(4px);           /* subtle blur for clarity */
  -webkit-backdrop-filter: blur(4px);   /* Safari support */
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.3rem;
}


/* === COMPACT MOBILE MENU (Dropdown Style) === */
.mobile-menu-overlay {
  position: fixed;
  top: 64px;
  right: 1rem;
  width: 220px;
  background: #002f5f;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 0;
  display: none;
  flex-direction: column;
  z-index: 1500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mobile-nav a {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.3s forwards;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Animate links in sequence */
.mobile-nav a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.2s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show/hide depending on screen size */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    display: none;
  }

  .site-header .brand,
  .site-header .nav-links {
    display: none !important;
  }

  .header-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
/* === Floating Icon === */
.mobile-icon-wrapper {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2000;
  padding: 0.5rem;
  text-align: right;
  background: transparent;
}

.mobile-icon-wrapper {
  padding-top: env(safe-area-inset-top);
}


/* === HERO SECTION === */
.hero-banner {
  background-image: url('headimg.jpg');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  color: #ffffff;
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0rem;
  box-sizing: border-box;
  background-color: #ffffff; 
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-banner h1,
.hero-banner h2 {
  margin: 0;
  padding: 0;
}

.hero-banner h1 {
  font-size: 6rem;
  font-weight: 800;
  margin-bottom: 0rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1;
  color: #ffffff;
}

.hero-banner h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.hero-banner p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #0077ff;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #005dc0;
  transform: translateY(-2px) scale(1.04);
}


@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

}

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


/* === GRID BLOCK === */
.grid-block {
  margin-top: 4rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1rem;
}

.grid-block h2 {
  text-align: center;
  color: #0077ff;
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.hover-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  padding: 2rem 1rem;
}

.hover-card-grid .card {
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
}

.card {
  background: #fafdff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
  min-height: 300px;
  max-width: 320px;
}

.card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  background: #eaf4ff;
}

.card h3 {
  margin-top: 0;
  color: #0077ff;
}

.card p {
  color: #444;
}

/* === RESPONSIVE GRID === */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    width: 90%;
    min-width: 220px;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flip-card {
    width: 90vw;
    max-width: 320px;
  }

  .hover-card-grid {
    grid-template-columns: 1fr;
  }
}

/* === SHARED CARD FACE === */
.card-body, .flip-card-front, .flip-card-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

/* === FLIP CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 2rem 1rem;
}

.flip-card {
  background: transparent;
  width: 100%;
  max-width: 320px;
  height: 360px;
  perspective: 1000px;
  cursor: pointer;
  outline: none;
  margin-bottom: 0;
  position: relative;
  border-radius: 14px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,2.08,.55,.44);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 1.5rem;
  background: #fff;
  transition: background 0.3s;
  overflow-y: auto;
}

.flip-card-front h3 {
  color: #0077ff;
  margin: 0;
  font-size: 1.2rem;
}

.flip-card-back {
  background: #eaf4ff;
  transform: rotateY(180deg);
  color: #222;
  font-size: 1rem;
}

.flip-card:focus {
  box-shadow: 0 0 0 3px #0077ff44;
}

/* === ICON STYLE === */
.icon {
  font-size: 2.5rem;
  color: #0077ff;
  margin-bottom: 1rem;
}

/* === ENDORSEMENTS SECTION === */
.testimonial-section {
  background: #eaf4ff;
  padding: 4rem 2rem;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial-header .stars {
  font-size: 1.8rem;
  color: #ffc107;
}

.testimonial-header h2 {
  color: #002f5f;
  font-size: 2rem;
  margin-top: 0.5rem;
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  max-width: 420px;
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1.5rem;
}

.testimonial-author i {
  font-size: 1.8rem;
  color: #0077ff;
  margin-bottom: 0.4rem;
}

.testimonial-author h4 {
  margin: 0.3rem 0 0.1rem;
  font-size: 1.05rem;
  color: #002f5f;
}

.testimonial-author p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* === CTA SECTION === */
.cta-banner {
  width: 100%;
  background-color: #eaf4ff;
  padding: 4rem 2rem;
  margin: 0;
  box-sizing: border-box;
}

.cta-content {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

/* === FOOTER === */
.site-footer {
  width: 100%;
  background: #f4f4f4;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
  box-sizing: border-box;
}

/* === FORM STYLES === */
.content-block {
  padding: 2rem 0;
}

.form-block form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

input, select, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}


/* === TESTIMONIAL CAROUSEL === */
.section-heading {
  text-align: center;
  color: #0077ff;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  width: 100%;
  background: #eaf4ff;
  padding: 4rem 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel-container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
}

.carousel-slide p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.carousel-slide .author {
  font-weight: bold;
  color: #002f5f;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-button {
  background: #0077ff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .card-grid.course-overview {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* === LAYOUT STRUCTURE === */
.about-hero,
.about-block,
.about-cta {
  padding: 6rem 2rem;
}

.container {
  max-width: 100%;
}

.container.narrow {
  max-width: 100%;
}

/* === BACKGROUND STYLES === */
.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f9f9f9;
  color: #222;
}



.lead-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #d1d5db;
  max-width: 700px;
}

.section-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.paragraph-lg {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 700px;
}

.paragraph-md {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

/* === ABOUT US QUOTE CARDS === */
.aboutus-card, blockquote.aboutus-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-weight: 600;
  color: #334155;
  border-left: 5px solid #2563eb; /* blue accent */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.15rem;
}

/* === ICON LISTS === */
.icon-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  margin: 2rem 0;
}

.icon-list li {
  margin-bottom: 1rem;
}

/* === TWO COLUMN LISTS === */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

/* === AOS ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}


@media (max-width: 768px) {
  .site-header .brand,
  .site-header .nav-links {
    display: none;
  }


  .header-inner {
    justify-content: flex-end;
    padding: 1rem;
  }
}

  .lead-text {
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .paragraph-lg,
  .paragraph-md {
    font-size: 1rem;
  }

  .aboutus-card {
    padding: 1.2rem 1rem;
    font-size: 1rem;
  }


  .about-block,
  .about-cta {
    padding: 4rem 1.2rem;
  }



/* === SECTION STYLES === */
.about-block {
  padding: 4rem 1rem;
}

.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f8f9fa;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container.narrow {
  max-width: 800px;
}

/* === TEXT ALIGN CLASSES === */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}



.lead-text {
  font-size: 1.25rem;
  font-weight: 400;
}

/* === CARD STYLE === */
.aboutus-card {
  background: white;
  color: #1e293b;
  font-style: italic;
  padding: 2rem;
  border-left: 5px solid #2563eb;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  font-weight: 600;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

/* === ICON LIST === */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
  font-size: 1.15rem;
}

/* === TWO COLUMN LIST === */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1e40af;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: #e0f2fe;
  color: #1e3a8a;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* === ANIMATION (AOS included externally) === */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}



  .paragraph-lg, .paragraph-md {
    font-size: 1rem;
  }

/* === Layout position utility classes === */
.align-left {
  display: flex;
  justify-content: flex-start;
}

.align-center {
  display: flex;
  justify-content: center;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

.align-left .narrow,
.align-center .narrow,
.align-right .narrow {
  text-align: left;
  max-width: 700px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.info-card {
  background: #fff;
  color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.full-width-cards {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.card-grid.single-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2rem;
}

.info-card {
  background: #fff;
  color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 200px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card.static-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(20% - 1rem);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.feature-card.static-card:hover {
  transform: translateY(-5px);
}

.feature-card.static-card h3 {
  color: #1e293b;
}

.card-icon {
  font-size: 2rem;
  background: #2563eb;
  color: #fff;
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.paragraph-md {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

ul.paragraph-md li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.image-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.image-right img {
  width: 300px;
  border-radius: 12px;
}

/* Hide by default */
.mobile-only {
  display: none;
}

/* Show only in portrait orientation */
@media only screen and (orientation: portrait) {
  .mobile-only {
    display: block;
  }
}
/* Icon with text styling */
.icon-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #222;
}

.icon-text i {
  font-size: 1.4rem;
  color: #002f5f;
}

/* === BASE === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* === MAIN CONTENT === */
.main-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #0077ff;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #005dc0;
  transform: translateY(-2px) scale(1.04);
}

/* === GRID BLOCK === */
.grid-block {
  margin-top: 4rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1rem;
}

.grid-block h2 {
  text-align: center;
  color: #0077ff;
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.hover-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  padding: 2rem 1rem;
}

.hover-card-grid .card {
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
}

.card {
  background: #fafdff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
  min-height: 300px;
  max-width: 320px;
}

.card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  background: #eaf4ff;
}

.card h3 {
  margin-top: 0;
  color: #0077ff;
}

.card p {
  color: #444;
}

/* === RESPONSIVE GRID === */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    width: 90%;
    min-width: 220px;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flip-card {
    width: 90vw;
    max-width: 320px;
  }

  .hover-card-grid {
    grid-template-columns: 1fr;
  }
}

/* === ICON STYLE === */
.icon {
  font-size: 2.5rem;
  color: #0077ff;
  margin-bottom: 1rem;
}


/* === CTA SECTION === */
.cta-banner {
  width: 100%;
  background-color: #eaf4ff;
  padding: 4rem 2rem;
  margin: 0;
  box-sizing: border-box;
}

.cta-content {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

/* === FOOTER === */
.site-footer {
  width: 100%;
  background: #f4f4f4;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
  box-sizing: border-box;
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* === LAYOUT STRUCTURE === */
.about-block,
.about-cta {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 750px;
}

/* === BACKGROUND STYLES === */
.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f9f9f9;
  color: #222;
}



.lead-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #d1d5db;
  max-width: 700px;
}

.section-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.paragraph-lg {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 700px;
}

.paragraph-md {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

/* === ABOUT US QUOTE CARDS === */
.aboutus-card, blockquote.aboutus-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-weight: 600;
  color: #334155;
  border-left: 5px solid #2563eb; /* blue accent */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.15rem;
}

/* === ICON LISTS === */
.icon-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  margin: 2rem 0;
}

.icon-list li {
  margin-bottom: 1rem;
}

/* === TWO COLUMN LISTS === */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

/* === AOS ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}



/* === SECTION STYLES === */
.about-block {
  padding: 4rem 1rem;
}

.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f8f9fa;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container.narrow {
  max-width: 800px;
}

/* === TEXT ALIGN CLASSES === */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}


/* === CARD STYLE === */
.aboutus-card {
  background: white;
  color: #1e293b;
  font-style: italic;
  padding: 2rem;
  border-left: 5px solid #2563eb;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  font-weight: 600;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

/* === ICON LIST === */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
  font-size: 1.15rem;
}

/* === TWO COLUMN LIST === */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1e40af;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: #e0f2fe;
  color: #1e3a8a;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* === ANIMATION (AOS included externally) === */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

/* === Layout position utility classes === */
.align-left {
  display: flex;
  justify-content: flex-start;
}

.align-center {
  display: flex;
  justify-content: center;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

.align-left .narrow,
.align-center .narrow,
.align-right .narrow {
  text-align: left;
  max-width: 700px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.info-card {
  background: #fff;
  color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.full-width-cards {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.card-grid.single-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2rem;
}

.info-card {
  background: #fff;
  color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 200px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card.static-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(20% - 1rem);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.feature-card.static-card:hover {
  transform: translateY(-5px);
}

.feature-card.static-card h3 {
  color: #1e293b;
}

.card-icon {
  font-size: 2rem;
  background: #2563eb;
  color: #fff;
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.paragraph-md {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

ul.paragraph-md li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.image-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.image-right img {
  width: 175px !important;
  margin-left: 5rem;
  border-radius: 12px;
}

.example-box {
  border-left: 4px solid #e8f1fb;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
}

.example-box blockquote {
  margin: 0;
  font-style: italic;
  color: #ffffff;
}


/* === BASE === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* === HERO SECTION === */
.hero-banner {
  background-image: url('headimg2.jpg');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  color: #ffffff;
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  box-sizing: border-box;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}


/* === COURSE CARDS === */
.about-block {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.feature-card.static-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(20% - 1rem);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.feature-card.static-card:hover {
  transform: translateY(-5px);
}

.feature-card.static-card h3 {
  color: #1e293b;
}

.spaced-card h3 {
  margin-bottom: 2.5rem;
}

.spaced-card p {
  margin-bottom: 2.5rem;
}

/* === ICON STYLE === */
.icon {
  font-size: 2.5rem;
  color: #0077ff;
  margin-bottom: 1rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #0077ff;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #005dc0;
  transform: translateY(-2px) scale(1.04);
}

/* === CTA SECTION === */
.cta-banner {
  width: 100%;
  background-color: #eaf4ff;
  padding: 4rem 2rem;
  margin: 0;
  box-sizing: border-box;
}

.cta-content {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

/* === BACKGROUND UTILITIES === */
.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f9f9f9;
  color: #222;
}

/* === AOS ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.2rem;
  }

  .lead-text {
    font-size: 1.2rem;
  }

  .about-block {
    padding: 4rem 1.2rem;
  }

  .feature-card.static-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* === FOOTER === */
.site-footer {
  width: 100%;
  background: #f4f4f4;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
  box-sizing: border-box;
}


  .mobile-only {
    display: block !important;
  }

/* === BASE === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #002f5f;
  width: 100%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem; 
  box-sizing: border-box;
}

.brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}
/* === BURGER MENU === */
.mobile-menu-icon {
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  z-index: 1001;
  border-radius: 8px;
  position: sticky;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark */
  backdrop-filter: blur(4px);           /* subtle blur for clarity */
  -webkit-backdrop-filter: blur(4px);   /* Safari support */
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.3rem;
}


/* === COMPACT MOBILE MENU (Dropdown Style) === */
.mobile-menu-overlay {
  position: fixed;
  top: 64px;
  right: 1rem;
  width: 220px;
  background: #002f5f;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 0;
  display: none;
  flex-direction: column;
  z-index: 1500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mobile-nav a {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.3s forwards;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Animate links in sequence */
.mobile-nav a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.2s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show/hide depending on screen size */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    display: none;
  }

  .site-header .brand,
  .site-header .nav-links {
    display: none !important;
  }

  .header-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
/* === Floating Icon === */
.mobile-icon-wrapper {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2000;
  padding: 0.5rem;
  text-align: right;
  background: transparent;
}

.mobile-icon-wrapper {
  padding-top: env(safe-area-inset-top);
}


/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #0077ff;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #005dc0;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 768px) {
  .hero-banner {
    background-image: url('mobile.jpg') !important;
    background-position: center center;
    background-size: cover;
    height: 85vh;
    height: 85dvh;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    border-bottom-right-radius: 70px;
    margin: 0;
    padding-top: env(safe-area-inset-top); /* Ensure iOS notch doesn’t push content down */
    box-sizing: border-box;
  }

  .hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(255, 255, 255);
    z-index: 0;
    border-bottom-right-radius: 50px;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
    backdrop-filter: blur(2px);      /* Subtle blur */
  }

  .mobile-hero-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
    text-align: left;
    padding-top: 10rem;
  }

  .mobile-hero-content h1 {
    font-size: 3rem !important;
    font-weight: 500;
    margin-top: 1rem;
  }

  .mobile-hero-content h2 {
    font-size: 1.25rem !important;
    font-weight: 500;
  }

  .mobile-hero-content p {
    font-size: 1rem !important;
    font-weight: 500;
    padding-bottom: 1rem;
  }

  .mobile-hero-content .btn {
    background: #fff;
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: inline-block;
    margin-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-rating {
    font-size: 0.8rem;
    color: #fefefe;
    margin-top: 1rem;
  }

  .hero-rating .stars {
    color: #ffcc00;
    font-size: 1rem;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}



}

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


/* === GRID BLOCK === */
.grid-block {
  margin-top: 4rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1rem;
}

.grid-block h2 {
  text-align: center;
  color: #0077ff;
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.hover-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  padding: 2rem 1rem;
}

.hover-card-grid .card {
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
}

.card {
  background: #fafdff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
  min-height: 300px;
  max-width: 320px;
}

.card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  background: #eaf4ff;
}

.card h3 {
  margin-top: 0;
  color: #0077ff;
}

.card p {
  color: #444;
}

/* === RESPONSIVE GRID === */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    width: 90%;
    min-width: 220px;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flip-card {
    width: 90vw;
    max-width: 320px;
  }

  .hover-card-grid {
    grid-template-columns: 1fr;
  }
}

/* === SHARED CARD FACE === */
.card-body, .flip-card-front, .flip-card-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

/* === FLIP CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 2rem 1rem;
}

.flip-card {
  background: transparent;
  width: 100%;
  max-width: 320px;
  height: 360px;
  perspective: 1000px;
  cursor: pointer;
  outline: none;
  margin-bottom: 0;
  position: relative;
  border-radius: 14px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,2.08,.55,.44);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 1.5rem;
  background: #fff;
  transition: background 0.3s;
  overflow-y: auto;
}

.flip-card-front h3 {
  color: #0077ff;
  margin: 0;
  font-size: 1.2rem;
}

.flip-card-back {
  background: #eaf4ff;
  transform: rotateY(180deg);
  color: #222;
  font-size: 1rem;
}

.flip-card:focus {
  box-shadow: 0 0 0 3px #0077ff44;
}

/* === ICON STYLE === */
.icon {
  font-size: 2.5rem;
  color: #0077ff;
  margin-bottom: 1rem;
}

/* === ENDORSEMENTS SECTION === */
.testimonial-section {
  background: #eaf4ff;
  padding: 4rem 2rem;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial-header .stars {
  font-size: 1.8rem;
  color: #ffc107;
}

.testimonial-header h2 {
  color: #002f5f;
  font-size: 2rem;
  margin-top: 0.5rem;
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  max-width: 420px;
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1.5rem;
}

.testimonial-author i {
  font-size: 1.8rem;
  color: #0077ff;
  margin-bottom: 0.4rem;
}

.testimonial-author h4 {
  margin: 0.3rem 0 0.1rem;
  font-size: 1.05rem;
  color: #002f5f;
}

.testimonial-author p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* === CTA SECTION === */
.cta-banner {
  width: 100%;
  background-color: #eaf4ff;
  padding: 4rem 2rem;
  margin: 0;
  box-sizing: border-box;
}

.cta-content {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

/* === FOOTER === */
.site-footer {
  width: 100%;
  background: #f4f4f4;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
  box-sizing: border-box;
}

/* === FORM STYLES === */
.content-block {
  padding: 2rem 0;
}

.form-block form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

input, select, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}


/* === TESTIMONIAL CAROUSEL === */
.section-heading {
  text-align: center;
  color: #0077ff;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  width: 100%;
  background: #eaf4ff;
  padding: 4rem 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel-container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
}

.carousel-slide p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.carousel-slide .author {
  font-weight: bold;
  color: #002f5f;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-button {
  background: #0077ff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .card-grid.course-overview {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* === LAYOUT STRUCTURE === */

.about-block,
.about-cta {
  padding: 6rem 2rem;
}

.container {
  max-width: 100%;
}

.container.narrow {
  max-width: 100%;
}

/* === BACKGROUND STYLES === */
.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f9f9f9;
  color: #222;
}

/* === TYPOGRAPHY & FONT SIZES === */


.paragraph-lg {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 700px;
}

.paragraph-md {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

/* === ABOUT US QUOTE CARDS === */
.aboutus-card, blockquote.aboutus-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-weight: 600;
  color: #334155;
  border-left: 5px solid #2563eb; /* blue accent */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.15rem;
}

/* === ICON LISTS === */
.icon-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  margin: 2rem 0;
}

.icon-list li {
  margin-bottom: 1rem;
}

/* === TWO COLUMN LISTS === */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

/* === AOS ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.2rem;
  }
@media (max-width: 768px) {
  .site-header .brand,
  .site-header .nav-links {
    display: none;
  }


  .header-inner {
    justify-content: flex-end;
    padding: 1rem;
  }
}

  .lead-text {
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .paragraph-lg,
  .paragraph-md {
    font-size: 1rem;
  }

  .aboutus-card {
    padding: 1.2rem 1rem;
    font-size: 1rem;
  }

  .about-hero,
  .about-block,
  .about-cta {
    padding: 4rem 1.2rem;
  }
}
/* === BASE TYPOGRAPHY === */
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  margin: 0;
  background-color: #fff;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* === SECTION STYLES === */
.about-block {
  padding: 4rem 1rem;
}

.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f8f9fa;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container.narrow {
  max-width: 800px;
}

/* === TEXT ALIGN CLASSES === */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}



/* === CARD STYLE === */
.aboutus-card {
  background: white;
  color: #1e293b;
  font-style: italic;
  padding: 2rem;
  border-left: 5px solid #2563eb;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  font-weight: 600;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

/* === ICON LIST === */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
  font-size: 1.15rem;
}

/* === TWO COLUMN LIST === */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1e40af;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: #e0f2fe;
  color: #1e3a8a;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* === ANIMATION (AOS included externally) === */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}


/* === Layout position utility classes === */
.align-left {
  display: flex;
  justify-content: flex-start;
}

.align-center {
  display: flex;
  justify-content: center;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

.align-left .narrow,
.align-center .narrow,
.align-right .narrow {
  text-align: left;
  max-width: 700px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.info-card {
  background: #fff;
  color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.full-width-cards {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.card-grid.single-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2rem;
}

.info-card {
  background: #fff;
  color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 200px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card.static-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(20% - 1rem);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.feature-card.static-card:hover {
  transform: translateY(-5px);
}

.feature-card.static-card h3 {
  color: #1e293b;
}

.card-icon {
  font-size: 2rem;
  background: #2563eb;
  color: #fff;
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.paragraph-md {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

ul.paragraph-md li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.image-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.image-right img {
  width: 300px;
  border-radius: 12px;
}

/* Hide by default */
.mobile-only {
  display: none;
}

/* Show only in portrait orientation */
@media only screen and (orientation: portrait) {
  .mobile-only {
    display: block;
  }
}
/* Icon with text styling */
.icon-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #222;
}

.icon-text i {
  font-size: 1.4rem;
  color: #002f5f;
}

/* === BASE === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* === MAIN CONTENT === */
.main-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #0077ff;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #005dc0;
  transform: translateY(-2px) scale(1.04);
}

/* === GRID BLOCK === */
.grid-block {
  margin-top: 4rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1rem;
}

.grid-block h2 {
  text-align: center;
  color: #0077ff;
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.hover-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  padding: 2rem 1rem;
}

.hover-card-grid .card {
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
}

.card {
  background: #fafdff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
  min-height: 300px;
  max-width: 320px;
}

.card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  background: #eaf4ff;
}

.card h3 {
  margin-top: 0;
  color: #0077ff;
}

.card p {
  color: #444;
}

/* === RESPONSIVE GRID === */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    width: 90%;
    min-width: 220px;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flip-card {
    width: 90vw;
    max-width: 320px;
  }

  .hover-card-grid {
    grid-template-columns: 1fr;
  }
}

/* === ICON STYLE === */
.icon {
  font-size: 2.5rem;
  color: #0077ff;
  margin-bottom: 1rem;
}


/* === CTA SECTION === */
.cta-banner {
  width: 100%;
  background-color: #eaf4ff;
  padding: 4rem 2rem;
  margin: 0;
  box-sizing: border-box;
}

.cta-content {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

/* === FOOTER === */
.site-footer {
  width: 100%;
  background: #f4f4f4;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
  box-sizing: border-box;
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* === LAYOUT STRUCTURE === */
.about-hero,
.about-block,
.about-cta {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 750px;
}

/* === BACKGROUND STYLES === */
.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f9f9f9;
  color: #222;
}


/* === ABOUT US QUOTE CARDS === */
.aboutus-card, blockquote.aboutus-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-weight: 600;
  color: #334155;
  border-left: 5px solid #2563eb; /* blue accent */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.15rem;
}

/* === ICON LISTS === */
.icon-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  margin: 2rem 0;
}

.icon-list li {
  margin-bottom: 1rem;
}

/* === TWO COLUMN LISTS === */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

/* === AOS ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.2rem;
  }

  .lead-text {
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .paragraph-lg,
  .paragraph-md {
    font-size: 1rem;
  }

  .aboutus-card {
    padding: 1.2rem 1rem;
    font-size: 1rem;
  }

  .about-hero,
  .about-block,
  .about-cta {
    padding: 4rem 1.2rem;
  }
}
/* === BASE TYPOGRAPHY === */
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  margin: 0;
  background-color: #fff;
}


p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* === SECTION STYLES === */
.about-block {
  padding: 4rem 1rem;
}

.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f8f9fa;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container.narrow {
  max-width: 800px;
}

/* === TEXT ALIGN CLASSES === */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}


/* === CARD STYLE === */
.aboutus-card {
  background: white;
  color: #1e293b;
  font-style: italic;
  padding: 2rem;
  border-left: 5px solid #2563eb;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  font-weight: 600;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

/* === ICON LIST === */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
  font-size: 1.15rem;
}

/* === TWO COLUMN LIST === */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1e40af;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: #e0f2fe;
  color: #1e3a8a;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* === ANIMATION (AOS included externally) === */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.25rem;
  }

  .paragraph-lg, .paragraph-md {
    font-size: 1rem;
  }
}

/* === Layout position utility classes === */
.align-left {
  display: flex;
  justify-content: flex-start;
}

.align-center {
  display: flex;
  justify-content: center;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

.align-left .narrow,
.align-center .narrow,
.align-right .narrow {
  text-align: left;
  max-width: 700px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.info-card {
  background: #fff;
  color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.full-width-cards {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.card-grid.single-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2rem;
}

.info-card {
  background: #fff;
  color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 200px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card.static-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(20% - 1rem);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.feature-card.static-card:hover {
  transform: translateY(-5px);
}

.feature-card.static-card h3 {
  color: #1e293b;
}

.card-icon {
  font-size: 2rem;
  background: #2563eb;
  color: #fff;
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.paragraph-md {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

ul.paragraph-md li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.image-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.image-right img {
  width: 175px !important;
  margin-left: 5rem;
  border-radius: 12px;
}

.example-box {
  border-left: 4px solid #e8f1fb;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
}

.example-box blockquote {
  margin: 0;
  font-style: italic;
  color: #ffffff;
}


/* === BASE === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}


/* === COURSE CARDS === */
.about-block {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.feature-card.static-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(20% - 1rem);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.feature-card.static-card:hover {
  transform: translateY(-5px);
}

.feature-card.static-card h3 {
  color: #1e293b;
}

.spaced-card h3 {
  margin-bottom: 2.5rem;
}

.spaced-card p {
  margin-bottom: 2.5rem;
}

/* === ICON STYLE === */
.icon {
  font-size: 2.5rem;
  color: #0077ff;
  margin-bottom: 1rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #0077ff;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #005dc0;
  transform: translateY(-2px) scale(1.04);
}

/* === CTA SECTION === */
.cta-banner {
  width: 100%;
  background-color: #eaf4ff;
  padding: 4rem 2rem;
  margin: 0;
  box-sizing: border-box;
}

.cta-content {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

/* === BACKGROUND UTILITIES === */
.dark-bg {
  background-color: #002f5f;
  color: white;
}

.light-bg {
  background-color: #f9f9f9;
  color: #222;
}

/* === AOS ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* === FOOTER === */
.site-footer {
  width: 100%;
  background: #f4f4f4;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .site-header .brand,
  .site-header .nav-links {
    display: none !important;
  }


  .header-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .courses-hero-section .hero-heading {
    padding-top: 10rem;
    font-size: 3rem;
    line-height: 1.2;
    padding-bottom: 1rem;
  }

  .courses-hero-section .lead-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.index-hero {
  background-image: url('headimg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.courses-hero {
  background-image: url('headimg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

  html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
  background-color: #ffffff;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}


/* On iOS, this ensures the background behind the notch isn't white */
@supports(padding-top: env(safe-area-inset-top)) {
  body {
    padding-top: env(safe-area-inset-top);
  }
}

[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}


  .courses-hero-section .container {
    text-align: left;
  }

@media (max-width: 768px) {
  .courses-hero-section .hero-heading {
    padding-top: 10rem;
    font-size: 3rem;
    line-height: 1.2;
    padding-bottom: 1rem;
  }

  .courses-hero-section .lead-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.index-hero {
  background-image: url('headimg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.courses-hero {
  background-image: url('headimg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

  html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
  background-color: #ffffff;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}


/* On iOS, this ensures the background behind the notch isn't white */
@supports(padding-top: env(safe-area-inset-top)) {
  body {
    padding-top: env(safe-area-inset-top);
  }
}

.form-wrapper {
  max-width: 800px;   /* or whatever width feels right */
  margin: 2rem auto;  /* centres the block */
  padding: 0 1rem;    /* little breathing space on small screens */
  box-sizing: border-box;
}

.form-wrapper iframe {
  width: 100%;
  border: none;
  border-radius: 12px; /* optional – makes it look more like a “box” */
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* optional drop shadow */
}

/* ============ Cookie Consent styles ============ */
:root{
  --cc-bg: #ffffff;
  --cc-text: #222222;
  --cc-muted: #666666;
  --cc-border: #e8e8ef;
  --cc-primary: var(--primary, #7c3aed);
  --cc-primary-contrast: #ffffff;
  --cc-shadow: 0 10px 30px rgba(0,0,0,0.10);
  --cc-radius: 14px;
}

/* Banner */
.cc-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: var(--cc-bg);
  color: var(--cc-text);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow);
  padding: 16px;
}
.cc-banner.hidden{ display:none; }
.cc-inner{
  display: grid;
  gap: 12px;
  align-items: center;
}
@media (min-width: 720px){
  .cc-inner{ grid-template-columns: 1fr auto; gap: 18px; }
}
.cc-copy strong{ display:block; margin-bottom:6px; font-weight:700; }
.cc-copy p{ margin:0; color: var(--cc-muted); line-height:1.5; }
.cc-copy a{ color: var(--cc-primary); text-decoration: underline; }

.cc-actions{ display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; }
.cc-btn{
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  border: 1px solid var(--cc-border);
  background: #fff;
  cursor: pointer;
}
.cc-btn:focus{ outline: 2px solid var(--cc-primary); outline-offset: 2px; }
.cc-btn-primary{ background: var(--cc-primary); color: var(--cc-primary-contrast); border-color: var(--cc-primary); }
.cc-btn-outline{ background: transparent; }
.cc-btn-secondary{ background: #f6f6fb; }

/* Modal */
.cc-modal{ position: fixed; inset: 0; z-index: 10000; display: none; }
.cc-modal.open{ display:block; }
.cc-modal-backdrop{ position:absolute; inset:0; background: rgba(15, 18, 32, 0.45); }
.cc-modal-card{
  position: relative;
  margin: 6vh auto 0;
  max-width: 680px;
  background: var(--cc-bg);
  color: var(--cc-text);
  border: 1px solid var(--cc-border);
  border-radius: 18px;
  box-shadow: var(--cc-shadow);
  padding: 16px 16px 12px;
}
@media (min-width: 720px){ .cc-modal-card{ padding: 18px 20px 16px; } }
.cc-modal-header{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  border-bottom: 1px solid var(--cc-border); padding-bottom: 10px;
}
.cc-modal-header h3{ margin:0; font-size: 1.1rem; }
.cc-close{ background: transparent; border: 0; font-size: 22px; line-height: 1; cursor: pointer; }

.cc-modal-body{ padding: 12px 0; }
.cc-group{ border-bottom: 1px dashed var(--cc-border); padding: 12px 0; }
.cc-row{ display:flex; align-items:center; justify-content:space-between; gap:14px; }
.cc-col strong{ display:block; margin-bottom:4px; }
.cc-col p{ margin:0; color: var(--cc-muted); }

.cc-note{ margin: 12px 0 0; color: var(--cc-muted); }
.cc-modal-footer{ display:flex; justify-content:flex-end; gap:10px; padding-top: 12px; }

/* Switch */
.cc-switch{ position: relative; display: inline-flex; align-items: center; }
.cc-switch input{ position:absolute; opacity:0; pointer-events:none; }
.cc-switch-ui{
  display:inline-block; width:46px; height:28px; border-radius: 999px;
  background:#e9e9f2; position:relative; transition: background .2s ease;
  border:1px solid var(--cc-border);
}
.cc-switch-ui::after{
  content:""; position:absolute; top:50%; left:4px; width:20px; height:20px;
  background:#fff; border-radius:50%; transform: translateY(-50%);
  transition: left .2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.cc-switch input:checked + .cc-switch-ui{ background: var(--cc-primary); border-color: var(--cc-primary); }
.cc-switch input:checked + .cc-switch-ui::after{ left:22px; }
