html {
  scroll-behavior: smooth;
}



body {
  cursor: url("assets/icons/cursor.png") 16 16, auto;
}




body {
  font-family: 'Karla', Arial, sans-serif;
  margin: 0;
  background: #080C0C;
  color: #F8FCFD;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* NAVIGATION */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 40px;
  padding: 10px 0;

  /* ✨ Frosted glass effect */
  background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  backdrop-filter: blur(12px);   /* blur behind */
  -webkit-backdrop-filter: blur(12px); /* Safari support */

  width: 100%;
}

.logo-wrap {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.logo {
  height: 30px;
}
.nav-menu {
  display: flex;
  gap: 56px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav-menu li a {
  color: #737373;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 4px 0;
  border-radius: 6px;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-menu li a:hover {
  color: #00D5FF;
  background: none;
}
/* signup btn */
.signup-btn {
  position: absolute;
  right: 40px;
  top: 14px;
  padding: 7px 22px 7px 14px;
  background: #239bb3;
  color: #0B181A;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.22s, color 0.22s;
}
.signup-btn:hover {
  background: #00D5FF;
  color: #0B181A;
}
.signup-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    min-height: unset;
    padding: 10px 0;
    position: static;
  }
  .logo-wrap {
    position: static;
    justify-content: center;
    margin-bottom: 10px;
    height: auto;
  }
  .nav-menu {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }


}
  /* Centered mail button (icon + text) */
  .mobile-nav-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 0;
    background: #00d5ff;
    color: #0B181A;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    gap: 10px;             /* Space between icon and text */
    text-align: center;
    text-decoration: none;
    border: none;
    outline: none;
    margin-top: 24px;      /* Optional: space from links above */
    box-sizing: border-box;
  }
  .mobile-nav-mail img,
  .signup-icon {
    width: 22px;
    height: 22px;
    margin: 0;
    justify-content: center;
    display: block;
  }










/* HERO SECTION */
/* HERO SECTION */
.hero {
  text-align: center;
  padding: 120px 10px 150px 10px;
  position: relative;
  z-index: 2;
  background: none;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0 auto 40px auto;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  gap: 2px;
  z-index: 2;
  position: relative;
}
.star {
  width: 22px;
  height: 22px;
  margin-right: 2px;
  vertical-align: middle;
}
.rating-text {
  color: #F8FCFD;
  font-size: 1.01rem;
  font-weight: 500;
  margin-left: 8px;
  opacity: 0.8;
}
.hero h1 {
  font-size: 2.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  z-index: 2;
  position: relative;
}
.hero-subtext {
  color: #B1C0C5;
  font-size: 1.07rem;
  margin: 0 auto 32px auto;
  max-width: 600px;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}
.hero-btn {
  display: inline-block;
  margin: 16px 0 32px 0;
  font-size: 1.17rem;
  font-weight: 600;
  padding: 15px 60px;
  background:#239bb3 ;
  color: #0B181A;
  border: none;
  border-radius: 40px;
  box-shadow: 0 4px 14px rgba(0,213,255,0.09);
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  z-index: 2;
  position: relative;
  text-decoration: none !important; 
}
.hero-btn:hover {
  background: #00d5ff;
  color: #000000;
  box-shadow: 0 4px 24px rgba(0,213,255,0.13);
}
.hero-note {
  margin-top: 16px;
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.95;
  z-index: 2;
  position: relative;
}
/* Side vignette glows */
.hero-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 320px;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-left {
  left: -220px;
  background: radial-gradient(circle at left, rgba(0,213,255,0.13) 0, transparent 75%);
  height: 80%;
}
.hero-glow-right {
  right: -220px;
  background: radial-gradient(circle at right, rgba(0,213,255,0.13) 0, transparent 75%);
  height: 80%;
}

/* ===== HERO RESPONSIVE: Clean, Non-overlapping ===== */

/* Tablet/Mobile */
@media (max-width: 700px) {
  .hero {
    padding: 32px 8px 28px 8px;
    max-width: 99vw;
  }
  .hero-glow-left, .hero-glow-right {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.18rem;         /* ↓ smaller for very small screens */
    line-height: 1.25;
    margin-bottom: 18px;
    word-break: break-word;      /* prevents overflow */
    padding: 0 4px;
  }
  .hero-subtext {
    font-size: 0.92rem;
    line-height: 1.35;
    padding: 0 4px;
    word-break: break-word;
  }
  .hero-btn {
    padding: 10px 8px;          /* ↓ tighter padding for mobile */
    font-size: 0.97rem;
    min-width: 0;
    width: 96vw;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-note {
    font-size: 0.78rem;
    padding: 0 2px;
  }
}















/*work-section*/
/*work-section*/
.work-section {
  max-width: 1400px;
  margin: 40px auto 0 auto;
  padding: 0 0 28px 0;
}
.work-title {
  font-family: 'Karla', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 100;
  color: #fff;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 26px;
}

/* --- Use CSS GRID for rows --- */
.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
  align-items: stretch;
}

/* --- CARD LAYOUT --- */
.work-card {
  background: #0B181A;
  border-radius: 16px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 2px 16px rgba(10,32,34,0.09);
  padding: 28px 28px 26px 28px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.work-card .card-title {
  color: #e0e0e0;
  font-family: 'Karla', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 100;
  margin: 0 0 16px 0;
  letter-spacing: 0.2px;
  padding: 0;
  line-height: 1.22;
  text-align: left;
}

/* --- Image rows: force all images to the same height! --- */
.card-images,
.brand-images-row,
.landing-images,
.ux-images {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 22px; /* slightly more breathing room */
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 104px; /* ensures row always 104px tall */
}
.card-images img,
.brand-images-row img,
.landing-images img,
.ux-images img {
  height: 104px !important;
  width: auto;
  min-width: 48px;
  max-width: 210px;
  border-radius: 6px;
  object-fit: contain;
  background: none !important;
  display: block;
  margin: 0;
  padding: 0;
}

/* --- LOGOS CARD: grid always at the top --- */
.work-card.logos {
  align-items: center;
  padding-top: 28px;
  padding-bottom: 26px;
  padding-left: 12px;
  padding-right: 12px;
}
.logo-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 18px 8px;
  align-items: center;
  justify-items: center;
}
.logo-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.logo-grid img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: none !important;
}
.logo-grid span {
  color: #D8DFE6;
  font-size: 1.02rem;
  text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
  .work-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 700px) {
  .work-section {
    padding: 0 8px !important;
  }
  .work-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
  }
  .work-card,
  .work-card.logos {
    background: #10181c !important;
    border-radius: 16px !important;
    padding: 14px 8px !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .work-card .card-title {
    display: none !important;  /* Or block if you want the title above each card group */
  }
  /* --- DESKTOP IMAGES: 2 per row, uncropped --- */
  .card-images,
  .brand-images-row,
  .landing-images,
  .ux-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;   /* 2 columns */
    gap: 10px !important;
    width: 100% !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    min-height: unset !important;
  }
  .card-images img,
  .brand-images-row img,
  .landing-images img,
  .ux-images img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    border-radius: 8px !important;
    object-fit: contain !important;
    margin: 0 !important;
    background: none !important;
    padding: 0 !important;
    aspect-ratio: auto !important; /* Keeps natural aspect */
  }
  /* --- MOBILE IMAGES: 5 per row, scrollable if needed --- */
  .ux-images {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 6px !important;
  }
  .ux-images img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
  }
  /* --- LOGOS: 5 per row --- */
  .logo-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 6px !important;
    align-items: center !important;
    justify-items: center !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .logo-grid img {
    width: 44px !important;
    height: 44px !important;
    border-radius: 7px !important;
  }
  .logo-grid span {
    display: none !important;  /* Hide logo text */
  }
}
/* Hide new mobile grid by default */
.mobile-work-grid {
  display: none;
}




/* Hide new mobile grid by default */
.mobile-work-grid {
  display: none;
}

/* Show only on mobile, hide the old .work-section */
@media (max-width: 1200px) {
  .work-section { display: none !important; }

  .mobile-work-grid {
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    padding: 0 8px;
    margin-top: 16px;
    background: none !important;
    box-shadow: none !important;
  }

  /* UNIVERSAL: All .mobile-row become scrollable flex rows */
  .mobile-row,
  .mobile-row.desktop-row,
  .mobile-row.mobile-triple,
  .mobile-row.mobile-scroll,
  .mobile-row.logo-row {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 22px !important;
    width: 100% !important;
    padding-bottom: 4px !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  /* Scrollbar styling (optional, can tweak/remove) */
  .mobile-row::-webkit-scrollbar {
    height: 6px;
  }
  .mobile-row::-webkit-scrollbar-thumb {
    background: none;
    border-radius: 4px;
  }
  .mobile-row::-webkit-scrollbar-track {
    background: none;
  }

  /* Desktop-style cards: wide images */
  .mobile-row.desktop-row .media-card {
    min-width: 230px;
    width: 230px;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
  }
  .mobile-row.desktop-row .media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: none;
    border: none;
  }
  /* Single centered image if needed */
  .mobile-row.desktop-row.single-center .media-card {
    min-width: 80vw;
    width: 80vw;
  }

  /* Triple portrait row (mobile UI style) */
  .mobile-row.mobile-triple .media-card {
    min-width: 120px;
    width: 120px;
    aspect-ratio: 9/16;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  .mobile-row.mobile-triple .media-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  .mobile-row.mobile-triple,
  .mobile-row.mobile-triple * {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
  }

  /* Mobile scroll row (if needed for phone UI cards) */
  .mobile-row.mobile-scroll .media-card {
    min-width: 110px;
    width: 110px;
    aspect-ratio: 9/16;
    border-radius: 10px;
    overflow: hidden;
    background: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
  }
  .mobile-row.mobile-scroll .media-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    background: none;
    box-shadow: none;
    border: none;
  }

  /* --- LOGO ROW: ONE ROW, SCROLLABLE, SQUARE, TIGHT GAP --- */
  .mobile-row.logo-row {
    gap: 16px !important;
    margin-top: 12px;
    margin-bottom: 12px;
    padding-bottom: 4px !important;
    /* Scrollable just like the other rows */
  }
  .mobile-row.logo-row .media-card {
    min-width: 44px !important;
    width: 44px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
    background: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    margin-top: 0 !important;
    padding-left: 0 !important;
  }
  .mobile-row.logo-row .media-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px !important;
    display: block;
    box-shadow: none !important;
    background: none !important;
    border: none !important;
  }

  /* Heading styling */
  .mobile-work-grid .work-title {
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 28px;
    margin-top: 42px;
    padding-left: 2px;
  }
}

@media (min-width: 1201px) {
  .mobile-work-grid { display: none !important; }
}

































/* SECTION DIVIDER LINE */
/* --- BLURRY SECTION DIVIDER WITH CIRCLES --- */
/* --- FULL BLUR LINE WITH CIRCLES ON ENDS --- */
.section-divider-glow {
  width: 420px;
  height: 2px;
  margin: 100px auto 100px auto;
  position: relative;
  filter: blur(2px);
  background: rgba(0, 213, 255, 0.3);
  box-shadow: 0 0 18px rgba(0, 213, 255, 0.4), 0 0 36px rgba(0, 213, 255, 0.2);
  border-radius: 2px;
}

.section-divider-glow::before,
.section-divider-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, rgba(0,213,255,0.35) 0%, transparent 60%);
  filter: blur(4px);
  border-radius: 50%;
}

.section-divider-glow::before {
  left: -26px;
}

.section-divider-glow::after {
  right: -26px;
}


















/* CLIENTS SECTION */
/* CLIENTS SECTION */
.clients-section {
  text-align: center;
  margin-bottom: 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.clients-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #F8FCFD;
  margin-bottom: 18px;
}

.clients-description {
  font-size: 1.05rem;
  color: #8b8b8b;
  margin: 0 auto 10px auto;
  line-height: 1.6;
  max-width: 1400px;
  text-align: center;
}

/* Default: desktop flex layout */
.client-list-manual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  padding: 90px 0;
}

.client-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 11px;
}

.client-row span {
  font-family: 'Kodchasan', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #00D5FF;
  text-align: center;
  display: inline-block;
  max-width: 240px;
  min-width: 0;
  line-height: 1.6;
  padding: 0 4px;
  white-space: nowrap;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.clients-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* --- Hide tablet/mobile manual rows by default --- */
.tab-layout, .mobile-layout { display: none; }

/* --- Tablet layout: <1200px --- */
@media (max-width: 1200px) {
  .client-list-manual { display: none; }
  .tab-layout { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 34px 0; }
  .tab-layout .client-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 23px;
    margin-bottom: 0;
    padding: 0px;
    flex-wrap: wrap;
  }
  .tab-layout .client-row span {
    font-size: 0.96rem;
    max-width: 280px;
    padding: 5px;
    white-space: normal;
  }
  .clients-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
  }
}

/* --- Mobile layout: <900px --- */
@media (max-width: 900px) {
  .tab-layout { display: none; }
  .mobile-layout { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 0; }
  .mobile-layout .client-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 44px;
    margin-bottom: 0;
    padding: 10px 0;
    flex-wrap: wrap;
  }
  .mobile-layout .client-row span {
    font-size: 0.88rem;
    max-width: 88vw;
    padding: 2px;
    white-space: normal;
  }
  .clients-wrapper {
    max-width: 99vw;
    margin: 0 auto;
    width: 100%;
    padding: 0 4px;
  }
}

/* --- Ultra small screens: <600px --- */
@media (max-width: 600px) {
  .mobile-layout .client-row {
    gap: 62px;
    padding: 6px 0;
  }
  .mobile-layout .client-row span {
    font-size: 0.72rem;
    max-width: 98vw;
    padding: 1px;
  }
  .clients-wrapper {
    max-width: 99vw;
    margin: 0 auto;
    width: 100%;
    padding: 0 2px;
  }
}

/* Remove backgrounds, borders, pills for all breakpoints */
.client-row span {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}












/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 44px 24px 0 24px; /* Remove bottom padding */
  text-align: center;
  position: relative;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #F8FCFD;
  margin-bottom: 0;
  padding-bottom: 80px;
}

/* Grid layout (desktop + mobile) */
.testimonial-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;

  /* Hide scrollbar in all browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}
.testimonial-grid::-webkit-scrollbar {
  display: none;          /* Chrome, Safari, Opera */
}

.testimonial-card {
  background: #0B181A;
  border-radius: 16px;
  padding: 22px 25px;
  color: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  box-sizing: border-box;
  scroll-snap-align: start;
  transition: transform 0.18s;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

/* Quote icon */
.quote-icon {
  font-size: 3rem;
  color: #239bb3;
  margin-bottom: 18px;
  line-height: 1;
}

/* Paragraph */
.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #D0D8DC;
  margin-bottom: 33px;
}

/* Footer block: holds name + tag */
.testimonial-footer {
  margin-top: auto;
}

/* Name */
.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: #00D5FF;
  margin-bottom: 4px;
}

/* Tag line */
.testimonial-tag {
  font-size: 0.85rem;
  color: #88a3a7;
}

/* --- MOBILE: More compact cards --- */
@media (max-width: 700px) {
  .testimonials-title {
    font-size: 1.5rem;
    padding-bottom: 34px !important;
    margin-bottom: 0 !important;
  }
  .testimonial-grid {
    gap: 25px;
    padding-bottom: 8px;
  }
  .testimonial-card {
    min-width: 220px;
    max-width: 86vw;
    min-height: 120px;
    padding: 24px 25px;
    font-size: 0.91rem;
    transform: none;
  }
  .quote-icon {
    font-size: 2.1rem;
    margin-bottom: 12px;
  }
  .testimonial-text {
    font-size: 0.91rem;
    margin-bottom: 17px;
  }
  .testimonial-author {
    font-size: 1rem;
  }
  .testimonial-tag {
    font-size: 0.77rem;
  }
}
@media (max-width: 380px) {
  .testimonials-title .nowrap {
    white-space: nowrap;
    /* You can also add: display: inline-block; if needed */
  }
}

/* (No visible scrollbar styles needed, hidden above) */












/* --- SERVICES SECTION --- */
/* SERVICES SECTION */
.services-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
}

.services-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #F8FCFD;
  margin-bottom: 60px;
}

/* Grid for service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  justify-content: center;
}

/* Main card */
.service-card {
  background: #0B181A;
  border-radius: 20px;
  padding: 20px 5px;
  box-shadow: 0 0 0 rgba(0,213,255,0);
  transition: box-shadow 0.4s ease, border 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100px;
}

.service-card:hover {
  box-shadow: 0 0 20px rgba(0, 213, 255, 0.4);
  border: 1px solid rgba(0,213,255,0.4);
  transform: translateY(-4px);
}

/* Logo */
.service-logo {
  width: 36px;
  margin-bottom: 16px;
}

/* Title */
.service-title {
  font-size: 1rem;
  color: #F8FCFD;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
  text-transform: uppercase;
}

/* Rating row */
.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 24px;
}

.rating img {
  width: 14px;
  height: 14px;
}

.rating-text {
  font-size: 0.85rem;
  color: #ccc;
  margin-left: 6px;
}

/* Enquire Button */
.enquire-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #00D5FF;
  padding: 10px 22px;
  border-radius: 24px;
  color: #0B181A;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.enquire-btn img {
  width: 18px;
  height: 18px;
}

.enquire-btn:hover {
  background: #00aeff;
  box-shadow: 0 0 16px rgba(0, 213, 255, 0.126);
}

@media (max-width: 900px) {
  .services-title {
    padding-bottom: 45px !important; /* or any value you like */
    margin-bottom: 0 !important;     /* reset margin to avoid double spacing */
  }
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* Two cards per row */
    gap: 18px;
  }
  .service-card {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 450px) {
  .services-title {
    padding-bottom: 45px !important; /* or any value you like */
    margin-bottom: 0 !important;     /* reset margin to avoid double spacing */
  }
  .service-card .service-logo {
    display: none !important;
  }
  .service-card .rating {
    display: none !important;
  }
}
















/* --- LIVE MENTORSHIP SECTION --- */
.mentorship-section {
  padding: 10px 0;
  text-align: center;
  background-color: #080C0C;
}

.mentorship-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #F8FCFD;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-family: 'Karla', sans-serif;
}

.mentorship-cards {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 80px; /* This adds space below the title */
}

@media (max-width: 800px) {
  .mentorship-cards {
    flex-direction: column;
    gap: 5rem;
    align-items: center;
    padding-top: 40px !important; /* More space for mobile */
  }
  .mentorship-title {
    margin-bottom: 0 !important;
  }
}


.mentorship-card {
  background-color: #040B0C;
  border: 1px solid #052930;
  border-radius: 20px;
  padding: 10px 0px 40px;
  width: 300px;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mentorship-card:hover {
  box-shadow: 0 0 40px rgba(0, 213, 255, 0.2);
}

.plan-title {
  font-size: 1.7rem;
  color: #00D5FF;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-bottom: 2px;
}

.plan-subtitle {
  color: #1e91a8;
  font-size: 0.9rem;
  margin-bottom: 50px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.plan-features li {
  color: #F8FCFD;
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-align: center;
}

.book-button {
  background-color: #96661d;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  margin-bottom: 0 !important; /* <-- always zero, spacing handled by card */
  text-decoration: none;
  display: inline-block;
}

.book-button:hover {
  transform: scale(1.05);
  background-color: #e8910f;
}

/* Responsive: adjust padding on the card only, not the button */
@media (max-width: 800px) {
  .mentorship-cards {
    
    flex-direction: column;
    gap: 5rem;
    align-items: center;
  }
  .mentorship-card {
    width: 80%;
    max-width: 350px;
    padding-bottom: 20px !important;
  }
    .card-bottom-spacer {
    height: 20px;
  }
}

@media (max-width: 600px) {
  .mentorship-card {
    padding-bottom: 0px !important; /* or more if you want extra breathing room */
  }
    .card-bottom-spacer {
    height: 20px;
  }
}


































/* === CONNECT SECTION === */
/* --- LET’S CONNECT SECTION --- */
/* === CONNECT SECTION === */
.calendar-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  text-align: center;
  color: #f8fcfd;
  margin-bottom: 1.5rem;
}

.calendar-header strong {
  grid-column: 2;
  font-size: 1.1rem;
  font-weight: 600;
}

.calendar-header span {
  cursor: pointer;
  font-size: 1.25rem;
  user-select: none;
}

.connect-section {
  padding: 3rem 2rem 6rem 2rem;
  text-align: center;
  background-color: #080c0c;
}

.connect-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #F8FCFD;
  margin-bottom: 3rem;
  font-family: 'Karla', sans-serif;
  text-transform: uppercase;
}


.connect-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* ROW layout */
.calendar-inputs-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

/* Calendar + Time / Input Cards */
.calendar-card,
.input-card {
  background-color: #0b181a;
  border: 1px solid #052930;
  border-radius: 1.2rem;
  padding: 2rem;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 300px;
  max-width: 500px;
  box-sizing: border-box;
}

/* Calendar Styling */
/* Calendar wrapper layout fix */
#calendar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Weekday labels row */
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* Dates grid */
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}


.calendar-day {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.calendar-day:hover {
  background-color: rgba(0, 213, 255, 0.3);
}

.calendar-day.selected {
  background-color: #00d5ff !important;
  color: #080c0c !important;
}

#calendar > div:nth-child(2) > div {
  font-weight: 500;
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* Scrollable Time List */
.time-slot-scroll {
  display: flex;
  flex-direction: column;
  max-height: 21rem;
  overflow-y: auto;
  padding-right: 4px;
  padding-left: 45px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.3s ease;
}

.time-slot-scroll:hover {
  scrollbar-color: #00d5ff transparent;
}

.time-slot-scroll::-webkit-scrollbar {
  width: 4px;
}
.time-slot-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.time-slot-scroll::-webkit-scrollbar-thumb {
  background-color: #00d5ff;
  border-radius: 10px;
  visibility: hidden;
}
.time-slot-scroll:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

.time-slot {
  border: 1px solid #186777;
  height: 3rem;
  border-radius: 3rem;
  padding: 0.75rem 2rem;
  color: #f8fcfd;
  margin-bottom: 1rem;
  cursor: pointer;
  text-align: center;
  font-family: 'Karla', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-slot:hover,
.time-slot.selected {
  background-color: #00d5ff;
  color: #080c0c;
}

/* Form Fields Inside .input-card */
.input-card label {
  color: #f8fcfd;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}


.input-card input,
.input-card select {
  padding: 0.75rem 1rem;
  background-color: #0b181a;
  border: 1px solid #052930;
  border-radius: 0.5rem;
  color: #f8fcfd;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  width: 100%;
}

/* CTA Button */
.connect-submit {

  background-color: #1f9bb8;
  color: #080c0c;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Karla', sans-serif;
  transition: background 0.3s ease;
  margin-top: 0.1rem;
}
.connect-submit:hover {
  background-color: #00d5ff;
}

/* Email CTA */
.email-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #a1a1a1;
  font-size: 0.9rem;
  margin-top: 2rem;
  font-family: 'Karla', sans-serif;
}
.email-cta a {
  color: #00d5ff;
  text-decoration: none;
}
.email-cta button {
  background-color: #0b181a;
  border: 1px solid #00d5ff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #f8fcfd;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  transition: background 0.3s ease;
}
.email-cta button:hover {
  background-color: #00d5ff;
  color: #080c0c;
}

/* Responsive stacking for mobile */
@media (max-width: 900px) {
  .calendar-inputs-row {
    flex-direction: column;
    gap: 2rem;
  }

  .calendar-card,
  .input-card {
    width: 100%;
    max-width: 100%;
  }
}
/* === CONNECT SECTION - Figma-style two card layout === */
.calendar-time-card {
  display: flex;
  flex-direction: row;
  background-color: #0b181a;
  border: 1px solid #052930;
  border-radius: 1.2rem;
  padding: 2rem;
  gap: 5rem;
  flex: 1 1 480px;
  min-width: 400px;
  max-width: 680px;
  box-sizing: border-box;
}

/* Left (calendar only) */
.calendar-inner {
  flex: 0 0 260px; /* fixed width instead of flexible */
}


/* Right (time slots only) */
.time-slot-scroll {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-height: 21rem;
  overflow-y: auto;
  padding-right: 4px;
  padding-left: 0px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.3s ease;
}
.time-slot-scroll:hover {
  scrollbar-color: #00d5ff transparent;
}
.time-slot-scroll::-webkit-scrollbar {
  width: 4px;
}
.time-slot-scroll::-webkit-scrollbar-thumb {
  background-color: #00d5ff;
  border-radius: 10px;
  visibility: hidden;
}
.time-slot-scroll:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

/* Individual slots unchanged */
.time-slot {
  border: 1px solid #186777;
  height: 3rem;
  border-radius: 3rem;
  padding: 0.75rem 2rem;
  color: #f8fcfd;
  margin-bottom: 1rem;
  cursor: pointer;
  text-align: center;
  font-family: 'Karla', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.time-slot:hover,
.time-slot.selected {
  background-color: #00d5ff;
  color: #080c0c;
}

/* Form card (unchanged) */
.input-card {
  background-color: #0b181a;
  border: 1px solid #052930;
  border-radius: 1.2rem;
  padding: 2.5rem 2rem 2.5rem 2rem;
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 500px;
  box-sizing: border-box;
  justify-content: center;
}


/* Responsive stacking */
/* 1300px and below */
@media (max-width: 1300px) {
  .calendar-inputs-row {
    flex-direction: column;
    gap: 2rem;
  }
  .calendar-time-card,
  .input-card {
    width: 100%;
    max-width: 100%;
  }
}

/* 600px and below */
@media (max-width: 600px) {
  .calendar-time-card {
    flex-direction: column;
    padding: 1.2rem !important;
    gap: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .calendar-inner,
  #calendar {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0 !important;
  }
}



.connect-submit img,
.email-cta button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.connect-cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1140px; /* exactly same as form row */
  margin: 0.01rem auto 0 auto;
  padding: 0 0px;
  box-sizing: border-box;
}


.connect-cta-wrapper .connect-submit {
  width: 100%;
  max-width: 100%;
}
.email-cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b181a;
  border: 1px solid #052930;
  border-radius: 0.75rem;
  padding: 0rem 0rem;
  width: 100%;
  max-width: 1140px;
  margin: 1.5rem auto 0 auto;
  font-family: 'Karla', sans-serif;
  gap: 0.5rem;
  box-sizing: border-box;
}


.email-cta-card .email-text {
  color: #c2c2c2;
  font-size: 0.95rem;
  flex: 1;
}

.email-cta-card a {
  color: #00d5ff;
  text-decoration: none;
}

.email-button {
  background-color: #0db4d5;
  border: none;
  color: #080c0c;
  padding: 1rem 2rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  transition: background 0.3s ease;
}
.email-button:hover {
  background-color: #00ddff;
}

.email-button:hover {
  background-color: #00ddff;
}
.email-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}


@media (max-width: 480px) {
  .email-cta-card {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    padding: 0.7rem 0.6rem !important;
    box-sizing: border-box !important;
    margin-bottom: 15rem !important;   /* Adds space below the card */
    gap: 0.7rem !important;
  }
  .email-cta-card .email-text {
    word-break: break-all !important;
    font-size: 0.97rem !important;
    margin-bottom: 0.2rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .email-cta-card .email-button {
    width: 100% !important;
    margin: 0 !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .email-cta-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    padding: 0.7rem 0.6rem !important;
    box-sizing: border-box !important;
    margin-bottom: 1.4rem !important;
    gap: 0.7rem !important;
  }
  .email-cta-card .email-text {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto 0.2rem auto !important;
  }
  .email-cta-card .email-text a {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    display: inline !important;
  }
  .email-cta-card .email-button {
    width: 100% !important;
    margin: 0 !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    min-width: 0 !important;
  }
}









.connect-title-spacer {
  height: 2.2rem;
}
@media (max-width: 600px) {
  .connect-title-spacer {
    height: 3rem;
  }
}





@media (max-width: 600px) {
  .email-cta-card {
    margin-bottom: 15rem !important;   /* Adds space below the card */
    gap: 0.7rem !important;
  }
}


/* Force consistent label alignment */
.input-card label {
  color: #f8fcfd;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;          /* ✅ ensures label is left-aligned */
  display: block;
}

/* Wrapper for each input field */
.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* ✅ aligns all children to the left */
  gap: 0.6rem;
  width: 100%;
}


/* Equal width input/select fields with aligned custom arrow */
/* Equal width input/select fields with proper appearance and custom arrow styling */
.input-card input,
.input-card select {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  background-color: #0b181a;
  border: 1px solid #195662;
  border-radius: 0.5rem;
  color: #f8fcfd;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
  box-sizing: border-box;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


/* Select dropdown custom V arrow */
.input-card select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F8FCFD' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px 6px;
  background-origin: content-box;
}



.connect-scale-wrapper {
  display: flex;
  justify-content: center;
  transform: scale(0.9); /* Adjust: 0.85, 0.8, etc. if needed */
  transform-origin: top center;
}

@media (max-width: 900px) {
  .connect-scale-wrapper {
    transform: scale(1); /* Keep original size on mobile */
  }
}
@media (max-width: 600px) {
  .time-slot-scroll {
    display: none !important;
  }
}

/* calender responsive */
@media (max-width: 420px) {
  .calendar-time-card {
    padding: 0.5rem !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .calendar-inner,
  #calendar {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 !important;
  }
  .calendar-header strong {
    font-size: 1rem !important;
  }
  .calendar-header span {
    font-size: 1rem !important;
    padding: 0 6px;
  }
  .calendar-weekdays,
  .calendar-dates {
    gap: 0.3rem !important;
  }
  .calendar-day {
    width: 2rem !important;
    height: 2rem !important;
    font-size: 0.92rem !important;
  }
}



@media (max-width: 600px) {
  .calendar-time-card,
  .calendar-inner,
  #calendar {
    flex: none !important;
  }
}




@media (max-width: 600px) {
  .time-dropdown-group {
    display: flex !important;
    flex-direction: column;
  }
}
@media (min-width: 601px) {
  .time-dropdown-group {
    display: none !important;
  }
}


































/* === FOOTER FIXED LEFT-RIGHT ALIGNMENT === */
.footer {
  background-color: #0B181A;
  padding: 4rem 3vw;
  font-family: 'Karla', sans-serif;
  border-top: 1px solid #052930;
}

.footer-container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 320px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1.5rem;
  color: #3791A3;
  margin-bottom: 1.5rem;
  font-weight: 600; /* ← Make tagline bold */
}


.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials img {
  width: 22px;
  height: 22px;
  filter: invert(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.footer-socials img:hover {
  transform: scale(1.2);
  opacity: 1;
}

.footer-right {
  text-align: right;
  max-width: 240px;
}

.footer-nav-heading {
  font-size: 1rem;
  color: #F8FCFD;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #00D5FF;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-location {
  font-size: 0.85rem;
  color: #A1A1A1;
}

/* Responsive: Stack on small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-right {
    text-align: left;
  }
}
















/* ---- FORCE ROOT FULL WIDTH ON MOBILE ---- */
@media (max-width: 600px) {
  body, html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background: #080C0C !important;
  }
  #___gatsby, #gatsby-focus-wrapper, #root, .container, .main, .wrapper, .app, .page, .viewport {
    /* catch ALL common wrappers */
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #080C0C !important;
    box-sizing: border-box !important;
  }
  section, .work-section, .clients-section, .testimonials-section, .services-section, .mentorship-section, .connect-section {
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
  }
}


@media (max-width: 600px) {
  body, html {
    background: #080C0C !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  section, .work-section, .clients-section, .testimonials-section, .services-section, .mentorship-section, .connect-section {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    background: none !important;
    border: none !important;
  }
  .work-title,
  .clients-title,
  .testimonials-title,
  .services-title,
  .mentorship-title,
  .connect-title {
    font-size: 1.2rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 16px !important;
  }
  .hero h1 {
    font-size: 1.18rem !important;
    margin-bottom: 18px !important;
    line-height: 1.35 !important;
  }
  .hero-subtext {
    font-size: 0.97rem !important;
    padding: 0 4px !important;
  }
  .hero-btn,
  .connect-submit,
  .book-button {
    font-size: 1rem !important;
    padding: 13px 20px !important;
  }
  .work-card, .work-card.logos, .testimonial-card, .service-card, .mentorship-card, .calendar-card, .input-card {
    padding: 12px 8px 16px 8px !important;
    border-radius: 14px !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .logo-grid img,
  .work-card img,
  .brand-images-row img,
  .img-desktop-landing {
    height: 38px !important;
    width: auto !important;
    min-width: 0 !important;
    border-radius: 6px !important;
  }
}











/* ---- MOBILE HEADER ---- */
/* ---- MOBILE HEADER ---- */
@media (max-width: 900px) {
  .mobile-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8,12,12,0.7);
    backdrop-filter: blur(12px);
    z-index: 120;
    padding: 0 18px;
    box-sizing: border-box;
    width: 100vw;
  }
  .mobile-logo {
    height: 34px;
    margin-left: 4px;
  }
  .hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 121;
    padding: 0;
  }
  .hamburger span {
    display: block;
    height: 3.5px;
    width: 26px;
    background: #00d5ff;
    border-radius: 2px;
    transition: 0.3s;
  }
  /* Hide desktop nav on mobile, show mobile header */
  .navbar {
    display: none !important;
  }
  .mobile-header {
    display: flex !important;
  }
}

/* ---- DESKTOP: Hide mobile header and popup, show desktop nav ---- */
@media (min-width: 901px) {
  .mobile-header,
  .mobile-nav-popup-bg,
  .mobile-nav-popup-card {
    display: none !important;
    pointer-events: none !important;
    opacity: 0 !important;
    z-index: -999 !important;
  }
  .navbar {
    display: flex !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    z-index: 999 !important;
  }
}

/* Push page content down below fixed header on mobile */
@media (max-width: 900px) {
  body {
    padding-top: 56px !important;
  }
}

/* --- Mobile Nav Popup Card Menu --- */
@media (max-width: 900px) {
  .mobile-nav-popup-bg {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9998;
    background: rgba(16,20,23,0.30);
    backdrop-filter: blur(7px);
    transition: opacity 0.22s;
  }
  .mobile-nav-popup-bg.open {
    display: block;
    opacity: 1;
  }
  .mobile-nav-popup-card {
    display: none;
    position: fixed;
    left: 50%;
    top: 64px;
    transform: translateX(-50%);
    width: 70vw;
    max-width: 380px;
    background: #10181c;
    border-radius: 22px;
    box-shadow: 0 6px 36px 0 rgba(0,213,255,0.18), 0 1.5px 6px 0 rgba(12,20,23,0.18);
    border: 1.5px solid #00d5ff38;
    padding: 34px 20px 28px 20px;
    z-index: 10000;
    transition: opacity 0.28s, transform 0.28s;
    opacity: 0;
    pointer-events: none;
  }
  .mobile-nav-popup-card.open {
    display: block;
    opacity: 1;
    pointer-events: all;
    animation: navcardPop 0.28s cubic-bezier(.25,.92,.4,1.05);
  }
  @keyframes navcardPop {
    0% { transform: translateX(-50%) scale(0.96) translateY(-18px); opacity: 0.15; }
    100% { transform: translateX(-50%) scale(1) translateY(0); opacity: 1; }
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin-top: 10px;
  }
  .mobile-nav-links a {
    color: #fff;
    font-size: 1.19rem;
    font-family: 'Karla', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.22s;
    border-radius: 8px;
    width: 100%;
    text-align: center;
  }
  .mobile-nav-links a:hover {
    color: #00d5ff;
    background: rgba(0,213,255,0.08);
  }
  .mobile-nav-mail {
    background: #00d5ff;
    color: #0b181a !important;
    font-weight: 600;
    border-radius: 24px;
    padding: 12px 34px 12px 18px;
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    font-size: 1.07rem;
    box-shadow: 0 1px 12px 0 rgba(0,213,255,0.09);
  }
  .mobile-nav-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #00d5ff;
    font-size: 2.1rem;
    font-weight: 400;
    cursor: pointer;
    z-index: 11000;
    line-height: 1;
    padding: 0;
  }
}







































































/* === Skill Test Styles === */

/* === Skill Test Styles === */
.skill-test-wrapper{
  max-width:900px;
  margin:90px auto;
  padding:20px;
}

.skill-landing{
  background:#0B181A;
  border:1px solid rgba(52, 52, 52, 0.385);
  border-radius:16px;
  padding:32px;
  text-align:center;
}
.skill-landing h1{
  font-size:clamp(28px,3vw,40px);
  margin-bottom:28px;
}
.skill-landing p{
  opacity:.8;
  margin-bottom:24px;
}
/* Start Test button styling */
.skill-landing .btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background-color:#00D5FF;
  color:#001c25;
  border:none;
  padding:12px 54px;
  border-radius:20px;
  font-size:18px;
  font-weight:550;
  margin-top:22px;
  cursor:pointer;
  transition:all .25s ease;
  box-shadow:0 3px 6px rgba(0,221,255,.086);
}
.skill-landing .btn:hover{
  background-color:#0e419a;
  transform:translateY(-2px);
  color:#ffffff;
}
.skill-landing .btn:active{
  background-color:#2962ff;
  transform:translateY(0);
  color:#ffffff;
}

.quiz{
  display:none;
  background:#0B181A;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:24px;
}

.quiz-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
  font-weight:600;
}

.question{
  font-size:18px;
  line-height:1.5;
  margin:8px 0 16px;
}

/* === Options === */
.options{ 
  margin-top:40px;           /* final spacing after question */
  margin-bottom:20px;        /* space before controls */
}
/* option row (merged) */
.options .option{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  margin:8px 0 22px;         /* final inter-option gap */
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  background-color:transparent;
  transition:all .2s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
  cursor:pointer;
}
.options .option:hover{ background-color:rgba(255,255,255,0.05); }

/* Selected (pre-check) visual */
.options input[type="radio"]:checked + label{
  font-weight:600;
  color:#00ff5e;
  background-color:rgba(0,217,255,0);
  padding:8px 10px;
  border-radius:8px;
}
.options input[type="radio"]:checked{ accent-color:#00ff80; }

/* Correct/Wrong highlighting after check */
.option.correct{
  background-color:rgba(0,200,83,0.148);
  border-color:#00b64c55;
}
.option.wrong{
  background-color:rgba(255,82,82,0.052);
  border-color:#ff52524a;
}
.option.correct label,
.option.wrong  label{ color:#fff; font-weight:600; }

/* make label span the row */
.options .option label{ flex:1; cursor:pointer; }

/* === Controls (merged) === */
.controls{
  display:flex;
  justify-content:space-between;  /* Prev | center | Next */
  align-items:center;
  gap:16px;
  flex-wrap:wrap;                 /* keep wrap from earlier block */
  max-width:520px;
  margin:54px auto 0;             /* final margin */
}

/* general button look inside controls */
.controls .btn{
  padding:12px 20px;              /* final size */
  border-radius:8px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all .2s ease;
  border:none;
  min-width:110px;                /* keep tighter center */
  text-align:center;
}

/* Primary action - Check / Submit (final colors) */
#check-btn,
#submit-btn{
  background-color:#00a143;
  color:#fff;
}
#check-btn:hover,
#submit-btn:hover{ background-color:#00c666; }
#check-btn:active,
#submit-btn:active{ background-color:#00b248; }

/* Secondary action - Skip / Next */
#skip-btn,
#next-btn{
  background-color:transparent;
  border:1px solid #2e3851;
  color:#ffffff;
  padding:12px 20px;
  border-radius:6px;
  transition:background-color .2s ease, color .2s ease;
}
#skip-btn:hover,
#next-btn:hover{
  background-color:#2c3756;
  color:#ffffff;
}
#skip-btn:active,
#next-btn:active{ background-color:#0e5bdf33; }

/* Tertiary action - Previous */
#prev-btn{
  background-color:#ff9100;
  color:#fff;
}
#prev-btn:hover{ background-color:#ffa733; }
#prev-btn:active{ background-color:#ff6d00; }

/* Disabled state */
.controls .btn:disabled{
  background-color:rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.4);
  cursor:not-allowed;
  border:none;
}

/* Also apply a baseline min-width to any plain <button> in controls */
.controls button{ min-width:100px; }

/* === Feedback (final) === */
.feedback{
  margin-top:16px;               /* final */
  text-align:center;
  font-weight:600;
  font-size:15px;
}
.feedback.success{ color:#00c853; }
.feedback.error{   color:#ff5252; }

/* === Question header extras === */
#progress{
  color:#a0a0a0;
  font-weight:500;
  margin-bottom:8px;
  display:block;
}
#question-text{
  color:#00D5FF;
  font-weight:500;
}
.question-header{ margin-bottom:12px; }

/* === Result card === */
.result-card{
  display:none;
  max-width:700px;
  margin:40px auto;
  background:var(--card-bg, #111);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:24px;
  text-align:center;
}
.result-card .score{
  font-size:20px;
  margin:10px 0 16px;
}
.result-card .btn{
  padding:10px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:transparent;
  cursor:pointer;
}








































































/* ===== Result Card — New UI ===== */
.result-card{
  max-width: 980px;
  margin: 40px auto;
  background: rgba(7,20,22,0.9);       /* deep, slightly darker than quiz card */
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
}

/* Title + green score line */
.result-title{
  font-size: clamp(20px, 2vw, 28px);
  margin: 0 0 8px;
}
.result-score{
  color: #00c853;                       /* green score like your mock */
  margin: 0 0 22px;
  font-weight: 600;
}

/* 3-tile stats */
.result-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-items: center;
  margin-bottom: 26px;
}
.stat-card{
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
  text-align: left;
}
.stat-label{
  font-weight: 600;
  margin-bottom: 6px;
}
.stat-value{
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

/* Tile colors */
.stat-card.ok{
  background: rgba(0,200,83,.24);
  border-color:#00c853;
}
.stat-card.bad{
  background: rgba(198,40,40,.28);
  border-color:#c62828;
}
.stat-card.skip{
  background: rgba(255,145,0,.28);
  border-color:#ff9100;
}

/* Watermark */
.result-watermark{
  margin: 14px 0 18px;
  opacity: .5;
  font-size: 14px;
}

/* Cyan pill Download button */
#download-result{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: #18c2ff;
  color: #001216;
  font-weight: 700;
  cursor: pointer;
  margin-top: 34px;
  box-shadow: 0 6px 14px rgba(24, 193, 255, 0.052);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
#download-result:hover{
  background:#11b6f0;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(24, 193, 255, 0.086);
}
#download-result:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(24,194,255,.22);
}
.result-grid {
  display: flex;
  justify-content: space-between;
  gap: 25px; /* spacing between cards */
  margin-top: 50px;
}

.stat-card {
  flex: 1; /* each takes equal space */
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}

.stat-card.ok {
  background-color: #004d25;
}

.stat-card.bad {
  background-color: #5a1a1a;
}

.stat-card.skip {
  background-color: #8a5a00;
}

.stat-label {
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 2rem;
}

/* Responsive: stack tiles on small screens */
@media (max-width: 820px){
  .result-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .result-grid{ grid-template-columns: 1fr; }
  .stat-card{ max-width: 420px; }
}
































/* ===== Post-result CTA card ===== */
.learn-cta-wrap{
  max-width: 980px;
  margin: 30px auto 60px;
}
.learn-cta-card{
  background: rgba(7,20,22,0.9);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
}
.learn-cta-title{
  font-size: clamp(22px, 2.3vw, 32px);
  margin-bottom: 30px;
}
.learn-cta-sub{
  opacity: .7;
  margin: 0 0 55px;
  font-size: clamp(14px, 1.4vw, 18px);
  color: #d6d6d6;
}

/* Actions */
.learn-cta-actions{
  display: flex;
  gap: 58px;
  justify-content: center;
}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

/* Filled cyan button */
.cta-primary{
  margin-top: 0px;
  background: #18c2ff;
  color: #001216;
  border: 1px solid transparent;
  box-shadow: 0 6px 14px rgba(24, 193, 255, 0.045);
}
.cta-primary:hover{ background:#10b6f0; transform: translateY(-1px); }
.cta-primary:active{ transform:none; }

/* Outline cyan button */
.cta-outline{
  background: transparent;
  color:#ffffff;
  border:1px solid #87dfff;
}
.cta-outline:hover{
  background:#0f2a33;
  border-color:#10b6f0;
  color:#10b6f0;
}

/* Responsive */
@media (max-width: 560px){
  .learn-cta-actions{ flex-direction: column; }
  .learn-cta-actions .cta{ width: 100%; }
}


#result-card,
#after-result {
  display: none;
}

#result-card {
  padding: 30px; /* adjust as needed */
}
#result-card {
  margin-bottom: 90px; /* space between the result and the next card */
}
#after-result a:hover {
  text-decoration: none;
}
#after-result a {
  text-decoration: none; /* removes underline */
}




/* ===== Mobile responsiveness ===== */
@media (max-width: 640px) {

  /* Give the whole section breathing room so cards don't hit edges */
  .skill-test-wrapper { padding: 12px; }

  /* Cards: full width, safe padding */
  .result-card,
  .learn-cta-card {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;            /* smaller internal padding on mobile */
    border-radius: 16px;
    margin-inline: 0;         /* no extra horizontal margins */
  }

  /* Result header spacing */
  .result-title { font-size: 22px; }
  .result-score { margin-bottom: 16px; }

  /* Stat tiles: stack vertically on phones */
  .result-grid {
    display: grid;
    grid-template-columns: 1fr; /* one tile per row */
    gap: 12px;
    margin-bottom: 16px;
  }

  .stat-card {
    min-width: 0;             /* prevents overflow from long labels */
    padding: 14px 16px;
    text-align: left;         /* reads nicer in a single column */
  }
  .stat-label { margin-bottom: 4px; }
  .stat-value { font-size: 28px; }

  /* Download button: full width (with pill look) */
  #download-result {
    width: 100%;
    max-width: none;
    padding: 12px 18px;
  }

  /* Learn Designing: reduce heading and add spacing */
  .learn-cta-title { font-size: 22px; }
  .learn-cta-sub {
    font-size: 14px;
    margin: 0 0 16px;
  }

  /* CTA buttons: stack & keep inside card */
  .learn-cta-actions {
    flex-direction: column;
    gap: 12px;
  }
  .learn-cta-actions .cta {
    width: 100%;
    padding: 12px 18px;
  }
}

/* Tiny devices */
@media (max-width: 380px) {
  .result-card, .learn-cta-card { padding: 16px; }
  .stat-value { font-size: 24px; }
}
/* Remove underline on the link button */
#after-result a { text-decoration: none; }
#after-result a:hover { text-decoration: none; }

/* Space between subheader and buttons */
.learn-cta-actions { margin-top: 20px; }
/* Extra hardening for tiny screens */
@media (max-width: 640px) {
  .learn-cta-card { 
    overflow: hidden;           /* prevents any subtle spill */
  }

  .learn-cta-actions .cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;     /* include border + padding in the width */
    margin: 0;                  /* no side margins that could push it out */
  }
}
@media (max-width: 640px) {
  .learn-cta-actions { padding-left: 0; padding-right: 0; }
}
@media (max-width: 640px) {
  #quiz {
    margin-top: 52px;  /* space above the quiz card */
    padding-top: 42px;  /* optional inner padding */
  }
}





























































