/*=========================================================

   ROOT VARIABLES — design system

========================================================= */

:root {

  --bg: #0b0d10;

  --card: #12151c;

  --primary: #5da9ff;

  --secondary: #7b61ff;

  --text: #f2f4f8;

  --muted: #9aa0aa;

}



/* =========================================================

   RESET — clean slate

========================================================= */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: "Inter", system-ui, sans-serif;

  background: var(--bg);

  color: var(--text);

  overflow-x: hidden;

}



/* =========================================================

   NAVBAR — fixed, glassy

========================================================= */

.navbar {

  position: fixed;

  top: 0;

  width: 100%;

  height: 72px;

  padding: 0 64px;



  display: flex;

  align-items: center;

  justify-content: space-between;



  background: rgba(11, 13, 16, 0.6);

  backdrop-filter: blur(14px);

  z-index: 100;

}



.navbar a {

  color: var(--muted);

  text-decoration: none;

  margin: 0 14px;

  font-size: 14px;

}



.nav-left {
/* This targets only the logo link */
.logo {
  color: #FFFFFF !important; /* Pure white */
  font-weight: 800;          /* Keeps it bold */
  text-transform: uppercase; /* Matches your brand style */
  margin-left: 0 !important; /* Removes extra spacing on the far left */
}
}



.btn-outline {

  border: 1px solid var(--primary);

  padding: 8px 18px;

  border-radius: 20px;

  color: var(--primary);

}



/* =========================================================

   HERO — cinematic, confident

========================================================= */

.hero {

  min-height: 92vh;

  padding: 140px 80px 80px;

  display: flex;

  align-items: center;

  position: relative;



  background:

    radial-gradient(1200px 500px at 20% 20%, rgba(93,169,255,0.15), transparent 60%),

    linear-gradient(rgba(11,13,16,0.85), rgba(11,13,16,0.95)),

    url("../images/hero-bg.png") center / cover no-repeat;

}



.hero::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 160px;

  background: linear-gradient(to bottom, rgba(11,13,16,0), var(--bg));

}



.hero-content {

  max-width: 720px;

  position: relative;

  z-index: 2;

}



.hero-content h1 {

  font-size: 68px;

  line-height: 1.05;

  font-weight: 700;

  margin-bottom: 24px;

}



.hero-content p {

  font-size: 18px;

  color: var(--muted);

  line-height: 1.7;

}



.hero-buttons {

  margin-top: 36px;

}



.btn-primary {

  background: var(--primary);

  color: #000;

  padding: 14px 28px;

  border-radius: 28px;

  text-decoration: none;

  margin-right: 14px;

  font-weight: 500;

}



.btn-secondary {

  border: 1px solid var(--muted);

  padding: 14px 28px;

  border-radius: 28px;

  color: var(--text);

  text-decoration: none;

}



/* =========================================================

   SERVICES SECTION

========================================================= */

.cards-section {

  padding: 120px 8%;

}



.cards-section h2 {

  font-size: 42px;

  margin-bottom: 60px;

}



/* =========================================================

   GRID — responsive, premium

========================================================= */

.cards-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 36px;

}



/* =========================================================

   BASE CARD

========================================================= */

.card {

  position: relative;

  background: var(--card);

  border-radius: 28px;

  overflow: hidden;

  transition: transform 0.4s ease, box-shadow 0.4s ease;

  cursor: pointer;

}



.card:hover {

  transform: translateY(-8px);

  box-shadow: 0 30px 80px rgba(93,169,255,0.18);

}














































/* =========================================================

   FEATURED CARD

========================================================= */

.featured {

  grid-column: span 2;

}








/* This forces the card to take up the FULL width of the grid, no matter how many columns */
.media-full-width {
  grid-column: 1 / -1 !important;
}

/* Ensure the video fills the new wider space properly */
.card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}













/* =========================================================

   IMAGE CARD — universal height

========================================================= */

.image-card {

  position: relative;

  height: 320px; /* 🔒 Lock height */

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  overflow: hidden;

}



.image-card img {

  width: 100%;

  height: 100%;              /* 🔒 Fill card height */

  object-fit: cover;         /* 🔥 Crop excess */

  display: block;

  transition: transform 0.6s ease;

}



.card:hover img {

  transform: scale(1.05);    /* 🔹 Subtle zoom */

}





















/* =========================================================
   UNIVERSAL OVERLAY - LIGHTENED
   ========================================================= */
   .image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Changed from 0.92 to 0.70 to let the image breathe */
    background: linear-gradient(to top, rgba(11,13,16,0.7), rgba(11,13,16,0.1));
    pointer-events: none;
    z-index: 1;
  }

























/* =========================================================

   CARD CONTENT — overlay bottom

========================================================= */

.card-content {

  position: absolute;

  inset: 0;

  padding: 32px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  z-index: 2;

}



.card-content h3 {
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}




.card-content p {

  font-size: 15px;

  color: var(--muted);

  line-height: 1.6;

  margin-bottom: 14px;

  max-width: 90%;

}



.card-link {

  font-size: 14px;

  color: var(--primary);

  font-weight: 500;

}



/* =========================================================

   TEXT-ONLY CARDS

========================================================= */

.card:not(.image-card) {

  padding: 36px;

  min-height: 320px;



  display: flex;

  flex-direction: column;

  justify-content: flex-end;

}



.card:not(.image-card) h3 {

  font-size: 24px;

  margin-bottom: 10px;

}



.card:not(.image-card) p {

  font-size: 15px;

  color: var(--muted);

  line-height: 1.6;

  margin-bottom: 14px;

}



.card:not(.image-card) .card-link {

  font-size: 14px;

  color: var(--primary);

}



/* =========================================================

   RESPONSIVE BREAKPOINTS

========================================================= */

@media (max-width: 1100px) {

  .cards-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .featured {

    grid-column: span 2;

  }

}



@media (max-width: 600px) {

  .cards-grid {

    grid-template-columns: 1fr;

  }

  .featured {

    grid-column: span 1;

  }

}


































/* =========================================================

   FOOTER

========================================================= */

.footer {

  text-align: center;

  padding: 60px;

  color: var(--muted);

  font-size: 14px;

}

.social-link img {
  width: 22px;
  height: 22px;
  margin-left: 14px;
  filter: invert(80%);
  transition: opacity 0.3s ease;
}

.social-link img:hover {
  opacity: 0.6;
}










/* =========================================================
   ABOUT PAGE — Cinematic & Responsive Styling
   ========================================================= */

   :root {
    /* Brand Colors & Theme Variables */
    --primary: #5da9ff;
    --secondary: #7b61ff;
    --text: #ffffff;
    --muted: #a0a0a0;
    --card: #1a1a1a;
    --bg-dark: #0a0a0a;
  }
  
  /* =========================================================
     1. HERO SECTION — Fullscreen Video Intro
     ========================================================= */
  .about-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
  }
  
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35); /* darken video for text readability */
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    text-align: center;
    color: var(--text);
  }
  
  .hero-overlay h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  
    /* Gradient Text — standard first, then vendor; make text transparent */
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    background-clip: text;                 /* standard */
    -webkit-background-clip: text;         /* vendor */
    color: transparent;                    /* standard */
    -webkit-text-fill-color: transparent;  /* vendor */
  }
  
  .hero-overlay p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 750px;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  /* =========================================================
     2. MISSION SECTION — Split Layout
     ========================================================= */
  .about-mission {
    padding: clamp(80px, 15vh, 160px) 10%;
  }
  
  .mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 80px;
    align-items: center;
  }
  
  .mission-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  
    /* Gradient heading */
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  
  .mission-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--muted);
  }
  
  .mission-media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease;
  }
  
  .mission-media img:hover {
    transform: scale(1.03) translateY(-5px);
  }
  
  /* =========================================================
     3. CLIENTS SECTION — Cards with Full-Image Background
     ========================================================= */
  .about-clients {
    padding: 120px 10%;
    text-align: center;
  }
  
  .about-clients h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
  
    /* Gradient heading */
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  /* Card fills with photo (fixed height for consistent layout) */
  .client-card {
    position: relative;
    height: 240px;                 /* consistent card height */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--card);
  }
  
  .client-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;             /* photo fills entire card */
    display: block;
    transition: transform 0.6s ease;
  }
  
  .client-card:hover img {
    transform: scale(1.05);        /* subtle zoom */
  }
  
  /* Title overlay on image */
  .client-card h3 {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
    z-index: 2;
  }
  
  /* Gradient overlay for readability */
  .client-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
    z-index: 1;
  }
  
  /* Hover glow */
  .client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(93,169,255,0.25);
  }
  
  /* =========================================================
     4. STORY SECTION — Narrative Steps
     ========================================================= */
  .about-story {
    padding: 120px 15%;
  }
  
  .story-step {
    margin-bottom: 120px;
    max-width: 850px;
  }
  
  .story-step h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
  
    /* Gradient heading */
    display: inline-block;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  
  .story-step p {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.75;
  }
  
  /* =========================================================
     5. CTA SECTION — Emotional Close
     ========================================================= */
  .about-cta {
    margin: 100px auto;
    max-width: 1000px;
    padding: 100px 5%;
    text-align: center;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(93,169,255,0.1), rgba(123,97,255,0.1));
    border: 1.5px solid rgba(123,97,255,0.3);
    backdrop-filter: blur(10px);
  }
  
  .about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  
    /* Gradient heading */
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  
  .btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-3px) scale(1.05);
  }
  
  /* =========================================================
     6. SCROLL ANIMATIONS — Reveal Variations
     ========================================================= */
  .reveal {
    opacity: 0;
    transition: all 0.8s ease;
    will-change: transform, opacity;
  }
  
  .reveal.up    { transform: translateY(40px); }
  .reveal.left  { transform: translateX(-40px); }
  .reveal.right { transform: translateX(40px); }
  .reveal.fade  { transform: scale(0.95); }
  
  .reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  
  /* Delay classes */
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  
  /* =========================================================
     7. RESPONSIVE DESIGN — Mobile Adjustments
     ========================================================= */
  @media (max-width: 992px) {
    .mission-grid { gap: 40px; }
    .about-story { padding: 80px 10%; }
  }
  
  @media (max-width: 600px) {
    .hero-overlay h1 { font-size: 2rem; }
    .hero-overlay p { font-size: 1rem; }
    .about-cta h2 { font-size: 2rem; }
    .client-card { height: 200px; } /* slightly shorter cards on small screens */
  }
  
 




















  





/* ===========================
   FORMA Contact Page Styling
=========================== */

:root {
  --bg: #0b0d10;
  --card: rgba(18, 21, 28, 0.6);
  --primary: #5da9ff;
  --secondary: #7b61ff;
  --text: #f2f4f8;
  --muted: #9aa0aa;
}

/* ===========================
   Base + Background
=========================== */
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}

/* ===========================
   Contact Section Container
=========================== */
.contact-section {
  max-width: 720px;
  margin: 180px auto 120px;
  padding: 80px 60px;
  background: rgba(18, 21, 28, 0.6); /* semi-transparent dark card */
  backdrop-filter: blur(5px);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* ===========================
   Header Text
=========================== */
.contact-header h1 {
  font-size: 64px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.contact-header p {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.6;
}

/* ===========================
   Form Layout
=========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===========================
   Form Fields
=========================== */
.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 17px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 15px;
  pointer-events: none;
  transition: 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group input[type="number"]:focus + label,
.form-group input[type="number"]:valid + label {
  top: -12px;
  left: 16px;
  font-size: 13px;
  color: var(--primary);
}

/* ===========================
   Date Input
=========================== */
input[type="date"] {
  color-scheme: dark;
}

/* ===========================
   Submit Button
=========================== */
.contact-btn {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(93,169,255,0.6);
}

/* ===========================
   Reveal Animations
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }







 





/* ===========================
   Success Overlay Styling
=========================== */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 999; /* above everything except navbar */
}

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-card {
  background: var(--card);
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(93,169,255,0.4);
  animation: popIn 0.6s ease forwards;
}

.success-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));

  /* ✅ Standard property */
  background-clip: text;

  /* ✅ Vendor prefix for Chrome/Safari/Edge */
  -webkit-background-clip: text;

  /* ✅ Make text transparent so gradient shows */
  color: transparent;
  -webkit-text-fill-color: transparent;
}


.success-card p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.success-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.close-btn {
  margin-top: 20px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


















/* ===========================
   SMART PAGE — Cinematic Styling
=========================== */

.smart-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
  z-index: -2;
}

.smart-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: -1;
}

.smart-hero .hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10%;
  color: var(--text);
  animation: fadeUp 1.2s ease forwards;
}

.smart-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--text); /* ✅ White by default */
  margin-bottom: 1.5rem;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.smart-hero h1.gradient {
  /* Optional gradient version */
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.smart-hero p {
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sections */
.smart-section {
  padding: 100px 10%;
  max-width: 1000px;
  margin: 0 auto;
}

.smart-section h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text); /* ✅ White headings */
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.smart-section h2.gradient {
  /* Optional gradient version */
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.smart-section p,
.smart-section ul {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.smart-section ul {
  padding-left: 20px;
  list-style: disc;
}

/* CTA */
.smart-cta {
  text-align: center;
  padding: 100px 5%;
  background: linear-gradient(135deg, rgba(93,169,255,0.1), rgba(123,97,255,0.1));
  border: 1.5px solid rgba(123,97,255,0.3);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  margin: 120px auto;
  max-width: 1000px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: fadeUp 1.2s ease forwards;
}

.smart-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--text); /* ✅ White by default */
}

.smart-cta h2.gradient {
  /* Optional gradient version */
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}























/* ===============================
   IMAGE-CARD WITH VIDEO (FINAL)
================================ */

.image-card {
  position: relative;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover lift */
.image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(93,169,255,0.25);
}

/* VIDEO */
.image-card .card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}

/* Zoom video slightly on hover */
.image-card:hover .card-video {
  transform: scale(1.06);
}


















/* DARK GRADIENT OVERLAY */
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,13,16,0.75),
    rgba(11,13,16,0.2)
  );
  z-index: 1;
}

















/* TEXT CONTENT */
.image-card .card-content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

/* TITLE */
.image-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* DESCRIPTION */
.image-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 90%;
}

/* LINK */
.image-card .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}















/* =========================================================
   FORMA CHAT WIDGET - THE "WORKS NOW" CSS
========================================================= */

/* 1. The Pulse Animation */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* 2. The New Launcher Button */
#chat-circle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  /* Use a gradient to look more modern */
  background: linear-gradient(135deg, var(--primary), #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  /* Add the pulse animation */
  animation: pulse-glow 2s infinite;
  transition: transform 0.3s ease;
}

#chat-circle:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

/* 3. The Icon inside the circle */
#chat-icon {
  font-size: 30px;
  color: #fff; /* White icon looks cleaner */
  /* Using a generic shape if you don't have SVG, or paste an SVG here */
  font-weight: bold; 
}


















/* Main Chat Window */
#chat-box {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: var(--card); /* Matches your card colors */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: none; /* Hidden by default */
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Header */
.chat-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Messages Area */
#chat-history {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.user-msg {
  align-self: flex-end;
  background: var(--primary);
  color: #000;
  padding: 10px 15px;
  border-radius: 15px 15px 0 15px;
  font-size: 14px;
  max-width: 80%;
}

.bot-msg {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 10px 15px;
  border-radius: 15px 15px 15px 0;
  font-size: 14px;
  max-width: 80%;
}








/* This styles the CLICKABLE LINK inside the bubble */
.bot-msg a {
    color: #3498db; 
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}










/* Bottom Input Area */
.chat-input-area {
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 10px;
}

.chat-input-area input {
  flex: 1;
  background: #0b0d10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  outline: none;
}

.chat-input-area button {
  background: var(--primary);
  border: none;
  padding: 0 15px;
  border-radius: 10px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.close-chat {
  cursor: pointer;
  color: var(--muted);
}


























/* =========================================================
   MOBILE FIXES & FORM STYLING
========================================================= */

/* ===========================
   NAVBAR - Mobile Responsive
=========================== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 18px !important;
    font-weight: 800 !important;
  }
  
  .navbar a:not(.logo):not(.btn-outline) {
    font-size: 13px;
    margin: 0 8px;
  }
  
  .btn-outline {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ===========================
   HERO SECTION - Mobile Fix
=========================== */
@media (max-width: 768px) {
  .hero {
    padding: 120px 24px 60px;
    min-height: 100vh;
  }
  
  .hero-content h1 {
    font-size: 38px !important;
    line-height: 1.2 !important;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 16px !important;
    line-height: 1.6;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    margin-right: 0 !important;
  }
}

/* ===========================
   CARDS - Mobile Responsive
=========================== */
@media (max-width: 768px) {
  .cards-section {
    padding: 60px 5%;
  }
  
  .cards-section h2 {
    font-size: 32px;
  }
}

/* ===========================
   CONTACT PAGE - Mobile Fix
=========================== */
@media (max-width: 768px) {
  .contact-section {
    margin: 120px 20px 60px;
    padding: 40px 24px;
  }
  
  .contact-header h1 {
    font-size: 36px !important;
  }
  
  .contact-header p {
    font-size: 16px;
  }
}

/* ===========================
   ABOUT PAGE - Mobile Fix
=========================== */
@media (max-width: 768px) {
  .about-hero {
    height: 70vh;
  }
  
  .hero-overlay h1 {
    font-size: 32px !important;
  }
  
  .mission-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  .about-story {
    padding: 60px 5%;
  }
  
  .story-step h2 {
    font-size: 28px !important;
  }
}

/* ===========================
   CHAT WIDGET - Mobile Position
=========================== */
@media (max-width: 768px) {
  #chat-circle {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  #chat-icon {
    font-size: 24px;
  }
  
  #chat-box {
    bottom: 85px;
    right: 15px;
    width: calc(100vw - 30px);
    max-width: 350px;
  }
}












/* ===========================
   PHONE & BUDGET GROUP STYLING
=========================== */

/* --- SHARED CONTAINER STYLES --- */
.phone-group,
.budget-group {
  display: flex;
  gap: 10px;
  position: relative;
  margin-top: 10px; /* Slight spacing for safety */
}

/* --- COUNTRY SELECT (DESKTOP) --- */
.country-select {
  width: 180px;
  padding: 20px 12px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.country-select option {
  background: #1a1d24;
  color: var(--text);
  font-size: 13px;
  padding: 10px;
}

/* --- INPUT FIELDS (SHARED) --- */
.phone-group input[type="tel"],
.budget-group input[type="number"] {
  flex: 1;
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 17px;
}

/* --- CURRENCY SELECT (DESKTOP) --- */
.currency-select {
  width: 140px;
  padding: 20px 12px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.currency-select option {
  background: #1a1d24;
  color: var(--text);
  padding: 10px;
}

/* --- LABELS POSITIONING (DESKTOP) --- */
/* Phone label needs to clear the wide country box (180px + gap) */
.phone-label {
  left: 200px !important; 
  top: 20px;
  position: absolute;
  pointer-events: none;
  transition: 0.3s ease all;
  color: rgba(255,255,255,0.5);
}

/* Budget label sits inside the input */
.budget-label {
  left: 20px !important;
  top: 20px;
  position: absolute;
  pointer-events: none;
  transition: 0.3s ease all;
  color: rgba(255,255,255,0.5);
}

/* --- FLOATING ANIMATION (DESKTOP & MOBILE) --- */
/* This makes the label float UP when you click or type */

/* 1. Phone Floating Logic */
.phone-group input:focus ~ .phone-label,
.phone-group input:not(:placeholder-shown) ~ .phone-label {
  top: -22px !important;
  left: 0px !important; /* Move to start of line */
  font-size: 13px !important;
  color: var(--primary) !important;
}

/* 2. Budget Floating Logic */
.budget-group input:focus ~ .budget-label,
.budget-group input:not(:placeholder-shown) ~ .budget-label {
  top: -22px !important;
  left: 0px !important;
  font-size: 13px !important;
  color: var(--primary) !important;
}

/* Remove number input arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ===========================
   MOBILE RESPONSIVE FIX
=========================== */
@media (max-width: 768px) {
  .phone-group,
  .budget-group {
    flex-direction: row !important;
    gap: 8px;
    flex-wrap: nowrap;
    margin-top: 25px;
  }
  
  .country-select {
    width: 90px; 
    flex-shrink: 0;
    font-size: 13px;
    padding: 15px 5px;
  }
  
  .currency-select {
    width: 90px;
    flex-shrink: 0;
    font-size: 13px;
    padding: 15px 5px;
  }
  
  .phone-group input[type="tel"],
  .budget-group input[type="number"] {
    flex: 1;
    min-width: 0;
    padding: 15px 12px;
    font-size: 16px;
  }

  .phone-label {
    left: 105px !important; 
    font-size: 14px;
  }

  .budget-label {
    left: 15px !important;
    font-size: 14px;
  }
} /* <-- THIS CLOSING BRACKET */

/* ===========================
   TRUST SECTION - MOBILE
=========================== */
@media (max-width: 768px) {
  .trust-section {
    padding: 60px 5%;
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .trust-stat h3 {
    font-size: 36px;
    white-space: nowrap;
  }
  
  .trust-stat p {
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }
  
  .trust-stat h3 {
    font-size: 32px;
  }
  
  .trust-stat p {
    font-size: 14px;
  }
}























/* ===========================
   PROFESSIONAL UPGRADES - ADD TO END OF FILE
=========================== */

/* ===========================
   COOKIE BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 21, 28, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  border-top: 1px solid rgba(93, 169, 255, 0.3);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-content {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  color: var(--text);
  font-size: 14px;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-accept {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  transform: scale(1.05);
}

/* ===========================
   CHATBOT MOVES UP WHEN COOKIE SHOWS
=========================== */
body.cookie-visible #chat-circle {
  bottom: 110px !important;
  transition: bottom 0.4s ease;
}

body.cookie-visible #chat-box {
  bottom: 185px !important;
  transition: bottom 0.4s ease;
}

/* ===========================
   PROFESSIONAL FOOTER
=========================== */
.footer {
  background: rgba(18, 21, 28, 0.8);
  padding: 60px 8% 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-column h4 {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-location {
  color: var(--primary) !important;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* ===========================
   TRUST SECTION
=========================== */
.trust-section {
  padding: 100px 8%;
  text-align: center;
  background: rgba(18, 21, 28, 0.4);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.trust-stat h3 {
  font-size: 48px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  font-weight: 800;
}

.trust-stat p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(93, 169, 255, 0.1);
  border: 1px solid rgba(93, 169, 255, 0.3);
  padding: 12px 24px;
  border-radius: 30px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(93, 169, 255, 0.2);
  transform: translateY(-2px);
}

/* ===========================
   MOBILE RESPONSIVE - ALL UPGRADES
=========================== */
@media (max-width: 768px) {
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    min-width: 100%;
  }

  .cookie-accept {
    width: 100%;
  }

  /* Chatbot moves up more on mobile when cookie shows */
  body.cookie-visible #chat-circle {
    bottom: 130px !important;
  }

  body.cookie-visible #chat-box {
    bottom: 210px !important;
  }

  /* Footer - 2 column grid on mobile */
  .footer {
    padding: 40px 5% 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px;
    text-align: left;
  }

  .footer-column:first-child {
    grid-column: span 2;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
  }

  .footer-column h4 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-column a:hover {
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
    padding-top: 15px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* Trust Section */
  .trust-section {
    padding: 60px 5%;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }

  .trust-stat h3 {
    font-size: 36px;
    white-space: nowrap;
  }

  .trust-stat p {
    font-size: 13px;
    white-space: nowrap;
  }

  .trust-badges {
    gap: 10px;
  }

  .trust-badge {
    font-size: 12px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-stat h3 {
    font-size: 32px;
  }

  .trust-stat p {
    font-size: 14px;
  }
}





/* Mobile - chatbot moves WAYYYY up when cookie shows */
@media (max-width: 768px) {
  body.cookie-visible #chat-circle {
    bottom: 180px !important;
  }

  body.cookie-visible #chat-box {
    bottom: 260px !important;
  }
}




























/* =========================================================
   PASTE THIS AT THE END OF YOUR style.css
   Covers: Service Pages, Process, Testimonials, Hero Tag
========================================================= */

/* ===========================
   HERO TAG (small label above title)
=========================== */
.hero-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 20px 0 30px;
  line-height: 1.7;
}

/* ===========================
   SERVICE PAGE - HERO TAG
=========================== */
.service-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid rgba(93, 169, 255, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  background: rgba(93, 169, 255, 0.08);
}

/* ===========================
   SERVICE PAGE - INTRO
=========================== */
.service-intro {
  padding: 100px 8%;
  text-align: center;
  background: rgba(18, 21, 28, 0.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-intro-inner {
  max-width: 700px;
  margin: 0 auto;
}

.service-intro h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-intro p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===========================
   SERVICE PAGE - FEATURE CARDS
=========================== */
.service-features {
  padding: 100px 8%;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.3s ease;
}

.service-feature-card:hover {
  background: rgba(93, 169, 255, 0.06);
  border-color: rgba(93, 169, 255, 0.25);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   SERVICE PAGE - STATEMENT
=========================== */
.service-statement {
  padding: 80px 8%;
  text-align: center;
}

.statement-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.statement-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,169,255,0.4), transparent);
}

.statement-inner p {
  font-size: 22px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  min-width: 200px;
  flex: 2;
}

/* ===========================
   SERVICE PAGE - WHO IS THIS FOR
=========================== */
.service-who {
  padding: 80px 8%;
  background: rgba(18,21,28,0.4);
}

.service-who-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.service-who h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
}

.who-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
}

.who-item span {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.who-item p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ===========================
   PROCESS SECTION
=========================== */
.process-section {
  padding: 100px 8%;
  text-align: center;
  background: rgba(18, 21, 28, 0.3);
}

.process-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.process-subtitle {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 70px !important;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(93, 169, 255, 0.06);
  border-color: rgba(93, 169, 255, 0.25);
  transform: translateY(-4px);
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  line-height: 1;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  flex-shrink: 0;
  opacity: 0.4;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  padding: 100px 8%;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(93, 169, 255, 0.25);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f1c40f;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px !important;
}

.author-role {
  font-size: 13px;
  color: var(--muted);
  margin: 0 !important;
}

/* ===========================
   MOBILE - SERVICE PAGES
=========================== */
@media (max-width: 768px) {

  .service-intro {
    padding: 60px 5%;
  }

  .service-intro h2 {
    font-size: 28px;
  }

  .service-intro p {
    font-size: 16px;
  }

  .service-features {
    padding: 60px 5%;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-feature-card {
    padding: 28px 22px;
  }

  .feature-icon {
    font-size: 28px;
  }

  .statement-inner {
    flex-direction: column;
    gap: 16px;
  }

  .statement-line {
    width: 80%;
    height: 1px;
  }

  .statement-inner p {
    font-size: 18px;
  }

  .service-who {
    padding: 60px 5%;
  }

  .service-who h2 {
    font-size: 28px;
  }

  /* Process */
  .process-section {
    padding: 60px 5%;
  }

  .process-section h2 {
    font-size: 28px;
  }

  .process-steps {
    flex-direction: column;
    gap: 16px;
  }

  .process-connector {
    width: 2px;
    height: 30px;
  }

  .step-number {
    font-size: 36px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 60px 5%;
  }

  .testimonials-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  /* Hero */
  .hero-sub {
    font-size: 15px;
  }
}















/* ===========================
   LEGAL PAGES CSS - ADD TO END OF style.css
=========================== */
.legal-section {
  min-height: 100vh;
  padding: 140px 5% 80px;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(18, 21, 28, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 60px;
  border: 1px solid rgba(255,255,255,0.08);
}

.legal-header h1 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.legal-date {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px !important;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-block p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.legal-block ul li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-block ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.legal-block a {
  color: var(--primary);
  text-decoration: none;
}

.legal-block a:hover {
  text-decoration: underline;
}

.legal-block strong {
  color: var(--text);
}

@media (max-width: 768px) {
  .legal-section {
    padding: 100px 5% 60px;
  }
  
  .legal-container {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .legal-header h1 {
    font-size: 32px;
  }
  
  .legal-date {
    font-size: 13px;
    margin-bottom: 30px !important;
    padding-bottom: 30px;
  }
  
  .legal-block h2 {
    font-size: 18px;
  }
  
  .legal-block p,
  .legal-block ul li {
    font-size: 14px;
  }
}



















/* =========================================================
   SERVICE PAGE HERO SPACING FIX - SPACING ONLY, NO SIZE CHANGES
   Paste at VERY END of style.css
========================================================= */

.smart-hero .hero-overlay {
  padding: 60px 20px !important;
}

.smart-hero .service-tag {
  margin-bottom: 40px !important;
}

.smart-hero .hero-overlay h1 {
  margin-bottom: 36px !important;
  line-height: 1.3 !important;
}

.smart-hero .hero-sub {
  margin-bottom: 44px !important;
  line-height: 1.7 !important;
  max-width: 650px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.smart-hero .btn-primary {
  margin-top: 12px !important;
}

/* Mobile version */
@media (max-width: 768px) {
  .smart-hero .hero-overlay {
    padding: 40px 20px !important;
  }

  .smart-hero .service-tag {
    margin-bottom: 28px !important;
  }

  .smart-hero .hero-overlay h1 {
    margin-bottom: 24px !important;
    line-height: 1.3 !important;
  }

  .smart-hero .hero-sub {
    margin-bottom: 32px !important;
    line-height: 1.6 !important;
  }

  .smart-hero .btn-primary {
    margin-top: 8px !important;
    width: 90% !important;
  }
}








#three-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}







/* ===========================
   TASK 1.2 — SCROLL INDICATOR
   ADD TO END OF style.css
=========================== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.scroll-text {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===========================
   TASK 1.2 — MOUSE GLOW
=========================== */
#mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(
    circle,
    rgba(93, 169, 255, 0.06) 0%,
    rgba(123, 97, 255, 0.03) 40%,
    transparent 70%
  );
  will-change: left, top;
}

/* Hide glow on mobile */
@media (max-width: 768px) {
  #mouse-glow { display: none; }
  .scroll-indicator { bottom: 24px; }
}







/* =========================================================
   TASK 1.3 — Card Hover Upgrades
========================================================= */
 
/* Gradient border glow on hover */
.card {
  border: 1px solid transparent;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
 
.card:hover {
  border-color: rgba(93, 169, 255, 0.25);
}
 
/* Service feature cards — gradient border on hover */
.service-feature-card {
  transition: all 0.4s ease, border-color 0.4s ease;
}
 
.service-feature-card:hover {
  border-color: rgba(93, 169, 255, 0.3);
  box-shadow: 0 20px 60px rgba(93, 169, 255, 0.1);
}
 
/* Testimonial cards — same treatment */
.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(93, 169, 255, 0.1);
}
 
/* Process step cards */
.process-step {
  transition: all 0.4s ease;
}
 
.process-step:hover {
  box-shadow: 0 15px 40px rgba(93, 169, 255, 0.08);
}
 
/* Icon glow on card hover */
.service-feature-card:hover .feature-icon {
  filter: drop-shadow(0 0 8px rgba(93, 169, 255, 0.4));
  transition: filter 0.4s ease;
}







/* =========================================================
   TASK 1.4 — Process Section Upgrades
========================================================= */
 
/* Glow on step numbers */
.step-number {
  filter: drop-shadow(0 0 20px rgba(93, 169, 255, 0.25));
}
 
/* Connector starts invisible (JS sets scaleX:0) */
.process-connector {
  transform-origin: left center;
}











/* =========================================================
   TASKS 1.5-1.8 — Combined CSS Upgrades
========================================================= */
 
/* --- Trust Stats Glow --- */
.trust-stat h3 {
  filter: drop-shadow(0 0 25px rgba(93, 169, 255, 0.2));
}
 
/* --- Testimonial Card Hover Shine --- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
 
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(93, 169, 255, 0.04),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 0;
  pointer-events: none;
}
 
.testimonial-card:hover::before {
  left: 100%;
}
 
/* --- Statement Line Origin --- */
.statement-line {
  transform-origin: center center;
}
 
/* --- Service Feature Icon Hover Glow --- */
.service-feature-card .feature-icon {
  transition: filter 0.4s ease, transform 0.4s ease;
}
 
.service-feature-card:hover .feature-icon {
  filter: drop-shadow(0 0 12px rgba(93, 169, 255, 0.5));
  transform: scale(1.1);
}
 
/* --- Contact Form Input Transitions --- */
.contact-form input,
.contact-form textarea,
.contact-form select {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}
 
/* --- Submit Button Shimmer --- */
.contact-btn {
  position: relative;
  overflow: hidden;
}
 
.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}
 
.contact-btn:hover::before {
  left: 100%;
}
 
/* --- Footer Link Slide Effect --- */
.footer-column a {
  position: relative;
  display:  block;
  transition: color 0.3s ease, transform 0.3s ease;
}
 
.footer-column a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}
 
.footer-column a:hover::after {
  width: 100%;
}
 
/* --- Trust Badge Pulse on Hover --- */
.trust-badge {
  transition: all 0.3s ease, box-shadow 0.3s ease;
}
 
.trust-badge:hover {
  box-shadow: 0 4px 20px rgba(93, 169, 255, 0.2);
}
 
/* --- Smart CTA Glow Line --- */
.smart-cta {
  position: relative;
  overflow: hidden;
}
 
.smart-cta::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 200%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--secondary),
    transparent
  );
  animation: ctaShimmer 4s linear infinite;
}
 
@keyframes ctaShimmer {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}
 
/* --- About CTA same shimmer --- */
.about-cta {
  position: relative;
  overflow: hidden;
}
 
.about-cta::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 200%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--secondary),
    transparent
  );
  animation: ctaShimmer 4s linear infinite;
}
 
/* --- Who-Item Hover --- */
.who-item {
  transition: all 0.3s ease;
}
 
.who-item:hover {
  border-color: rgba(93, 169, 255, 0.25);
  background: rgba(93, 169, 255, 0.04);
  transform: translateX(6px);
}









/* Builder nav link — stands out */
.nav-builder-link {
  color: var(--primary) !important;
  font-weight: 600 !important;
  position: relative;
}

.nav-builder-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 1px;
}






/* =========================================================
   FORMA — MOBILE & VIDEO FIXES
   PASTE THIS AT THE VERY END OF style.css
   (overrides cleanly, nothing else needs to change)
========================================================= */

/* ---------------------------------------------------------
   1. KILL THE iOS VIDEO PLAY-BUTTON OVERLAY
   The big circular play button on autoplay videos (shows up
   in Low Power Mode / when autoplay is blocked). This hides
   it on every video so the frame just shows instead.
--------------------------------------------------------- */
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-panel,
video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
}
video { pointer-events: none; }              /* video itself non-interactive */
.card .card-link, .card a { pointer-events: auto; }  /* keep links clickable */


/* ---------------------------------------------------------
   2. HERO FIX ON MOBILE
   - three-bg canvas locked behind content, can't overflow
   - hero height uses dynamic viewport (handles mobile bars)
   - failsafe so the h1 is NEVER stuck invisible if GSAP
     hasn't run yet on a slow phone
--------------------------------------------------------- */
#three-bg {
  z-index: 0 !important;
  pointer-events: none;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;           /* dynamic viewport — accounts for mobile UI bars */
    overflow: hidden;
    padding: 110px 22px 70px;
  }



  /* FAILSAFE: if GSAP hasn't revealed the title yet, force it visible
     after 1.2s so it can never get stuck at opacity:0 on mobile */
  .hero-split { animation: heroFailsafe 0.1s linear 1.2s forwards; }
}

@keyframes heroFailsafe {
  to { opacity: 1 !important; }
}


/* ---------------------------------------------------------
   3. SERVICE CARDS / VIDEO CARDS ON MOBILE
   Make sure the full-width media card and video cards size
   correctly and don't get cropped weird on small screens.
--------------------------------------------------------- */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .featured,
  .media-full-width {
    grid-column: 1 / -1 !important;
  }
  .image-card {
    height: 260px;
  }
  .image-card .card-video {
    object-fit: cover;
  }
  .image-card h3 { font-size: 22px; }
  .image-card p  { font-size: 14px; }
}


/* ---------------------------------------------------------
   4. SAFETY: stop any horizontal scroll on mobile
--------------------------------------------------------- */
@media (max-width: 768px) {
  html, body { max-width: 100%; overflow-x: hidden; }
}