:root {
  --primary-900: #06283d; /* deep navy */
  --primary-700: #0f4c81; /* blue */
  --accent-500: #0fb3a0; /* teal accent */
  --accent-600: #0aa899;
  --red: #c62828; /* kept for small accents where used */
  --white: #ffffff;
  --muted: #6c6c6c;
  --glass-white: rgba(255, 255, 255, 0.03);
  --light-text: #f7fbff; /* light text for navbar/hero */
}

/* Basic reset and body */
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  padding-top: 78px; /* account for fixed navbar height */
  color: var(--light-text);
}

/* =========================
   NAVBAR (transparent glass)
   ========================= */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: 78px;
  display: flex;
  align-items: center;
  background: transparent; /* no blur on whole bar */
  border: none;
  box-shadow: none;
  padding: 0;
}

.container.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 14px;
  padding-right: 14px;
}

/* Brand */
.navbar-brand {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px; /* pill shape */
  padding: 6px 18px;
  color: red !important; /* teal accent */
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
}
.navbar-custom .nav-link {
  color: #fff !important;
  font-weight: 600;
  padding: 0 10px;
}
.navbar-custom .nav-link:hover {
  color: #00c2b2 !important;
}

/* Toggler */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18);
}
.navbar-toggler-icon {
  filter: invert(1) brightness(2) contrast(1.1);
}

/* Buttons */
.btn-outline-primary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-primary {
  background: var(--accent-500);
  border-color: var(--accent-500);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
}

/* Ensure page background and hero start at the very top */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0; /* remove default browser margin */
  padding: 0; /* remove leftover padding-top:78px */
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero - full-bleed and sits at page top */
.hero-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--light-text);
  /* gradient covers full top so no white strip appears */
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 70%);
}

/* Left column content */
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
}
.hero-text-wrapper {
  max-width: 760px;
  margin: auto;
  padding: 48px;
}

/* Hero logo styling to match website theme */
.hero-logo {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 25000; /* bold */
  font-size: 18rem; /* larger size */
  color: var(--accent-500); /* teal accent from your theme */
  text-transform: uppercase; /* matches hero style */
  letter-spacing: 1.5px; /* spacing for a modern look */
  background: linear-gradient(90deg, var(--accent-500), var(--primary-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* gradient text effect */
  margin-bottom: 800px;
  text-align: center;
}

/* Title and role */
.hero-title {
  font-size: 1.4rem;
  border-radius: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-role {
  color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* description */
.hero-description-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.07);
  padding: 18px;
  font-size: 1.1rem;
  border-radius: 10px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
}

/* Buttons */
.btn-primary {
  background: var(--accent-500);
  border-color: var(--accent-500);
  color: #fff;
}
.btn-outline-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* Cities layout (aligned markers + lines) */
.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.city-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.09);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--light-text);
}
.city-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border-radius: 4px;
}
.city-name {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-left: 10px;
}

/* Contact */
.hero-contact {
  border-top: 1px dashed rgba(255, 255, 255, 0.09);
  padding-top: 12px;
  margin-top: 16px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-contact .contact-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
}
.hero-contact .contact-link:hover {
  color: var(--accent-500);
}

/* Right image */
.hero-image-col {
  min-height: calc(100vh);
  overflow: hidden;
}
.hero-image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* small screens */
@media (max-width: 991px) {
  .hero-text-wrapper {
    padding: 28px 18px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .city-list {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   Roles & Responsibilities - Hero-like Layout (responsive)
   ============================== */

/* Section reset */
#roles-responsibilities {
  width: 100%;
  min-height: 100vh; /* full height like hero on large screens */
  display: block;
  position: relative;
  background: transparent;
  padding: 0;
}

/* remove container side gaps */
#roles-responsibilities .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* make row stretch like hero (only on large screens) */
#roles-responsibilities .row.align-items-stretch {
  margin: 0;
  align-items: stretch;
}

/* --------------------------
   LEFT: Image column
   -------------------------- */
.roles-image-col {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Default image behavior (desktop-first) */
.roles-image-col .roles-image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* hero-style cover on large screens */
  object-position: center;   /* keep subject centered */
  display: block;
  transition: transform .35s ease, opacity .25s ease;
}

/* --------------------------
   RIGHT: Text column
   -------------------------- */
#roles-responsibilities .col-lg-6.d-flex {
  display: flex;
  align-items: center;   /* vertical center */
  min-height: 100%;
  position: relative;
  z-index: 2;
  background: transparent;
}

#roles-responsibilities .px-4 {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
}

#roles-responsibilities h2.fw-bold {
  color: #000;  /* keep black heading */
  font-size: 1.75rem;
  margin-bottom: 10px;
}

#roles-responsibilities .text-muted {
  color: #555 !important;
  margin-bottom: 22px;
}

/* --------------------------
   Role cards
   -------------------------- */
.role-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.10);
}
.role-card h5 {
  font-weight: 600;
  margin: 10px 0;
  color: #222;
}
.role-card p {
  font-size: 0.95rem;
  color: #555;
}
.role-icon {
  font-size: 1.8rem;
  color: #007bff; /* theme color */
  margin-bottom: 10px;
}

/* --------------------------
   Responsive - large screens
   -------------------------- */
@media (min-width: 992px) {
  /* Make row full viewport minus navbar height (adjust 78px if needed) */
  #roles-responsibilities .row.align-items-stretch {
    min-height: calc(100vh - 78px);
  }
  .roles-image-col { min-height: 100%; }
  .roles-image-col .roles-image-full {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 0;
  }
  #roles-responsibilities .px-4 {
    padding: 64px 48px;
  }
}

/* --------------------------
   Responsive - tablet / mobile
   -------------------------- */
@media (max-width: 991px) {
  /* avoid full viewport hero on small screens */
  #roles-responsibilities {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  #roles-responsibilities .row.align-items-stretch {
    min-height: auto;
  }

  /* Image column becomes a fixed-height block to avoid huge vertical space */
  .roles-image-col {
    min-height: 220px;
    padding: 0 18px 18px;
    align-items: center;
  }

  /* On mobile, show entire image without aggressive cropping */
  .roles-image-col .roles-image-full {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;    /* show full image */
    object-position: center;
    border-radius: 12px;
    display: block;
  }

  /* Adjust text padding */
  #roles-responsibilities .px-4 {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Slight card spacing tweak for small screens */
  .role-card {
    margin-bottom: 12px;
  }
}

/* --------------------------
   Small phones
   -------------------------- */
@media (max-width: 575px) {
  #roles-responsibilities .px-4 { padding: 14px; }
  .roles-image-col .roles-image-full {
    width: 92%;
    margin: 0 auto;
    display: block;
    max-height: 320px;
  }

  /* Reduce hero heading on tiny screens */
  #roles-responsibilities h2.fw-bold {
    font-size: 1.4rem;
  }
}

/* --------------------------
   Optional: if you want the image to always keep center focus when cropping
   -------------------------- */
.roles-image-col .roles-image-full--center {
  object-position: center center;
}

/* --------------------------
   Accessibility and touch improvements
   -------------------------- */
.roles-image-col .roles-image-full,
.role-card {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}




/* How it works icons */
#how-it-works .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-500);
  color: #060606;
  margin: auto;
}

/* Register card */
#register .card {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
#register .btn-primary {
  padding: .85rem 2.2rem;
  font-size: 1.02rem;
}

/* =========================
   Animated / Fancy Service Card
   ========================= */

@keyframes cardIn {
  0% {
    transform: translateY(24px) rotateX(12deg);
    opacity: 0;
    filter: blur(6px);
  }
  60% {
    transform: translateY(-6px) rotateX(2deg);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0) rotateX(0);
    opacity: 1;
    filter: blur(0);
  }
}

.service-fancy {
  --accent-1: var(--accent-500);
  --accent-2: var(--primary-700);
  display: grid;
  grid-template-rows: auto 1fr auto;
  text-align: center;
  text-transform: none;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
  transform-origin: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform .45s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow .2s;
  will-change: transform;
  min-height: 220px;
  animation: cardIn .7s ease both;
}

.service-fancy:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.service-fancy .fancy-head {
  padding: 1.15rem 1rem;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  position: relative;
  display: grid;
  place-items: center;
  gap: .35rem;
}

.service-fancy .fancy-head::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -8px;
  height: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border-radius: 6px;
  filter: blur(3px);
  opacity: 0.9;
}

.service-fancy .badge-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 6px;
  transform-origin: center;
  animation: badgePop .6s cubic-bezier(0.2, 0.9, 0.3, 1) .15s both;
}

@keyframes badgePop {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  60% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.service-fancy h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.service-fancy .fancy-body {
  padding: 1rem 1.15rem 1.1rem;
  color: #444;
  display: flex;
  align-items: start;
  justify-content: center;
}

.service-fancy .fancy-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.service-fancy .fancy-foot {
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.03));
}

.service-fancy .fancy-btn {
  border: none;
  background: var(--accent-500);
  color: #fff;
  padding: .55rem .9rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
}
.service-fancy .fancy-btn:hover {
  background: var(--accent-600);
}

/* service variations */
.service-fancy.service-1 .fancy-head {
  --accent-1: var(--accent-500);
  --accent-2: var(--primary-700);
}
.service-fancy.service-2 .fancy-head {
  --accent-1: #f7256e;
  --accent-2: #cc0c48;
}
.service-fancy.service-3 .fancy-head {
  --accent-1: #f7ea1f;
  --accent-2: #f87d2c;
}
.service-fancy.service-4 .fancy-head {
  --accent-1: #3b82f6;
  --accent-2: #2563eb;
}

/* services row layout */
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 991px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .services-row {
    grid-template-columns: 1fr;
  }
}

/* HOW IT WORKS tiles */
.how-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: center;
}
.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.how-card .card-top {
  background: linear-gradient(135deg, var(--primary-700), var(--accent-500));
  padding: 30px 15px 20px;
  color: #fff;
  position: relative;
  border-bottom: 4px solid rgba(255, 255, 255, 0.12);
}
.how-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-700);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.how-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.how-card .card-body {
  padding: 20px 15px;
  color: #444;
  font-size: 0.95rem;
}
.how-card .card-footer {
  background: #f9f9f9;
  padding: 15px;
}
.how-card .btn-step {
  background: var(--primary-700);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 6px 16px;
  transition: background .2s;
}
.how-card .btn-step:hover {
  background: var(--accent-600);
}

/* small tweaks for how-card icon sizes on small screens */
@media (max-width: 575px) {
  .how-card .icon-circle {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
}

/* Preserve small-screen image styles used in HTML */
.img-fluid.rounded-3.shadow-sm {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* small-screen hero image (under text) spacing */
@media (max-width: 991px) {
  .col-12.d-lg-none.mt-3.text-center img {
    max-width: 92%;
    margin: 0 auto;
    display: block;
  }
}

/* small utility */
.text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* =========================
   FOOTER — STYLISH UPDATE
   ========================= */
footer {
  background: linear-gradient(180deg, rgba(6, 40, 61, 0.98) 0%, rgba(11, 11, 11, 0.98) 100%);
  color: #dfeff3;
  padding: 64px 0 36px;
  box-shadow: 0 -6px 30px rgba(2, 12, 22, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
}

/* Footer container columns */
footer .container {
  max-width: 1180px;
}

/* Top grid */
footer .row.text-white-50 {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

/* Logo / short about */
footer .brand-block h4 {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 1.05rem;
}
footer .brand-block p {
  color: rgba(223, 239, 243, 0.82);
  margin-bottom: 12px;
  line-height: 1.6;
}

/* contact column */
footer .contact-block p,
footer .contact-block a {
  display: block;
  color: rgba(223, 239, 243, 0.82);
  margin-bottom: 8px;
}
footer .contact-block i {
  opacity: 0.92;
  margin-right: 8px;
  color: var(--accent-500);
}

/* links */
footer .list-unstyled li {
  margin-bottom: 8px;
}
footer .list-unstyled li a {
  color: rgba(223, 239, 243, 0.78);
  transition: transform 120ms ease, color 150ms ease;
}
footer .list-unstyled li a:hover {
  color: var(--accent-500);
  transform: translateX(6px);
}

/* social + newsletter column */
footer .social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .social-icons a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 4px 10px rgba(2, 12, 22, 0.25);
}
footer .social-icons a:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(90deg, var(--accent-500), var(--primary-700));
  box-shadow: 0 8px 28px rgba(11, 40, 60, 0.38);
}

/* newsletter */
.footer-newsletter {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: #eaf6f2;
  outline: none;
  transition: box-shadow 150ms ease, border-color 150ms ease;
}
.footer-newsletter input[type="email"]::placeholder {
  color: rgba(223, 239, 243, 0.6);
}
.footer-newsletter input[type="email"]:focus {
  border-color: rgba(15, 76, 129, 0.95);
  box-shadow: 0 6px 18px rgba(15, 76, 129, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.footer-newsletter button {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, var(--accent-500), var(--primary-700));
  color: #031725;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.footer-newsletter button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 40, 60, 0.28);
}

/* hr and bottom row */
footer hr {
  border-color: rgba(255, 255, 255, 0.04);
  margin: 28px 0;
}
footer .bottom-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(223, 239, 243, 0.6);
  font-size: 0.9rem;
}

/* small devices: stack and center */
@media (max-width: 991px) {
  footer .row.text-white-50 {
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
  }
  footer .brand-block,
  footer .contact-block,
  footer .social-icons,
  footer .footer-newsletter {
    text-align: left;
  }
  footer .bottom-note {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* very small: single column */
@media (max-width: 575px) {
  footer .row.text-white-50 {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 48px 18px 30px;
  }
  footer .brand-block h4 {
    font-size: 1.02rem;
  }
  footer .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
  }
  footer .footer-newsletter button {
    width: 100%;
  }
}

/* subtle utility helpers (keeps footer links readable) */
footer .text-muted,
footer .small {
  color: rgba(223, 239, 243, 0.54) !important;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;              /* stick it on the right bottom */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    background-color: #1ebe5d; /* slightly darker on hover */
}
