/* =========================
   NEAT BREEZE AKADEMIA CSS
   Tech Futuristic UI
   By: Senior CSS Developer
   ========================= */

/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #161D2D;
  color: #F4F7FB;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #36B486;
  text-decoration: none;
  transition: color .22s;
}
a:hover, a:focus {
  color: #5AF6C5;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* ==============
   CONTAINER & LAYOUT
   ============== */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ==================
   TYPOGRAPHY
   ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F4F7FB;
  letter-spacing: 0.5px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1.05rem;
  margin-bottom: 14px;
  max-width: 880px;
}
strong {
  color: #5AF6C5;
  font-weight: 700;
}
.em, em {
  color: #36B486;
}

blockquote {
  font-style: italic;
  border-left: 3px solid #36B486;
  padding-left: 16px;
  margin-bottom: 12px;
  color: #161D2D;
  background: #F4F7FB;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* =========================
   HEADER & NAV
   ========================= */
header {
  width: 100%;
  background: #12192B;
  border-bottom: 2px solid #262D4A;
  z-index: 1030;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
  position: relative;
}
header img[src$="logo.svg"] {
  max-height: 44px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #F4F7FB;
  font-size: 1.08rem;
  padding: 7px 13px;
  border-radius: 5px;
  transition: background .19s, color .19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #36B486;
  color: #161D2D;
}
.main-nav .cta-btn {
  background: linear-gradient(90deg, #36B486 30%, #5AF6C5 100%);
  color: #183153;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 26px;
  border-radius: 22px;
  box-shadow: 0 0 18px 0 #36B48638;
  transition: background .18s, color .18s, transform .15s;
  margin-left: 6px;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: linear-gradient(90deg, #5AF6C5 45%, #36B486 100%);
  color: #12192B;
  transform: translateY(-2px) scale(1.05);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #36B486;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  z-index: 2001;
  padding: 5px 9px;
  transition: color .15s, background .13s;
  border-radius: 8px;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  color: #5AF6C5;
  background: #183153;
}

/* =========== MOBILE NAVIGATION =========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,32,54,.96);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.77,.2,.36,1.06);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #36B486;
  background: none;
  border: none;
  font-size: 2.3rem;
  padding: 18px 24px 14px 18px;
  align-self: flex-end;
  cursor: pointer;
  margin: 12px;
  transition: color .12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F4F7FB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  padding: 34px 36px 0 0;
  width: 95vw;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F4F7FB;
  font-size: 1.22rem;
  font-weight: 600;
  background: none;
  padding: 12px 0 12px 18px;
  border-radius: 0 12px 12px 0;
  width: 100%;
  display: block;
  letter-spacing: .2px;
  transition: background .14s, color .14s, padding-left .1s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #36B486;
  color: #161D2D;
  padding-left: 32px;
}

/* Hide main nav, show burger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

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


/* =========================
   HERO AREA
   ========================= */
.hero {
  background: linear-gradient(110deg, #183153 85%, #36B486 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0 46px 0;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}
.hero h1 {
  font-size: 2.55rem;
  letter-spacing: 1.2px;
}
.hero h2 {
  font-size: 1.45rem;
  color: #5AF6C5;
  margin-bottom: 8px;
  font-weight: 600;
}
.hero p {
  color: #F4F7FB;
  line-height: 1.65;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 10px;
}

/* ======================
   SECTION / CARD SPACINGS
   ====================== */
.section {margin-bottom: 60px; padding: 40px 20px;}
.card-container {display: flex; flex-wrap: wrap; gap: 24px;}
.card {margin-bottom: 20px; position: relative; border-radius: 14px; box-shadow: 0 2px 20px 0 #1c2c4221; background: #1f2a3b;}
.content-grid {display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;}
.text-image-section {display: flex; align-items: center; gap: 30px; flex-wrap: wrap;}
.testimonial-card {display: flex; align-items: center; gap: 20px; padding: 20px; background: #F4F7FB; color: #183153; border-radius: 19px; box-shadow: 0 2px 28px 0 #36B48624; margin-bottom: 26px; position: relative;}
.feature-item {display: flex; flex-direction: column; align-items: flex-start; gap: 15px;}

/* =============
   FLEX CONTAINERS
   ============= */
.footer-menus, .footer-contact, .footer-social, .content-wrapper, .course-grid, .benefits-grid, .testimonial-list, .featured-posts, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-menus nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.course-grid, .benefits-grid, .feature-grid, .featured-posts {
  flex-direction: row;
  justify-content: flex-start;
}
.testimonial-list {
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px 18px;
}

/* ======================
   FEATURES & CARDS
   ====================== */
.feature-grid > div, .course-grid > div, .benefits-grid > div, .featured-posts > article {
  background: #1f2a3b;
  border-radius: 13px;
  box-shadow: 0 0 18px #36B48622;
  padding: 30px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 0px;
  max-width: 360px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform .16s, box-shadow .22s;
  position: relative;
}
.feature-grid > div:hover, .course-grid > div:hover, .benefits-grid > div:hover, .featured-posts > article:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 22px #36B48646;
}
.feature-grid img, .benefits-grid img, .course-grid img, .featured-posts img {
  max-width: 44px;
}

/* ========================
   BUTTONS & LINKS
   ======================== */
.cta-btn {
  background: linear-gradient(90deg, #36B486 30%, #5AF6C5 100%);
  color: #183153;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  text-transform: uppercase;
  padding: 12px 36px;
  border: none;
  border-radius: 22px;
  transition: background .17s, color .16s, box-shadow .18s, transform .15s;
  box-shadow: 0 2px 18px 0 #36B48655;
  letter-spacing: 1.2px;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #5AF6C5 45%, #36B486 100%);
  color: #12192B;
  transform: translateY(-1px) scale(1.035);
  box-shadow: 0 3px 24px 0 #36B48681;
  outline: none;
}
button {
  cursor: pointer;
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonial-card {
  background: #F4F7FB;
  color: #183153;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  border-radius: 19px;
  box-shadow: 0 2px 28px 0 #36B48624;
  margin-bottom: 26px;
  border-left: 5px solid #36B486;
  max-width: 650px;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-card blockquote {
  font-size: 1.11rem;
  color: #183153;
  background: none;
  border-left: none;
  padding-left: 0;
  margin-bottom: 0;
}
.testimonial-card p {
  color: #222;
  margin-bottom: 0;
}
.star-rating-summary p {
  color: #F4F7FB;
  background: #183153;
  border-radius: 14px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 16px #36B48622;
}
.star-rating-summary img {
  max-width: 28px;
}

/* =========== BLOG ARTICLES =========== */
.featured-posts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.featured-posts > article {
  padding: 22px 24px;
  border-radius: 13px;
  background: #243253;
  color: #F4F7FB;
  max-width: 350px;
  font-size: 1.03rem;
  box-shadow: 0 2px 14px #1c2c4235;
}
.featured-posts > article h3 { color: #36B486; margin-bottom: 8px; }

/* ========== FOOTER ========== */
footer {
  background: #12192B;
  color: #F4F7FB;
  padding: 34px 0 12px 0;
  margin-top: 40px;
  border-top: 2px solid #243253;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-menus {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.footer-menus nav a {
  color: #5AF6C5;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 5px 8px 3px 0;
  font-size: 0.99rem;
  transition: color .14s;
}
.footer-menus nav a:hover, .footer-menus nav a:focus {
  color: #36B486;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  color: #F4F7FB;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-social a img {
  width: 36px;
  height: 36px;
  transition: filter .19s, transform .13s;
  filter: brightness(1.3);
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: drop-shadow(0 0 6px #36B486) brightness(2.4);
  transform: scale(1.15);
}
.footer-copy {
  text-align: left;
  color: #5AF6C5;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* =========== FORMS AND CONTACT =========== */
.contact-details p, .contact-details a {
  color: #183153;
  font-size: 1.02rem;
  background: #F4F7FB;
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  width: 22px;
}

/* =========== MOBILE FIRST =========== */
@media (max-width: 768px) {
  .container {
    padding: 0 11px;
  }
  .hero .container {
    padding: 0 11px;
  }
  .content-wrapper, .section {
    padding: 0 2px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .course-grid, .benefits-grid, .testimonial-list, .footer-menus, .featured-posts {
    flex-direction: column;
    gap: 20px;
  }
  .testimonials-list {gap: 20px;}
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .footer-menus {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.24rem; }
  .cta-btn {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 13px 13px;
    font-size: 1rem;
  }
  .feature-grid > div, .course-grid > div, .benefits-grid > div, .featured-posts > article {
    padding: 16px 10px;
    min-width: 0;
  }
  .footer-social a img {
    width: 27px;
    height: 27px;
  }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #12192B;
  color: #F4F7FB;
  padding: 20px 28px;
  box-shadow: 0 -1px 12px #36B48625;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: slideUpCookie .5s;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 18px;
  color: #12192B;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  background: #36B486;
  transition: background .15s, color .12s, transform .13s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #5AF6C5;
  color: #183153;
  transform: scale(1.05);
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #36B486;
  border: 1px solid #36B486;
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: #36B486;
  color: #12192B;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24, 49, 83, 0.86);
  z-index: 15000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
}
.cookie-modal {
  background: #F4F7FB;
  color: #183153;
  padding: 34px 25px 29px 25px;
  border-radius: 19px;
  box-shadow: 0 8px 24px #36B48651;
  width: 95vw;
  max-width: 405px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: fadeInCookie .35s;
}
@keyframes fadeInCookie {
  from { transform: scale(.90); opacity:0; }
  to   { transform: scale(1); opacity:1; }
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 33px; height: 20px;
  background: #c4e7e1;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: background .16s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #36B486;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: #F4F7FB;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left .17s, background .11s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 15px;
  background: #183153;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
}
.cookie-modal .cookie-category .cookie-category-desc {
  font-size: .96rem;
  color: #445;
  margin-left: 5px;
}
.cookie-modal .cookie-category.essential label {
  color: #1B934F; font-weight: 700;
}
.cookie-modal .cookie-modal-actions {
  display: flex; flex-direction: row; gap: 12px;
  justify-content: flex-end;
}

@media (max-width:520px) {
  .cookie-modal {
    padding: 19px 7px 10px 7px;
    max-width: 97vw;
  }
}

/* ======= MISCELLANEOUS ======= */
::-webkit-scrollbar {
  width: 11px;
  background: #161D2D;
}
::-webkit-scrollbar-thumb {
  background: #263659;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #36B486;
}

hr {
  border: none;
  border-top: 1px solid #243253;
  margin: 42px 0 26px 0;
}

/* Zebra rows in lists */
ul li:nth-child(even), ol li:nth-child(even) {
  background: #243253;
  border-radius: 6px;
}

/* Spacing tweaks for tighter lists */
ul li, ol li {
  padding: 8px 0 8px 0;
  margin-bottom: 7px;
  font-size: 1rem;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left {text-align:left;}

/* ============================= END ============================ */