/* --- GLOBAL RESET & THEME VARIABLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  color: #ffffff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

/* --- FIXED HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo img {
  height: 30px;
  cursor: pointer;
  border-radius: 50px;
}
.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #3b82f6;
}
.btn-talk {
  background: #2563eb;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
  cursor: pointer;
}
.btn-talk:hover {
  background: #1d4ed8;
}

/* --- HERO SECTION --- */
/* --- HERO CONTAINER SETUP --- */
.hero {
  position: relative; /* Crucial so the background image stays inside the hero section */
  min-height: 90vh;
  padding: 140px 8% 60px 8%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligns text cleanly to the left */
  overflow: hidden; /* Prevents the image from spilling out */
  background-color: #030712; /* Fallback background color */
  margin-top: 100px;
}
/* Ensures content stays layered completely above the absolute background */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Fixed invalid 'right' -> centers the inner elements */
  justify-content: center; /* Fixed invalid 'left' -> vertically centers the content */
  text-align: center;

  /* CRITICAL FIXES FOR VISIBILITY */
  position: relative; /* Enables z-index tracking */
  z-index: 3; /* Forces it to sit strictly on top of the hero overlay */

  animation: floatBrand 3s ease-in-out infinite;
}
.brand-main {
  font-size: 9rem;
  font-weight: 900;

  line-height: 0.9;

  letter-spacing: 5px;

  background: linear-gradient(180deg, #60a5fa, #2563eb, #0f172a);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 30px rgba(37, 99, 235, 0.25);
}

.brand-name {
  margin-top: 10px;

  font-size: 3.4rem;

  font-weight: 700;

  color: white;

  letter-spacing: 8px;
}

.brand-sub {
  margin-top: 10px;

  font-size: 1.3rem;

  letter-spacing: 8px;

  color: #3b82f6;

  font-weight: 600;
}
.brand-line {
  width: 260px;
  height: 3px;

  margin: 30px 0 25px;

  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}
.brand-tagline {
  color: #d1d5db;

  letter-spacing: 4px;

  font-size: 15px;

  font-weight: 500;
}
.hero-brand {
  animation: floatBrand 5s ease-in-out infinite;
}
/*Floating animation to the brand*/
@keyframes floatBrand {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }

  .hero-brand {
    margin-top: 60px;
  }

  .brand-main {
    font-size: 5rem;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-sub {
    font-size: 1rem;

    letter-spacing: 4px;
  }
}

/* --- BACKGROUND WRAPPER & OVERLAY --- */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Sits behind text (z-index: 2) */
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.text-gradient {
  color: #3b82f6;
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
}
.hero-actions {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: #2563eb;
  color: white;
}
.btn-primary:hover {
  background: #1d4ed8;
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}
.hero-graphic img {
  width: 100%;
  height: auto;
}

/* The dark gradient overlay keeps your white text easy to read */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(3, 7, 18, 0.9) 30%,
    rgba(3, 7, 18, 0.4) 100%
  );
  z-index: 2;
}

/* --- FADE-IN ANIMATION --- */
.hero-fade-bg {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Forces image to fill the background without stretching out of proportion */
  object-position: center;
  opacity: 0; /* Starts completely invisible */
  animation: fadeInBackground 1.5s ease-out forwards; /* Runs the animation once on load */
}

@keyframes fadeInBackground {
  from {
    opacity: 0;
    transform: scale(1.03); /* Subtle zoom-out effect as it fades in */
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- PROJECTS SECTION (LIGHT THEME) --- */
.projects-section {
  background-color: #f8fafc;
  color: #0f172a;
  padding: 80px 8%;
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.projects-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 5px;
}
.section-header-row h2 {
  font-size: 32px;
  font-weight: 700;
}
.btn-outline-dark {
  padding: 10px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #334155;
  background: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-outline-dark:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.project-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.project-card:hover {
  transform: translateY(-5px);
}
.card-img-wrapper {
  width: 100%;
  position: relative;
  background: #0f172a;
  padding-top: 65%; /* Keeps a consistent 16:10 aspect ratio */
}

/* --- THE BLUE ROUND BADGE --- */
.project-icon-badge {
  position: absolute;
  bottom: -20px; /* Pulls it down directly onto the boundary border line */
  left: 20px; /* Margins it neatly against the card's left boundary line */
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
  ); /* Matches your brand corporate royal blues */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35); /* Soft glowing drop-shadow aura */
  border: 3px solid #ffffff; /* Thick crisp boundary outline separating it cleanly from images */
  z-index: 10;
}
.card-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.project-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}
.project-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.project-link {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.project-link:hover {
  color: #1d4ed8;
}

/* --- PROJECT ACTIONS ROW (View Demo + View Project) --- */
.project-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-view-demo {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn-view-demo i {
  font-size: 11px;
}
.btn-view-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}
.btn-view-demo:active {
  transform: translateY(0);
}

/* --- DEMO SLIDESHOW MODAL --- */
.demo-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 12, 24, 0.82);
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.demo-modal-overlay.active {
  display: flex;
}
.demo-modal {
  position: relative;
  width: 100%;
  max-width: 760px;
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: demoPopIn 0.25s ease;
}
@keyframes demoPopIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.demo-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
}
.demo-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}
.demo-slideshow img.active {
  opacity: 1;
  z-index: 1;
}
.demo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.demo-modal-close:hover {
  background: #2563eb;
}
.demo-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.demo-nav:hover {
  background: #2563eb;
}
.demo-nav-prev {
  left: 14px;
}
.demo-nav-next {
  right: 14px;
}
.demo-modal-footer {
  padding: 16px 20px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-modal-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.demo-dots {
  display: flex;
  gap: 8px;
}
.demo-dots .demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.demo-dots .demo-dot.active {
  background: #2563eb;
}
@media (max-width: 600px) {
  .demo-modal-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-nav {
    width: 34px;
    height: 34px;
  }
}

/* --- GENERAL SECTIONS (FOUNDER/SERVICES/CONTACT/FOOTER) --- */
.founder-section,
.services,
.contact-section {
  padding: 80px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #f8fafc;
}
/* Responsive Tweaks */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  .hero-actions {
    justify-content: center;
  }
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .navbar {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*==============================
 PREMIUM FOUNDER SECTION
===============================*/

/* Background */
.founder-section {
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -180px;
  left: -120px;
  filter: blur(80px);
  animation: glowMove 8s ease-in-out infinite alternate;
  z-index: 0;
}

.founder-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  bottom: -180px;
  right: -120px;
  filter: blur(80px);
  animation: glowMove2 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes glowMove {
  from {
    transform: translateX(0) translateY(0) scale(1);
  }
  to {
    transform: translateX(50px) translateY(40px) scale(1.2);
  }
}

@keyframes glowMove2 {
  from {
    transform: translateX(0) scale(1);
  }
  to {
    transform: translateX(-60px) scale(1.3);
  }
}

/* Layout */
.founder-layout {
  position: relative;
  z-index: 2;
}

/*==============================
PHOTO CARDS
===============================*/

.founder-photo {
  transition: 0.5s ease;
  cursor: pointer;
}

/* Main */

.photo-main {
  animation: float1 5s ease-in-out infinite;
}

/* Second */

.photo-secondary {
  animation: float2 6s ease-in-out infinite;
}

/* Third */

.photo-accent {
  animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hover */

.founder-photo:hover {
  transform: translateY(-15px) scale(1.05) rotate(-2deg);

  box-shadow: 0 25px 60px rgba(0, 150, 255, 0.35);
}

/*==============================
BADGE
===============================*/

.founder-badge {
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

/*==============================
HEADINGS
===============================*/

.founder-header h3 {
  position: relative;
  display: inline-block;
}

.founder-header h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -10px;

  width: 0;

  height: 4px;

  border-radius: 50px;

  background: #0096ff;

  animation: underlineGrow 2s forwards;
}

@keyframes underlineGrow {
  to {
    width: 100%;
  }
}

/*==============================
TEXT
===============================*/

.founder-text h4 {
  animation: fadeUp 1s ease;
}

.founder-role {
  animation: fadeUp 1.3s ease;
}

.founder-text p {
  animation: fadeUp 1.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*==============================
SKILLS
===============================*/

.chip {
  transition: 0.4s;
}

.chip:hover {
  transform: translateY(-8px) scale(1.08);

  background: #0096ff;

  color: #fff;

  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.4);
}

/*==============================
IMAGE GLOW
===============================*/

.founder-photos::before {
  content: "";

  position: absolute;

  width: 260px;

  height: 260px;

  background: #0096ff;

  border-radius: 50%;

  filter: blur(120px);

  opacity: 0.18;

  left: 30px;

  top: 30px;

  animation: pulseGlow 6s ease infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);

    opacity: 0.15;
  }

  50% {
    transform: scale(1.2);

    opacity: 0.3;
  }
}

/*==============================
ENTRANCE
===============================*/

.founder-layout {
  animation: sectionAppear 1.2s ease;
}

@keyframes sectionAppear {
  from {
    opacity: 0;

    transform: translateY(60px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}
/* =========================
   FOOTER
========================= */
/* FOOTER */
.footer {
  background: #0b1220;
  color: #fff;
  padding-top: 50px;
  border-top: 3px solid #3b82f6;
}

/* Update your existing footer container grid to accommodate 4 columns */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Map Column & Responsive Frame Styling */
.footer-map h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.map-responsive-wrapper {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background-color: #12141c;
}

.map-responsive-wrapper iframe {
  display: block;
  /* Filter makes map match a modern dark theme interface beautifully */
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
  transition: filter 0.3s ease;
}

.map-responsive-wrapper:hover iframe {
  filter: none; /* Shows full crisp color mapping whenever user hovers over it */
}
/* Forces the map section out of a single tight column */
.footer-map.horizontal-layout {
  width: 100%;
  grid-column: 1 / -1; /* If using a CSS Grid footer, this forces it to take up the full row width */
  margin-top: 30px;
}

.footer-map.horizontal-layout h4 {
  margin-bottom: 15px;
}

/* Elegant horizontal box wrapper */
.footer-map.horizontal-layout .map-responsive-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Forces the iframe to strictly take up a wide, cinematic block space */
.footer-map.horizontal-layout iframe {
  display: block;
  width: 100% !important;
  min-height: 250px; /* Great height balance for a wide strip map */
}

/* Desktop override: makes it beautifully panoramic if there is space available */
@media (min-width: 992px) {
  .footer-map.horizontal-layout iframe {
    height: 280px;
  }
}
.footer-brand,
.footer-contact,
.footer-social-section {
  flex: 1;
  min-width: 250px;
}

.footer h3,
.footer h4 {
  margin-bottom: 15px;
  color: #60a5fa;
}

.footer p {
  line-height: 1.8;
  color: #d1d5db;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #60a5fa;
}

.footer-contact i {
  margin-right: 10px;
  color: #60a5fa;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #9ca3af;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 20px;
  }

  section {
    padding: 70px 20px;
  }
}

footer {
  background: #07111f;
  color: white;
  text-align: center;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 250px;
  opacity: 0.08; /* Adjust visibility */
  z-index: 0;
}

footer p,
.footer-social {
  position: relative;
  z-index: 1;
}

/* About - highlights */
.about-para {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  color: #444;
}
a .highlight {
  color: #00b4ff;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00b4ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.about:hover .highlight::after {
  transform: scaleX(1);
}

/* =========================
   ABOUT
========================= */
/* Founder Section */
.founder-section {
  margin-top: 70px;
}
.founder-header {
  text-align: center;
  margin-bottom: 45px;
}
.founder-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 10px;
}
.founder-header p {
  color: #666;
  font-size: 0.95rem;
}
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

/* Photo stack */
.founder-photos {
  position: relative;
  height: 340px;
}

.founder-photo {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid white;
  height: 200px;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(0, 180, 255, 0.3);
  z-index: 10;
}
.photo-main {
  width: 200px;
  height: 260px;
  top: 30px;
  left: 20px;
  z-index: 2;
}
.photo-secondary {
  width: 160px;
  height: 200px;
  top: 0;
  right: 10px;
  z-index: 1;
}
.photo-accent {
  width: 130px;
  height: 150px;
  bottom: 0;
  right: 40px;
  z-index: 3;
}

/* Badge */
.founder-badge {
  position: absolute;
  bottom: 20px;
  left: 10px;
  background: #0a192f;
  border: 2px solid #00b4ff;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(0, 180, 255, 0.35);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #00b4ff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 180, 255, 0);
  }
}

/* Text side */
.founder-text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 6px;
}
.founder-role {
  color: #00b4ff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.founder-text p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.founder-text h5 {
  color: black;
}
.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0a192f;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: 0.3s;
  cursor: default;
}
.chip:hover {
  background: #00b4ff;
  color: white;
  border-color: #00b4ff;
}

/* Mobile */
@media (max-width: 768px) {
  .founder-layout {
    grid-template-columns: 1fr;
  }
  .founder-photos {
    height: 280px;
    margin-bottom: 20px;
  }
}

/* Pillar Cards */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 55px;
}
.pillar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: 0.3s;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 180, 255, 0.15);
  border-color: #00b4ff;
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.pillar-card h3 {
  color: #0a192f;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* =========================
   CONTACT
========================= */
/* --- Premium Contact Layout Configurations --- */
.contact-section {
  padding: 100px 20px;
  background-color: #0a0b10; /* Blends with your dark digital brand system */

  position: relative;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* --- Left Column Elements --- */
.contact-badge {
  background: rgba(0, 150, 255, 0.1);
  color: #0096ff;
  border: 1px solid rgba(0, 150, 255, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-panel h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.contact-desc {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.value-indicators {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.indicator-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.indicator-item i {
  color: #0096ff;
  font-size: 20px;
  background: rgba(0, 150, 255, 0.08);
  padding: 12px;
  border-radius: 12px;
}

.indicator-item h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.indicator-item p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.4;
}

.quick-links p {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 5px;
}

.direct-email-link {
  color: #0096ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}

.direct-email-link:hover {
  color: #fff;
}

/* --- Right Column: Interactive Panel Elements --- */
.contact-form-panel {
  background: #12141c;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sds-interactive-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px;
  background: #0a0b10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

/* Native select styling fix for dark theme backgrounds */
.input-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%239ca3af'><path d='M0 0h10L5 6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 35px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #0096ff;
  box-shadow: 0 0 10px rgba(0, 150, 255, 0.15);
}

/* Action Execution Button styling */
.sds-submit-btn {
  background: #0096ff;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.25);
  transition:
    transform 0.2s,
    background-color 0.2s,
    box-shadow 0.2s;
  margin-top: 10px;
}

.sds-submit-btn:hover {
  background: #0082dd;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 150, 255, 0.4);
}

.sds-submit-btn i {
  font-size: 13px;
  transition: transform 0.3s;
}

.sds-submit-btn:hover i {
  transform: translateX(3px) translateY(-2px);
}

/* --- Adaptability Responsiveness Thresholds --- */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info-panel h2 {
    font-size: 32px;
  }
}

@media (max-width: 580px) {
  .form-row-dual {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 25px 20px;
  }
}

/* =========================
   SERVICES
========================= */
.services {
  background: #f1f5f9;
  text-align: center;
  display: flexbox;
}

.services h2 {
  margin-bottom: 50px;
  color: #0a192f;
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.services-grid p {
  color: rgb(99, 97, 97);
}
.service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 180, 255, 0.25);
}

.service-card h3 {
  color: #0a192f;
  margin-bottom: 15px;
}

/* =========================
   PORTFOLIO
========================= */
.portfolio {
  background: white;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.portfolio-subtitle {
  margin-bottom: 50px;
  color: #666;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.portfolio-card {
  background: linear-gradient(135deg, #033b96, #c0c0c0);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.portfolio-card:hover {
  transform: translateY(-10px);
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-content {
  padding: 20px;
}

.portfolio-content h3 {
  margin-bottom: 10px;
  color: #0a192f;
}
/* --- PROCESS STRUCTURE --- */
.process-section {
  padding: 100px 8%;
  color: #f3f4f6;
}
.process-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}
.process-subtitle {
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}
.process-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}
.process-header p {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.6;
}

.process-section p {
  color: rgb(99, 97, 97);
}

/* --- PROCESS GRID & CARDS --- */ /*==============================
PROCESS SECTION
==============================*/

.process-section {
  padding: 120px 8%;
  position: relative;
  overflow: hidden;
}

/* Background Glow */

.process-section::before {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  background: #2563eb22;

  filter: blur(160px);

  top: -200px;
  right: -150px;
}

/* Heading */

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title span {
  color: #3b82f6;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
}

.section-title h2 {
  color: #000000;
  font-size: 48px;
  margin: 15px 0;
}

.section-title p {
  color: #9ca3af;
  width: 650px;
  max-width: 100%;
  margin: auto;
  line-height: 1.8;
}

/* Timeline */

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.timeline-line {
  position: absolute;

  top: 65px;
  left: 10%;

  width: 80%;
  height: 3px;

  background: linear-gradient(90deg, #2563eb, #38bdf8);

  z-index: 1;
}

/* Card */

.process-card {
  position: relative;
  z-index: 5;
  text-align: center;
}

.step-circle {
  width: 90px;
  height: 90px;

  margin: auto;

  border-radius: 50%;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: bold;
  color: #fff;

  box-shadow: 0 0 40px rgba(37, 99, 235, 0.45);

  transition: 0.4s;
}

.card-content {
  margin-top: 40px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(5px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 25px;

  padding: 35px;

  transition: 0.4s;
}

.card-content:hover {
  transform: translateY(-15px);

  border-color: #2563eb;

  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
}

.icon {
  width: 75px;
  height: 75px;

  margin: auto auto 25px;

  border-radius: 20px;

  background: #2563eb;

  display: flex;
  justify-content: center;
  align-items: center;
}

.icon i {
  color: #60a5fa;
  font-size: 34px;
}

.card-content h3 {
  color: #000000;
  margin-bottom: 15px;
  font-size: 24px;
}

.card-content p {
  color: #3700ff;
  line-height: 1.8;
}

/* Hover */

.process-card:hover .step-circle {
  transform: scale(1.15);

  box-shadow: 0 0 70px rgba(59, 130, 246, 0.8);
}

/* Responsive */

@media (max-width: 1100px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line {
    display: none;
  }
}

@media (max-width: 700px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 36px;
  }
}
/* --- CODE STYLING FOR BRAND TEXT LOGO --- */
.logo-text-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.logo-main-text {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  display: inline-flex;
}

.logo-main-text2 {
  font-size: 9rem;
  font-weight: 900;

  line-height: 0.9;
}

/* Individual Letter Color Formatting */
.letter-blue {
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3));
}

.letter-white {
  color: #ffffff;
  /* Gives the white D a subtle crisp premium glow */
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Subtext Column Settings */
.logo-sub-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 10px;
  line-height: 1.2;
}

.logo-sub-text span:first-child {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
}

.logo-sub-text span:last-child {
  color: #3b82f6;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 1.5px;
}

#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast-popup {
  background: rgba(20, 20, 20, 0.9);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 4px solid #00c6ff; /* Neon highlight line */
  backdrop-filter: blur(8px);

  /* Animation for sliding in */
  transform: translateX(120%);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.4s ease;
  opacity: 0;
}

.toast-popup.show {
  transform: translateX(0);
  opacity: 1;
}

/*FAQ*/
/* --- FAQ Section Styling --- */
.faq-section {
  padding: 80px 10%;
  background-color: #f9f9f9; /* Contrast background color */
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-subtitle {
  color: #00c6ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: #222;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #eef2f5;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: color 0.2s ease;
}

.faq-question i {
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #777;
}

.faq-answer {
  max-height: 0; /* Hidden by default */
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafbfc;
}

.faq-answer p {
  padding: 0 24px 20px 24px;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Active State Interactions */
.faq-item.active {
  border-color: #00c6ff;
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.15);
}

.faq-item.active .faq-question {
  color: #00c6ff;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #00c6ff;
}
/* =============================
   NEW ADDITIONS: TECH STACK
============================= */
.tech-stack-section {
  padding: 40px 8% 60px;
  text-align: center;
}
.tech-stack-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 25px;
}
.tech-stack-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}
.tech-item i {
  color: #3b82f6;
  font-size: 16px;
}
.tech-item:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}
.tech-item:hover i {
  color: #fff;
}

/* =============================
   NEW ADDITIONS: PRICING
============================= */
.pricing-section {
  padding: 100px 8%;
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}
.pricing-card.featured {
  background: linear-gradient(160deg, #1d3a8a, #0f172a 70%);
  border-color: #3b82f6;
  transform: scale(1.04);
}
.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.pricing-card h3 {
  color: #000000;
  font-size: 22px;
  margin-bottom: 10px;
}
.pricing-tagline {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 44px;
}
.pricing-amount {
  color: #60a5fa;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 22px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}
.pricing-features li {
  color: #d1d5db;
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features i {
  color: #22c55e;
}
.pricing-note {
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  max-width: 600px;
  margin: 40px auto 0;
  line-height: 1.7;
}

/* =============================
   NEW ADDITIONS: TESTIMONIALS
============================= */
.testimonials-section {
  padding: 100px 8%;
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #facc15;
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonial-quote {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-weight: 600;
  font-size: 13px;
}
.testimonial-author h4 {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
.testimonial-author span {
  color: #9ca3af;
  font-size: 12px;
}

/* =============================
   NEW ADDITIONS: PROJECT OUTCOME TAG
============================= */
.project-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  margin: 12px 0;
  font-weight: 500;
}

/* =============================
   NEW ADDITIONS: PROCESS STEP DURATION
============================= */
.step-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50px;
  padding: 5px 12px;
  margin-bottom: 10px;
}

/* =============================
   NEW ADDITIONS: INSIGHTS / BLOG
============================= */
.insights-section {
  padding: 100px 8%;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}
.insight-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: 0.3s ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
}
.insight-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 18px;
  margin-bottom: 18px;
}
.insight-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 10px;
}
.insight-card h3 {
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.insight-card p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* =============================
   NEW ADDITIONS: NEWSLETTER (FOOTER)
============================= */
.footer-newsletter {
  min-width: 250px;
}
.footer-newsletter p {
  font-size: 13px;
  margin-bottom: 14px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder {
  color: #6b7280;
}
.newsletter-form input:focus {
  border-color: #3b82f6;
}
.newsletter-form button {
  background: #2563eb;
  border: none;
  color: #fff;
  width: 42px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.newsletter-form button:hover {
  background: #1d4ed8;
}

/* =============================
   NEW ADDITIONS: WHATSAPP FLOAT + STICKY CTA
============================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.sticky-quote-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-quote-btn:hover {
  background: #1d4ed8;
}

/* =============================
   NEW ADDITIONS: RESPONSIVE
============================= */
@media (max-width: 900px) {
  .pricing-grid,
  .testimonials-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
  .sticky-quote-btn span {
    display: none;
  }
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
  }
  .sticky-quote-btn {
    padding: 12px 16px;
    font-size: 13px;
    bottom: 16px;
    left: 16px;
  }
} /*REVIEW FORM*/
/* --- Review Form Container --- */
.review-form-container {
  max-width: 700px;
  margin: 60px auto 0 auto;
  background: rgba(20, 20, 20, 0.65); /* Darker, more solid background */
  border: 1px solid rgba(0, 198, 255, 0.25); /* Subtle neon blue accent border */
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Deep drop shadow for depth */
}

.review-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.review-form-header h3 {
  color: #ffffff; /* Crisp white for high visibility */
  font-size: 1.8rem; /* Made slightly larger */
  margin-bottom: 8px;
  font-weight: 700;
}

.review-form-header p {
  color: #b0b0b0; /* Light silver gray for contrast */
  font-size: 0.95rem;
}

/* --- Form Fields Layout --- */
.custom-review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-group label {
  color: #00c6ff; /* Neon accent color makes labels instantly scannable */
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* --- Inputs, Select, Textarea --- */
.custom-review-form input[type="text"],
.custom-review-form select,
.custom-review-form textarea {
  width: 100%;
  background: rgba(
    10,
    10,
    10,
    0.6
  ); /* High contrast dark background for the inputs */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Defined border line */
  padding: 14px 16px;
  border-radius: 8px;
  color: #ffffff; /* White text input */
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

/* Brightened placeholders for readable target fields */
.custom-review-form input::placeholder,
.custom-review-form textarea::placeholder {
  color: #909090;
}

/* Field Focus State */
.custom-review-form input:focus,
.custom-review-form select:focus,
.custom-review-form textarea:focus {
  border-color: #00c6ff;
  background: rgba(0, 198, 255, 0.05); /* Soft color flash on selection */
  box-shadow: 0 0 12px rgba(0, 198, 255, 0.3);
}

/* Styling Dropdown Options for dark theme */
.custom-review-form select option {
  background: #141414;
  color: #ffffff;
}

.custom-review-form textarea {
  resize: vertical;
}

/* --- Submit Button --- */
.btn-submit-review {
  background: #00c6ff; /* High-visibility solid background color by default */
  color: #ffffff;
  border: none;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.2);
}

.btn-submit-review:hover {
  background: #00a8d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .review-form-container {
    padding: 24px;
    margin: 40px 15px 0 15px;
  }
}
.payment-plans-note {
  text-align: center;
  color: #000000;
  font-size: 19px;
  margin-top: 20px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  isolation: isolate; /* keeps z-index stacking contained to this card */
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.25;
  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
}

.service-card:hover .card-bg {
  opacity: 0.4;
  transform: scale(1.05);
}

.card-content {
  position: relative;
  z-index: 1;
}
.section-title p {
  color: #000000;
}
/*In house*/
/*========================================
  IN HOUSE SOLUTIONS
========================================*/

.in-house-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(0, 180, 255, 0.12);
  color: #0099ff;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 20px;
}

.section-header p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

.in-house-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

/*=========================
      CARD
==========================*/

.solution-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00b4ff, #0047ff);
  transition: 0.4s;
}

.solution-card:hover::before {
  left: 0;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 180, 255, 0.18);
}

/*=========================
      ICON
==========================*/

.solution-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00b4ff, #0066ff);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  margin-bottom: 25px;
}

/*=========================
      TEXT
==========================*/

.solution-card h3 {
  font-size: 25px;
  color: #0f172a;
  margin-bottom: 15px;
}

.solution-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 22px;
}

/*=========================
      FEATURES
==========================*/

.solution-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.solution-card ul li {
  margin-bottom: 12px;
  color: #334155;
  font-size: 15px;
}

/*=========================
      BUTTON
==========================*/

.solution-card button {
  border: none;
  outline: none;
  padding: 14px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00b4ff, #0066ff);
  color: white;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.solution-card button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 180, 255, 0.35);
}

/*=========================
      RESPONSIVE
==========================*/

@media (max-width: 992px) {
  .in-house-section {
    padding: 80px 6%;
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
  }

  .section-header p {
    font-size: 15px;
  }

  .solution-card {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .in-house-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 25px;
  }

  .section-header h2 {
    font-size: 26px;
  }
}
.solution-icon {
  width: 85px;
  height: 85px;
  margin-bottom: 25px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Use 'contain' if your icons have transparent padding */
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 180, 255, 0.25);
}

.solution-card:hover .solution-icon img {
  transform: scale(1.08);
}

/*FOR THE LANYARD*/
#lanyard-container {
  width: 450px;
  height: 600px;
}
.bounce-hover:hover {
  animation: bounce-top 0.9s both;
}
.bounce-card:hover {
  animation: bounce-top 0.9s both;
}
/* =============================================================
   MOBILE NAVIGATION (hamburger + drawer) + RESPONSIVE FIXES
   Added: layout/spacing only — no color or background values
   in the pre-existing sections (hero buttons, services,
   projects/"Explore Our Work") were changed by this block.
============================================================= */

/* Hamburger button — hidden on desktop */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dark overlay behind the drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1050;
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide-in drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(78vw, 320px);
  background: #030712;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 90px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1090;
  overflow-y: auto;
}
.mobile-nav-drawer.active {
  transform: translateX(0);
}
.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}
.mobile-nav-link {
  color: #9ca3af;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #3b82f6;
}
.mobile-nav-talk {
  margin-top: 18px;
  background: #2563eb;
  color: #ffffff;
  text-align: center;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

/* Breakpoint where the desktop nav swaps for the hamburger.
   Consolidates the earlier partial/conflicting rules (which hid
   .navbar below 640px with no replacement) into one clean switch. */
@media (max-width: 880px) {
  .site-header {
    padding: 16px 6%;
  }
  .navbar {
    display: none !important;
  }
  .hamburger-btn {
    display: flex;
  }
}
@media (min-width: 881px) {
  .mobile-nav-drawer,
  .mobile-nav-overlay {
    display: none;
  }
}

/* Founder section 3D lanyard — was a fixed 450x600px box that
   overflowed narrow viewports and pushed the layout sideways. */
@media (max-width: 640px) {
  #lanyard-container {
    width: 100%;
    max-width: 320px;
    height: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 380px) {
  #lanyard-container {
    height: 340px;
  }
}

/* Hero brand block — the existing 992px rule already scales this
   down; this adds a tighter step for small phones so the huge
   letterform never forces horizontal scroll. */
@media (max-width: 420px) {
  .brand-main {
    font-size: 3.6rem;
  }
  .brand-name {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  .hero {
    padding: 120px 6% 50px 6%;
  }
}

/* Global overflow safety net for small screens */
@media (max-width: 480px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .section-header-row {
    gap: 12px;
  }
  .section-header-row .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }
}
.apply {
  color: #000;
}

/*New model helping with the pricing and pop up form*/
:root {
  --ink: #14161f;
  --indigo: #28306b;
  --signal: #2563eb;
  --teal: #12897f;
  --bg: #f5f6fa;
  --card: #ffffff;
  --line: #e4e6ee;
  --muted: #666b80;
}
* {
  box-sizing: border-box;
}
.page-pad {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

#pricing .section-title {
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}
#pricing .section-title span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--signal);
  margin-bottom: 14px;
}
#pricing .section-title h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
#pricing .section-title p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* toggle — signature element, genuinely binary (lease vs own) */
.mode-toggle {
  display: flex;
  justify-content: center;
  margin: 36px 0 48px;
}
.toggle-track {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(20, 22, 31, 0.04);
}
.toggle-track button {
  border: none;
  background: transparent;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.toggle-track button.active {
  background: var(--ink);
  color: #fff;
}
.toggle-track button .sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 1px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pricing-grid.own {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 22, 31, 0.08);
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal);
  background: rgba(18, 137, 127, 0.09);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pricing-tagline {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 40px;
}

.pricing-amount {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pricing-amount .per {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.pricing-amount.range {
  font-size: 26px;
}
.pricing-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #3a3d4c;
  line-height: 1.5;
}
.pricing-features i {
  color: var(--teal);
  font-size: 12px;
  margin-top: 3px;
  flex: none;
}

#pricing .btn,
#lease-modal .btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
#pricing .btn-outline-dark,
#lease-modal .btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
#pricing .btn-outline-dark:hover,
#lease-modal .btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}
#pricing .btn-primary,
#lease-modal .btn-primary {
  background: var(--signal);
  color: #fff;
}
#pricing .btn-primary:hover,
#lease-modal .btn-primary:hover {
  background: #e4632f;
}

.pricing-card.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.pricing-card.featured .pricing-tagline,
.pricing-card.featured .pricing-sub {
  color: #b7bac9;
}
.pricing-card.featured .pricing-features li {
  color: #e7e8f0;
}
.pricing-card.featured .pricing-amount .per {
  color: #b7bac9;
}
.pricing-card.featured .card-tag {
  background: rgba(255, 122, 69, 0.16);
  color: var(--signal);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--signal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
}

.divider-title {
  margin-top: 76px;
}

.payment-plans-note {
  text-align: center;
  margin: 56px auto 0;
  max-width: 760px;
  padding: 26px 30px;
  border: 1.5px dashed var(--line);
  border-radius: 14px;
  background: #fff;
}
.payment-plans-note h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.payment-plans-note p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-note {
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hidden {
  display: none;
}

/* lease application modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 31, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1200;
}
.modal-overlay.hidden {
  display: none !important;
}
.modal-panel {
  background: #fff;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--muted);
  font-size: 15px;
}
.modal-close:hover {
  background: var(--line);
  color: var(--ink);
}
.modal-panel h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  padding-right: 30px;
}
.modal-panel .modal-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.lease-summary {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 14px;
}
.lease-summary .name {
  font-weight: 700;
  color: var(--ink);
}
.lease-summary .price {
  color: var(--teal);
  font-weight: 700;
}
.modal-form {
  display: grid;
  gap: 14px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-form label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  display: block;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--ink);
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--indigo);
}
.modal-form textarea {
  resize: vertical;
  min-height: 70px;
}
.modal-form .hint {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 4px;
}
.modal-submit {
  margin-top: 6px;
}
.confirm-state {
  text-align: center;
  padding: 20px 0;
}
.confirm-state i {
  font-size: 40px;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}
.confirm-state h3 {
  margin-bottom: 10px;
}
.confirm-state p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid.own {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .pricing-grid,
  .pricing-grid.own {
    grid-template-columns: 1fr;
  }
  .toggle-track {
    flex-direction: column;
    width: 100%;
  }
  .toggle-track button {
    width: 100%;
  }
}
