/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --primary-color: #0b9deb;
  --primary-hover-color: #052646;
  --grey-color-text: #000000cc;
  --black-color-text: #000000;
  --white-color-text: #ffffff;
  --border-color: #e2e8f0;
  --border-color-focus: #007fff;
  --link-color: #007fff;
}

/* ─── Base ───────────────────────────────────────────────────────────────────── */
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Afacad", sans-serif;
  color: #000;
  text-rendering: geometricPrecision;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Amarante", serif;
  color: var(--black-color-text);
}

p {
  font-size: 19px;
  color: var(--grey-color-text);
  font-family: "Afacad", sans-serif;
  line-height: 1.5;
  text-align: justify;
}

a {
  color: var(--primary-color);
  text-decoration: none !important;
  transition: color 0.3s ease;
}
a:hover { color: var(--primary-hover-color); }

img { max-width: 100%; }
iframe { border: 0; max-width: 100%; display: block; margin: 0 auto; }

::selection { background-color: var(--primary-color); color: #fff; }

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) rgba(0,0,0,.1);
}
*::-webkit-scrollbar { width: 4px; }
*::-webkit-scrollbar-thumb { background: #888; border-radius: 7px; }
*::-webkit-scrollbar-track { background: transparent; }

/* ─── Loader ─────────────────────────────────────────────────────────────────── */
.loader-wrapper {
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}
.loader {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 6px 2px rgba(0,0,0,.1);
}
.loader::before {
  content: "";
  width: 100px;
  height: 100px;
  border: 5px solid rgba(0,0,0,.05);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1.5s infinite linear;
  display: block;
}
.loader img {
  width: 73%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes spin { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }

/* ─── Utilities ──────────────────────────────────────────────────────────────── */
.section-padding { padding-top: 50px; padding-bottom: 50px; }

/* ─── Blue Wave Section ──────────────────────────────────────────────────────── */
.section-blue {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-hover-color) 100%);
  position: relative;
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}
.section-blue::before,
.section-blue::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.section-blue::before {
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C240,0 480,60 720,30 C960,0 1200,60 1440,30 L1440,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.section-blue::after {
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.section-blue .section-heading,
.section-blue h2, .section-blue h3, .section-blue p, .section-blue li, .section-blue small,
.section-blue .feature-title, .section-blue .text-muted,
.section-blue .feature-subtitle { color: #fff !important; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary, a.btn-primary {
  display: inline-block;
  color: var(--white-color-text) !important;
  background-color: var(--primary-color);
  border: 0 !important;
  font-weight: 400;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 60px;
  font-family: "Amarante", serif;
  text-align: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover, a.btn-primary:hover {
  background-color: var(--primary-hover-color);
  color: #fff !important;
}
.btn-white, a.btn-white {
  display: inline-block;
  color: var(--primary-color) !important;
  background-color: #fff;
  border: 0 !important;
  font-weight: 400;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 60px;
  font-family: "Amarante", serif;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-white:hover, a.btn-white:hover {
  background-color: var(--primary-hover-color);
  color: #fff !important;
}
.btn-secondary, a.btn-secondary {
  display: inline-block;
  color: var(--black-color-text) !important;
  background-color: transparent;
  font-weight: 400;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 60px;
  border: 1px solid var(--black-color-text) !important;
  font-family: "Amarante", serif;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover, a.btn-secondary:hover {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.login-btn.btn-primary,
.signup-btn.btn-secondary {
  min-width: 144px;
  display: block;
}

/* ─── Header / Navbar ────────────────────────────────────────────────────────── */
#header {
  height: 100px;
  display: flex;
  align-items: center;
  background-color: #fff !important;
  position: relative;
  z-index: 1052;
  transition: all 0.5s ease;
}
#header.is-sticky {
  position: fixed;
  right: 0; left: 0; top: 0;
  transform: translateY(-100%);
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  height: 85px;
}
#header.is-sticky.awake { transform: translateY(0); }
#header .navbar-brand img { max-height: 90px; width: auto; }
#header.is-sticky .navbar-brand img { max-height: 67px; }

.header-container { padding: 0 20px; }
.header-flex { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header-flex .navbar { flex: 1; }
.header-flex .navbar .navbar-collapse { justify-content: flex-end; }

.navbar-nav .nav-link {
  color: #000 !important;
  font-size: 19px;
  font-weight: 500;
  padding: 0 !important;
}
.navbar-expand-lg .navbar-nav .nav-item { margin-right: 43px; }
.navbar-expand-lg .navbar-nav .nav-item:last-child { margin-right: 0; }
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover { color: #065db5 !important; }

.extra_nav { margin-left: 32px; margin-right: 100px; }
.extra_nav .navbar-nav { flex-direction: row; align-items: center; gap: 12px; }

.langugae_filter .flag_ico { display: inline-flex; align-items: center; }
.langugae_filter .flag_ico .fi { width: 20px; height: 15px; border-radius: 2px; }
.lang-code { font-size: 14px; margin-left: 4px; font-weight: 500; }
.lang_drop { background: none; border: 0; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.lang_dropdown { min-width: 40px; }
.dropdown-menu {
  border: 0;
  border-radius: 13px;
  background: #fff;
  box-shadow: rgba(0,0,0,.1) 0px 4px 15px;
  padding: 7px 0;
}
.dropdown-item { font-size: 15px; padding: 6px 14px; }
.dropdown-item:hover { color: var(--primary-color); background: transparent; }

/* Mobile nav */
.for_mobile { display: none; }
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 1049;
}
.navbar-toggler { border: 0; padding: 4px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  display: inline-block; width: 1.5em; height: 1.5em; background-size: cover;
}

/* ─── Banner / Hero ──────────────────────────────────────────────────────────── */
/* Home page : photo background with dark overlay */
.HomePage .banner-sectoin {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 15px 0;
  position: relative;
  z-index: 1;
  min-height: 45px;
  display: flex;
  align-items: center;
}
.HomePage .banner-sectoin::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}
/* Other pages : solid navy */
.banner-sectoin {
  background: #036;
  padding: 20px 0;
  min-height: 45px;
  display: flex;
  align-items: center;
}
.breadcrumb-box { display: flex; align-items: center; justify-content: center; height: 100%; }
.page_banner_heading {
  font-family: "Amarante", serif;
  font-size: 25px;
  color: #fff;
  text-align: center;
  margin: 0;
  font-weight: 400;
}
.page_banner_desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  margin: 0;
}

/* ─── Section headings ────────────────────────────────────────────────────────── */
.section-heading {
  font-family: "Amarante", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--black-color-text);
  margin-bottom: 20px;
}
.heading-shap { position: relative; padding-bottom: 16px; }
.heading-shap::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 60px; height: 4px;
  background: var(--primary-color);
  border-radius: 4px;
}
.text-center .heading-shap::after,
.heading-shap.text-center::after { left: 50%; transform: translateX(-50%); }

.description-block { font-size: 18px; color: var(--grey-color-text); line-height: 1.7; }

/* ─── Quick blocks (Home 4 cards) ────────────────────────────────────────────── */
.quick-block {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.quick-block:hover { box-shadow: 0 8px 32px rgba(11,157,235,.18); transform: translateY(-4px); }
.quick-block-icon { width: 80px; height: 80px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.quick-block-icon img { width: 100%; height: 100%; object-fit: contain; }
.quick-block h3 { font-size: 1.3rem; margin-bottom: 10px; }
.quick-block p { font-size: 15px; color: var(--grey-color-text); flex: 1; }
.quick-block .btn-primary { margin-top: auto; font-size: 15px; padding: 10px 22px; }
.quick-block-fa-icon { font-size: 3rem; color: var(--primary-color); }

/* ─── Video Section ─────────────────────────────────────────────────────────── */
.video-section { padding-bottom: 60px; }

/* ─── Minds Driving ──────────────────────────────────────────────────────────── */
.minds-driving {
  background: transparent;
  padding: 60px 0;
}
.minds-driving .md-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-hover-color) 0%, var(--primary-color) 100%);
  border-radius: 24px;
  padding: 50px 60px;
}
.minds-driving .md-title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.minds-driving p { color: rgba(255,255,255,.88); text-align: center; font-size: 18px; }

/* ─── Feature rows ────────────────────────────────────────────────────────────── */
.feature-row { margin-bottom: 50px; }
.feature-title { font-size: 1.6rem; margin-bottom: 8px; }
.feature-subtitle { font-size: 1.1rem; margin-bottom: 12px; }

/* ─── Other features list ─────────────────────────────────────────────────────── */
.other-features-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.other-feature-item { display: flex; align-items: center; gap: 10px; font-size: 17px; background: #fff; border-radius: 8px; padding: 10px 16px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }

/* ─── Home video ─────────────────────────────────────────────────────────────── */
.home-video-wrapper { border-radius: 0; overflow: hidden; }

/* ─── Download app ────────────────────────────────────────────────────────────── */
.dwl-app { display: flex; flex-wrap: wrap; gap: 16px; }
.subheading { font-size: 1.2rem; font-weight: 600; color: var(--primary-color); margin-bottom: 12px; }

/* ─── Partners ────────────────────────────────────────────────────────────────── */
.partner-card { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.partner-card:hover { box-shadow: 0 8px 32px rgba(11,157,235,.15) !important; transform: translateY(-3px); }
.partner-logo { max-height: 80px; object-fit: contain; }

/* ─── NGO image ──────────────────────────────────────────────────────────────── */
.ngoimg { border-radius: 16px; overflow: hidden; }
.ngoimg img { width: 100%; height: auto; }

/* ─── Contact ────────────────────────────────────────────────────────────────── */
.contactImg { border-radius: 16px; overflow: hidden; }
.contactImg img { width: 100%; height: auto; }
.contact-block .section-heading { font-size: clamp(1.4rem, 2.5vw, 2rem); }

/* ─── Forms ──────────────────────────────────────────────────────────────────── */
label {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 7px;
  color: var(--black-color-text);
  font-family: "Amarante", serif;
  display: block;
}
.form-group { margin-bottom: 24px; }
.form-control {
  width: 100%;
  height: 54px;
  padding: 14px 19px;
  font-size: 1rem;
  color: #475f7b;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 90px;
  transition: border-color 0.15s ease;
}
.form-control:focus { border-color: #5a8dee; outline: 0; box-shadow: none; color: #475f7b; background: #fff; }
textarea.form-control { height: auto; border-radius: 16px; resize: vertical; }
select.form-control:not(.form-select) { appearance: auto; }
.form-control.is-invalid { border-color: #dc3545; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer_wrapper { background: #036; padding: 40px 0 20px; margin-top: 20px; }
.footer-main { border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 30px; }
.footer-tagline { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-nav a { color: #fff; font-size: 15px; text-decoration: none; white-space: nowrap; }
.footer-nav a:hover { color: var(--primary-color); }
.social-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 12px; }
.social-links a img { width: 28px; height: 28px; transition: transform 0.2s; }
.social-links a:hover img { transform: scale(1.15); }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.6); padding-bottom: 10px; }

/* ─── Cookie consent ─────────────────────────────────────────────────────────── */
.cookiealert {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - 40px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  padding: 20px 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookiealert p { margin: 0; font-size: 14px; flex: 1; color: #333; text-align: left; }
.cookie-btn { display: flex; gap: 8px; }
.cookie-btn .btn { font-size: 13px; padding: 8px 16px; border-radius: 30px; }

/* ─── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .for_desktop { display: none !important; }
  .for_mobile { display: block !important; }
  #header { height: 80px; }

  #header .collapse:not(.show).menu-show {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 80px 24px 24px;
    z-index: 1050;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,.1);
  }
  #header .collapse.menu-show .navbar-nav { flex-direction: column; }
  #header .collapse.menu-show .navbar-nav .nav-item { margin: 0 0 16px; }
  #header .collapse.menu-show .extra_nav { margin: 16px 0 0; }
  #header .collapse.menu-show .extra_nav .navbar-nav { flex-direction: column; align-items: flex-start; }

  .mobile_logo { position: absolute; top: 20px; left: 20px; }
  .mobile_logo img { max-height: 50px; }
  .menuClose-icon { position: absolute; top: 20px; right: 20px; background: none; border: 0; cursor: pointer; }

  body.scroll-off { overflow: hidden; }

  .banner-sectoin, .HomePage .banner-sectoin { min-height: 70px; padding: 15px 0; }
  .page_banner_heading { font-size: 22px; }
  .section-padding { padding-top: 36px; padding-bottom: 36px; }
  .quick-block { padding: 20px 16px; }
  .feature-row { margin-bottom: 32px; }
  .dwl-app { justify-content: center; }
}

@media (max-width: 767.98px) {
  p { font-size: 16px; }
  .btn-primary, a.btn-primary,
  .btn-secondary, a.btn-secondary { font-size: 16px; padding: 12px 22px; }
  .footer_wrapper { padding: 40px 0 0; }
  .cookiealert { flex-direction: column; align-items: flex-start; }
}
