:root {
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --accent: #5ee7ff;
  --accent-2: #9b8cff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: radial-gradient(circle at top, #ffffff, #000000);
  color: rgb(0, 0, 0);
  min-height: 200vh;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 22px;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(201, 201, 201, 0.35);

  transition: all 0.35s ease;
}

.site-header.scrolled .header-inner {
  backdrop-filter: blur(30px);
}

/* LOGO */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo .apex {
  color: rgb(81, 87, 239);
}

.logo .finish {
  color: rgb(255, 106, 0);
}

/* NAV */
.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: rgb(0, 0, 0);
  border-radius: 10px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 20px 80px;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* ===== HERO TEXT ===== */
.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: auto;
  padding: 0 12px;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  margin-top: 50px;
  z-index: 2;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: clamp(16px, 4vw, 28px);
  padding: 20px clamp(16px, 8vw, 120px);
  align-items: center;
}

/* ===== CARD ===== */
.card {
  flex: 0 0 auto;
  width: clamp(160px, 40vw, 220px);
  height: clamp(220px, 55vw, 300px);
  border-radius: 22px;
  overflow: hidden;

  opacity: 0.75;
  transform: scale(0.95);
  transition: transform 0.35s ease, opacity 0.35s ease;
  scroll-snap-align: center;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FEATURED CARD */
.card.featured {
  transform: scale(1.25);
  opacity: 1;
  box-shadow: 0 26px 80px rgba(0,0,0,0.65);
  z-index: 3;
}

/* Reduce scale on smaller screens to prevent overflow */
@media (max-width: 768px) {
  .card.featured {
    transform: scale(1.1);
  }
}

/* HOVER (DESKTOP ONLY) */
@media (hover: hover) {
  .card:hover {
    transform: scale(1.05);
    opacity: 1;
  }
}





/* FLOATING BUTTON */
.floating-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  color: white;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(30px);
  display: none;
  flex-direction: column;
  padding: 40px;
  z-index: 2000;
}

.mobile-menu nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  align-self: flex-end;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}
/* ===== RESPONSIVE CARD SECTION ===== */
.responsive-card-section {
  background: #ffffff;
  padding: 120px 20px;
}

.responsive-card {
  max-width: 1100px;
  margin: auto;
  padding: 80px 60px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    #e6ebe8,
    #d4e3dc
  );

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}
.responsive-card h2 {
  color: rgb(97, 99, 99);
}

/* Heading */
.card-heading {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 50px;
}

.card-heading span {
  color: #17211f;
}

/* Content */
.card-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.card-image {
  width: 50%;
}

.card-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,0.2));
}

/* Text */
.card-text {
  width: 50%;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a2a2a;
}

/* Active animation */
.responsive-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .responsive-card {
    padding: 60px 30px;
  }

  .card-content {
    flex-direction: column;
    text-align: center;
  }

  .card-image,
  .card-text {
    width: 100%;
  }

  .card-image img {
    margin: auto;
  }
}
/* ===== CONTINUOUS MARQUEE ===== */
.scrolling-words {
  overflow: hidden;
  margin-bottom: 50px;
}

.scroll-wrapper {
  display: flex;
  width: max-content;
  animation: scrollContinuous 10s linear infinite;
  -webkit-animation: scrollContinuous 10s linear infinite;
}

.scroll-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  padding-right: 60px;
}

.scroll-track span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #2f7d6d;
  opacity: 0.65;
}

/* Seamless animation */
@keyframes scrollContinuous {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===== SERVICES SECTION ===== */
.services-section {
  background: #fbf8f3; /* cream background */
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
}

/* Heading */
.services-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
  color: #0896c9;
}

.services-heading span {
  color: #04b46e; /* optional accent */
}

/* Scrollable Cards */
.services-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth on mobile */
  scroll-padding-left: 20px;
  justify-content: flex-start; /* start from left */
}

/* Hide scrollbar */
.services-scroll::-webkit-scrollbar {
  display: none;
}

/* Base card */
.service-card {
  flex: 0 0 300px; /* width per card */
  scroll-snap-align: start;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;

  color: #ffffff; /* text color */
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

/* Card colors */
.service-card.design { background-color: #5ee7ff; }
.service-card.dev { background-color: #6fcf97; }
.service-card.ecommerce { background-color: #f2c94c; color: #222; }
.service-card.seo { background-color: #bb6bd9; }
.service-card.app { background-color: #eb5757; }
.service-card.marketing { background-color: #ff9f1c; }

/* Card content */
.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* Buttons */
.service-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(0,0,0,0.2);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background-color: rgba(0,0,0,0.3);
}

/* Card images */
.service-card img {
  width: 100%;
  border-radius: 14px;
  margin-top: 10px;
}

/* Active animation */
.services-section.active .services-heading {
  opacity: 1;
  transform: translateY(0);
}

.services-section.active .service-card {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-card { flex: 0 0 250px; } /* smaller cards, still horizontal */
}

@media (max-width: 500px) {
  .service-card { flex: 0 0 220px; } /* smaller mobile cards */
}


/* ===== PROJECTS SECTION ===== */
.projects-section {
  background: #f0f2f5;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-intro {
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px;
}

.projects-intro h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  font-weight: 700;
  color: #222;
}

.projects-intro p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.projects-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-primary { background-color: #ff7f50; color: #fff; }
.btn-primary:hover { background-color: #e56b3f; }

.btn-secondary { background-color: #6a4c93; color: #fff; }
.btn-secondary:hover { background-color: #52387a; }

.scroll-note {
  font-size: 0.95rem;
  color: #777;
  margin-top: 10px;
  text-align: center;
}

/* ===== SCROLLABLE CARDS ===== */
.projects-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  width: 100%;
  justify-content: flex-start;
  scroll-padding-left: 20px;
  scroll-behavior: smooth; /* smooth scroll when auto-centering */
}




/* ===== MODERN CARD STYLE ===== */
.project-card {
  flex: 0 0 250px;
  height: 400px;
  background-color: #fff;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
}

.project-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.project-name {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 12px;
  color: #333;
  text-align: center;
  padding: 0 5px;
  transition: all 0.3s ease; /* animation */
}

/* Hover effects */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.15);
}

.project-card:hover .project-name {
  transform: translateY(-4px);
  color: #ff7f50; /* bright accent color */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) { .project-card { flex: 0 0 200px; height: 320px; } .project-card img { height: 200px; } }
@media (max-width: 900px)  { .project-card { flex: 0 0 180px; height: 290px; } .project-card img { height: 180px; } }
@media (max-width: 600px)  { .project-card { flex: 0 0 180px; height: 290px; } .project-card img { height: 180px; }
.projects-scroll { scroll-padding-left: 15px; } /* ensure first card visible */ }

.partners-section {
  background-color: #e97d12; /* black background */
  padding: 50px 20px;      /* adjust section height */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;        /* hide scrollbars */
  margin-top: 100px;
}

.partners-section h2 {
  color: #fff;             /* heading white */
  font-size: 1.6rem;       /* smaller font */
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.scrolling-partners {
  width: 100%;
  overflow: hidden;        /* hide overflow */
}

.scroll-track {
  display: flex;
  gap: 60px;               /* space between logos */
  flex-shrink: 0;
  animation: scroll-marquee 20s linear infinite;
}

.partner-logo {
  height: 50px;            /* adjust logo size */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);   /* subtle hover effect */
}

/* Infinite scroll keyframes */
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move half the width to loop seamlessly */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .scroll-track { gap: 40px; }
  .partner-logo { height: 40px; }
}

@media (max-width: 600px) {
  .scroll-track { gap: 30px; }
  .partner-logo { height: 35px; }
}

/* ===== MARKETING SECTION ===== */
.marketing-section {
  padding: 60px 16px 40px;
  background: #fff;
  overflow: hidden;
}

/* Layout: text left, image right */
.marketing-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center; /* vertical center */
}

/* Text */
.marketing-text {
  animation: fadeLeft 1s ease forwards;
}

.marketing-text h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #111;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.marketing-text span {
  color: #0077ff; /* accent */
}

.marketing-text p {
  font-size: clamp(0.85rem, 2.3vw, 1rem);
  line-height: 1.5;
  color: #555;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: 8px;
}

/* Image: smaller hero-style */
.marketing-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  border-radius: 12px;
}

/* ===== SCROLLING WORDS ===== */
.marketing-scroll {
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.marketing-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding: 14px 0;
  animation: scrollLeft 22s linear infinite;
}

.marketing-track span {
  font-size: clamp(0.65rem, 2.3vw, 0.75rem);
  letter-spacing: 2px;
  color: #111;
  font-weight: 500;
}

.marketing-track .dot {
  opacity: 0.6;
}

/* FADE LEFT ANIMATION */
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* SCROLL ANIMATION */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .marketing-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .marketing-text h2 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  
  }

  .marketing-text p {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }

  .marketing-image img {
    max-width: 260px;
    margin: 0 auto;
  }

  .marketing-track {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .marketing-inner {
    gap: 20px;
    padding: 30px 12px;
  }

  .marketing-text h2 {
    font-size: clamp(1.3rem, 6vw, 1.3rem);
    line-height: 1.4;
  }

  .marketing-text p {
    font-size: clamp(0.8rem, 4vw, 0.95rem);
    line-height: 1.5;
  }

  .marketing-image img {
    max-width: 180px;
    margin: 0 auto;
  }

  .marketing-track {
    gap: 12px;
  }
}


.about-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video */
.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* CARD */
.about-card {
  position: relative;
  z-index: 3;
 
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );

  border-radius: 18px;
  padding: 48px 42px;
  max-width: 820px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* Headings */
.about-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  font-weight: 700;
}

.about-card h2 span {
  color: #fffefe;
}

/* Text */
.about-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 40px;
}

/* Stats */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat img {
  width: 40px;
  height: 40px;
}

.stat span {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

/* Fade animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE FIXES */
@media (max-width: 768px) {
  .about-card {
    padding: 32px 22px;
  }

  .about-stats {
    gap: 22px;
  }

  .stat img {
    width: 32px;
    height: 32px;
  }
}
/* ===== GLASS TIMELINE SECTION ===== */
.glass-timeline-section {
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.timeline-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 40px;
}

.timeline-heading span {
  color: #111;
}

/* Progress */
.timeline-progress {
  width: 100%;
  height: 3px;
  background: #ddd;
  margin-bottom: 40px;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #111;
  transition: width 0.2s linear;
}

/* Scroll container */
.timeline-scroll {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 40px 20px;
  scroll-snap-type: x mandatory;
}

.timeline-scroll::-webkit-scrollbar {
  display: none;
}

/* Connecting line */
.timeline-scroll::before {
  content: "";
  position: absolute;
  height: 2px;
  background: #ccc;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 0;
}

/* Cards */
.timeline-card {
  min-width: 280px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  scroll-snap-align: center;
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.5s ease;
  z-index: 1;
}

.timeline-card.active {
  opacity: 1;
  transform: scale(1);
}

/* Text */
.timeline-card h3 {
  margin: 12px 0;
  font-size: 1.2rem;
}

.timeline-card p {
  font-size: 0.95rem;
  color: #444;
}

.step {
  font-size: 0.85rem;
  color: #666;
}

/* Responsive */
@media (min-width: 1024px) {
  .timeline-scroll {
    justify-content: center;
  }
}

/* ===== PROCESS SECTION ===== */
:root {
  --card-bg: #ffffff;
  --text-dark: #111111;
  --text-muted: #7a7a7a;
  --section-bg: #eef1f1;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-section {
  background: var(--section-bg);
  padding: 60px 40px;
}

.process-cards {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.process-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 28px 24px 48px;
  width: 220px;
  position: relative;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}
.process-card.animate {
  animation: popFromBottom 0.8s ease-out forwards;
}

@keyframes popFromBottom {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.process-card:hover {
  transform: translateY(-6px);
}

.process-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.process-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-number {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 14px;
  color: #9a9a9a;
}

/* Highlighted (center) card */
.process-card.active {
  transform: translateY(-10px);
}

.process-card.active .process-dot {
  width: 10px;
  height: 10px;
}

/* Form for users to submit their process steps */
:root {
  --border: #dcdcdc;
  --text: #111;
  --muted: #777;
}

* {
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

.contact-section {
      padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-top: 30px;
  background: #fff;
  border-radius: 10px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}

/* LEFT */
.contact-pill {
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 30px;
  margin-left: 10px;
}

.contact-left h1 {
  font-size: 56px;
  margin-left: 10px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
}

/* FORM */
.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  outline: none;
  font-size: 15px;
}

/* INTEREST */
.interest-section {
  margin-top: 40px;
}

.interest-section p {
  margin-bottom: 15px;
  font-weight: 500;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-group button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

/* SUBMIT */
.submit-btn {
  margin-top: 50px;
  padding: 16px;
  width: 100%;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.contact-image {
  margin-top: 30px;
  max-width: 100%;
}

.contact-image img {
  width: 100%;
  max-width: 420px;   /* controls desktop size */
  height: auto;
  display: block;
}
/* CHIP BASE */
.chip-group button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #dcdcdc;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.25s ease;
}

/* ACTIVE STATE */
.chip-group button.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* HOVER (optional) */
.chip-group button:hover {
  border-color: #111;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-left h1 {
    margin-left: 10px;
    font-size: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-image img {
    max-width: 100%;
    max-height: 220px;      /* 🔥 prevents oversized images */
    object-fit: contain;
    margin-inline: auto;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 40px 25px;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer.reveal{
    opacity: 1;
    transform: translateY(0);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 45px;
}
.footer h2,
.footer h4 {
  color: #fff;
  margin-bottom: 18px;
}
.footer h2 {
  font-size: 20px;
}
.footer h4 {  font-size: 16px;
}
.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer a {
  display: block;
  width: fit-content;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  background-image: linear-gradient(#1dbfff, #1d76fafb);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 2px;
  padding-bottom: 4px;
  transition: background-size 0.3s ease, color 0.2s ease;
}
.footer a:hover {
  background-size: 100% 2px;
  color: #fff;
}
.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.socials a img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.3s;
}
.socials a img:hover {
  transform: scale(1.2);
}
.footer-bottom {
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}
@media (max-width: 900px) {  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer a {
    margin-bottom: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
