/* =========================
   FONT FACE
========================= */
@font-face {
  font-family: "Fanlste";
  src: url("../fonts/fanlste.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Regular";
  src: url("../fonts/GeneralSans-Regular.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Medium";
  src: url("../fonts/GeneralSans-Medium.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Semibold";
  src: url("../fonts/GeneralSans-Semibold.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Light Italic";
  src: url("../fonts/BwGradualDEMO-LightItalic.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Bold";
  src: url("../fonts/BwGradualDEMO-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Bold Italic";
  src: url("../fonts/BwGradualDEMO-BoldItalic.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Medium";
  src: url("../fonts/BwGradualDEMO-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Amsterdam Handwriting Regulat";
  src: url("../fonts/Amsterdam\ Handwriting_Regular.ttf") format("opentype");
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "General Sans", system-ui, sans-serif;
  background: #fff;
}

/* =========================
   HERO LAYOUT
========================= */
.hero {
  position: relative;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;

  padding-top: 92px;
  display: flex;
  flex-direction: column;
}

/* =========================
   BACKGROUND GRID
========================= */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.grid {
  position: absolute;
  display: flex;
  grid-auto-rows: auto;
  flex-direction: column;
  opacity: 0.50;
}

.grid-left {
  top: 0;
  left: 0;
}

.grid-right {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}

.row {
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(32px, 1fr));
}

.row span {
  width: 44px;
  height: 44px;
  border-radius: 10px;

  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
      135deg,
      rgba(74, 74, 74, 0.12),
      rgba(0, 0, 0, 0.01)
    ) border-box;

  border: 0.50px solid transparent;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 16px 20px 8px;
}

.header-container {
  max-width: 960px;
  width: auto;
  margin: 0 auto;
  height: 68px;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.logo {
  font-family: "Fanlste";
  font-size: 26px;
  text-decoration: none;
  color: #000;
}

.logo:hover,
.logo:focus,
.logo:active {
  text-decoration: none;
  color: #000;
}

.menu-toggle{
  display:none;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #777;
  text-decoration: none;
}

.nav a.active {
  font-weight: 600;
  color: #000;
}

/* CTA */
/* .cta {
  display: flex;
  align-items: center;
  gap: 10px;

  height: 44px;
  padding: 6px 18px 6px 6px;

  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.cta-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon img {
  width: 16px;
  height: 16px;
} */




/* =========================
   HERO TEXT (CENTERED)
========================= */
.hero-text {
  flex: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  margin-top: 36px;
}



/* TITLES */
.hero-title-italic {
  font-family: "Bw Gradual DEMO Light Italic";
  font-style: italic;
  font-size: 45px;
  margin-bottom: 10px;
  font-weight: 100;
  color: rgba(20, 20, 20, 1);
}

.hero-title-bold {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 55px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 100;
  color: rgba(20, 20, 20, 1);
}


/* =========================
   HERO BUTTON GROUP
========================= */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 35px;
  justify-content: center;
}

/* =========================
   BASE BUTTON
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  height: 45px;
  padding: 6px 10px 6px 6px;

  text-decoration: none;
  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.812);
  cursor: pointer;

  font-family: "General Sans Medium", sans-serif;
  font-size: 15px;

  transition: all 0.25s ease;
}

/* =========================
   ICON CIRCLE
========================= */
.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.btn-icon img {
  width: 13px;
  height: 13px;
}


/* =========================
   SECONDARY (GLASS WHITE)
========================= */
.btn-secondary {
  color: rgba(20, 20, 20, 1);

  /* Glass white */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(0, 0, 0, 0.213);

  /* BIG soft floating shadow (like image) */
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.133),
    0 5px 3px rgba(0, 0, 0, 0.018),
    inset 0 1px 0 rgba(255, 255, 255, 0.299);

  transition: all 0.3s ease;
}


.btn-secondary .btn-icon {
  background: linear-gradient(
    180deg,
    rgba(1, 39, 58, 1),
    rgba(1, 27, 41, 1)
  );

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


/* Hover */
.btn-secondary:hover {
  background: linear-gradient(
    180deg,
    rgba(1, 39, 58, 1),
    rgba(1, 27, 41, 1)
  );

  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary:hover .btn-icon {
  background: rgba(80, 164, 207, 1);
}


/* =========================
   HERO STATS SECTION
========================= */

.hero-stats-bg {
  width: 100%;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 40px;
  padding: 60px 0 60px;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  border-radius: 10px;

  box-shadow:
    0 40px 80px rgba(255, 255, 255, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-stats {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   STATS GRID
========================= */
.stats-grid {
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;

  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 20px;
}

/* =========================
   STAT CARD
========================= */
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 22px 24px;
  border-radius: 18px;

  background: rgba(237, 242, 247, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stat-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.stat-text h3 {
  font-family: "General Sans Medium";
  font-size: 40px;
  line-height: 1;
  font-weight: 100;
  margin-bottom: 4px;
  color: #111;
}

.stat-text p {
  font-family: "General Sans Medium";
  font-size: 16px;
  color: #666;
}

/* =========================
   SERVICES STRIP
========================= */
.services-strip {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.82);
  border-radius: 14px;

  max-width: 1000px;
  height: 60px;
  margin: 0 auto;

  display: flex;
  align-items: center;

  justify-content: flex-start;
}

/* =========================
   SERVICES TRACK (ANIMATION)
========================= */
.services-track {
  display: flex;
  width: max-content;

  animation: scroll-left 35s linear infinite;
}

.services-strip:hover .services-track {
  animation-play-state: paused;
}

.services-track span {
  font-family: "General Sans Medium";
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;

  display: flex;
  align-items: center;
  gap: 13px;

  /* spacing instead of gap on parent */
  margin-left: 10px;
  margin-right: 0;
}

.services-track span::before {
  content: "";
  width: 20px;
  height: 20px;

  background-image: url("../icon/star.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* =========================
   KEYFRAMES
========================= */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* =========================
   WHY COSMOLYST SECTION
========================= */
.why-cosmolyst {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: -20px 20px 30px;
  text-align: center;
}

/* =========================
   LIQUID GLASS WHY PILL
========================= */
.why-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 20px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border: 0.5px solid rgba(0, 0, 0, 0.06);

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
}

.why-pill > * {
  position: relative;
  z-index: 5;
}


.why-pill span {
  font-family: "General Sans Medium";
  font-size: 14px;
  color: rgba(20, 20, 20, 1);
}

.why-pill img {
  width: 14px;
  height: 14px;
}


/* =========================
   CLEAR LIQUID BLOBS
========================= */

.why-pill::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 16px;

  background: transparent;
  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.12);

  filter: blur(1.5px);

  top: -10px;
  left: 12px;

  z-index: 1;
}


.why-pill span::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 12px;

  background: transparent;
  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 1px 4px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);

  top: 13px;
  left: -50px;

  z-index: 1;
}

.why-pill::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 20px;

  background: transparent;
  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 -2px 6px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);

  bottom: 50px;
  right: -10px;

  z-index: 2;
}

.why-pill span::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 14px;

  background: transparent;
  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 2px 5px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);

  bottom: -5px;
  right: -50px;

  z-index: 0;
}


/* MAIN HEADING */
.why-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 40px;
  line-height: 1.25;
  color: rgba(20, 20, 20, 1);
  font-weight: 100;
  margin-top: 10px;
  margin-bottom: 10px;
}

.why-heading .italic-bold {
  font-family: "Bw Gradual DEMO Bold";
  font-weight: 700;
  font-style: italic;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
  text-align: left;
}

/* LEFT CONTENT */
.why-content {
  max-width: 450px;
}

.brand-logo {
  width: 60px;
  margin-bottom: 10px;
}

.why-title {
  font-family: "General Sans Semibold";
  font-size: 32px;
  line-height: 1.35;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 18px;
}

.why-desc {
  font-family: "General Sans Medium";
  font-size: 15px;
  line-height: 1.65;
  color: rgba(116, 113, 114, 1);
  margin-bottom: 16px;
}

/* RIGHT IMAGE */

.why-image img {
  width: 90%;
  height: 45%;
  border-radius: 20px;
  display: block;
}


/* =========================
   CORE VALUES SECTION
========================= */
.core-values {
  background: rgba(247, 247, 247, 1);
  padding: 70px 0px 30px;
  max-width: 1200px;
  border-radius: 10px;
  margin: 0 auto 50px;
}

.core-values-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  margin-top: -40px;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   LEFT IMAGE
========================= */
.core-image {
  position: relative;
  height: 700px;
  border-radius: 18px;
  overflow: hidden;
}

.core-image-photo {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center bottom;

  z-index: 1;
}



/* =========================
   RIGHT CONTENT
========================= */
.core-content {
  display: flex;
  flex-direction: column;
}

.core-pill {
  margin-bottom: 25px;
  width: 200px;
  height: 35px;

  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border: 0.5px solid rgba(0, 0, 0, 0.06);

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.core-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 40px;
  line-height: 1.5;
  gap: 30px;
  color: rgba(20, 20, 20, 1);
  font-weight: 100;
  margin-bottom: 20px;
}

.core-heading .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-weight: 400;
}

.core-desc {
  font-family: "General Sans Medium";
  font-size: 12px;
  line-height: 1.3;
  font-weight: 100;
  color: rgba(116, 113, 114, 1);
  margin-bottom: 40px;
}

/* =========================
   GRID CARDS
========================= */
.core-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.core-card {
  display: flex;
  gap: 10px;
  width: 270px;
  padding: 15px 15px 40px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 1);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.35s cubic-bezier(.34,1.56,.64,1),
    box-shadow 0.35s ease;
  will-change: transform;
}

.core-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.core-card img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.core-card h4 {
  font-family: "General Sans Medium";
  font-size: 12.5px;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 4px;
  font-weight: 100;
}

.core-card p {
  font-family: "General Sans Medium";
  font-size: 11px;
  line-height: 1.3;
  color: rgba(116, 113, 114, 1);
  font-weight: 100;
}




/* =========================
   OUR SERVICES SECTION
========================= */
.our-services {
  background: rgba(20, 20, 20, 1);
  border-radius: 18px;
  padding: 40px 20px 40px;
  margin: 20px auto;
  max-width: 1150px;
  text-align: center;
}

/* =========================
   SERVICE GLASS PILL (BLACK)
========================= */
.service-glass-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 22px;
  border-radius: 999px;

  /* ✅ background */
  background: rgba(255, 255, 255, 0.1);

  /* ✅ blur */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* ✅ border */
  border: 1px solid rgba(255, 255, 255, 0.308);

  /* ✅ shadow */
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}


/* text color stays white */
.service-glass-pill span {
  color: #ffffff;
}


/* Thin white ellipse (like your PNG) */
.service-glass-pill::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 2px;

  width: 38px;
  height: 20px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);

  background: transparent;
  opacity: 0.7;
  pointer-events: none;
}


/* subtle second ellipse (optional, premium look) */
.service-glass-pill::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 5px;

  width: 24px;
  height: 7px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);

  opacity: 0.6;
  pointer-events: none;
}



/* Heading */
.services-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 39px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 1);
  font-weight: 100;
  margin: 14px 0 50px;
}

.services-heading .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-weight: 100;
}

/* =========================
   SLIDER
========================= */
.services-slider {
  overflow: hidden;
  width:100%;
}

.services-track-manual {
  display: flex;
  gap: 24px;
  transition:transform .45s ease;
}

/* =========================
   SERVICE CARD
========================= */
.service-box{
  position:relative;
  overflow:hidden;
  flex:0 0 calc((50% - 85px)/4);
  max-width:calc((50% - 85px)/4);
  height:294px;
  border-radius:16px;
  padding:22px;
  box-sizing:border-box;
  
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.12);
  
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  
  box-shadow:
  0 18px 40px rgba(0,0,0,.45),
  inset 0 1px 0 rgba(255,255,255,.2);
  }

.service-box::before {
  content: "";
  position: absolute;

  top: -15px;
  left: -18px;

  width: 100px;
  height: 30px;

  border: 1px solid rgba(255, 255, 255, 0.55); /* outline only */
  border-radius: 0 0 120px 0; /* half-oval curve */

  background: transparent;

  filter: blur(3px);
  opacity: 0.6;

  pointer-events: none;
}

/* ✨ Inner glass glow */
.service-box::after {
  content: "";
  position: absolute;

  bottom: -15px;
  right: -15px;

  width: 150px;
  height: 35px;

  border: 1px solid rgba(255, 255, 255, 0.45); /* slightly softer */
  border-radius: 120px 0 0 0; /* mirrored half-oval */

  background: transparent;

  filter: blur(3px);
  opacity: 0.55;

  pointer-events: none;
}


.service-box img {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.service-box h4 {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
}

.service-box p {
  font-family: "General Sans Medium";
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.nav-btn-service {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  margin: 15px 20px;

  /* normal state */
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  font-size: 25px;
  color: rgb(255, 255, 255);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  transition: all 0.3s ease;
}


.nav-btn-service::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0)
  );

  opacity: 0.35;
  pointer-events: none;
}

.nav-btn-service:hover {
  background: #ffffff 100%;

  color: #000000;

  box-shadow:
    0 12px 30px rgba(129, 129, 129, 0.45),
    inset 0 1px 0 rgba(216, 216, 216, 0.25);

}

/* =========================
   CONTROLS WRAPPER
========================= */
.slider-controls.dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

/* =========================
   ARROW BUTTON
========================= */
.nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;

  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.3s ease, border 0.3s ease;
}

/* ICON */
.arrow-icon {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

/* =========================
   HOVER STATE
========================= */
.nav-arrow:hover {
  background: #ffffff;
  border-color: #ffffff;
}

/* swap arrow to black */
.nav-arrow:hover .arrow-icon {
  content: attr(data-black);
}

/* =========================
   DOTS
========================= */
.slider-dots-black {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.slider-dots-black span {
  font-size: 13px;
  color: #ffffff76;
  cursor: pointer;
}

.slider-dots-black span.active {
  font-size: 20px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  transform: translateY(-1px);
}



/* =========================
   SERVICE CATEGORIES
========================= */
.service-categories {
  padding: 20px 20px;
  text-align: center;
}

.service-pill {
  margin-bottom: 14px;
}

.service-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 42px;
  line-height: 1.25;
  color: rgba(20,20,20,1);
  font-weight: 100;
  margin-bottom: 40px;
}

.service-heading .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-weight: 200;
}

/* =========================
   SLIDER
========================= */
.service-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-slider {
  overflow: hidden;
  width: calc((262px * 4) + (30px * 3));
  margin: 0 auto;
}

.service-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   CARD
========================= */
.service-card {
  flex: 0 0 calc((100% - (30px * 3)) / 4);
  height: 340px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* text gradient */
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.75) 100%
  );
}

.service-card span {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;

  font-family: "General Sans Semibold";
  font-size: 17px;
  color: rgba(255,255,255,1);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

/* =========================
   NAV BUTTONS
========================= */
.nav-btn:hover {
  background: #011C29 100%;

  color: #ffffff;

  box-shadow:
    0 12px 30px rgba(2, 40, 59, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

}

.nav-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;

  background: transparent;
  border: 1.5px solid rgba(20, 20, 20, 1);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
}

.nav-btn-circle img {
  width: 20px;
  height: 20px;
  transition: all 0.35s ease;
}

.nav-btn-circle:hover {
  background: rgba(2, 40, 59, 1);
  border-color: rgba(2, 40, 59, 1);

  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.14),
    0px 2.77px 2.21px rgba(0, 0, 0, 0.1197),
    0px 6.65px 5.32px rgba(0, 0, 0, 0.1283),
    0px 12.52px 10.02px rgba(0, 0, 0, 0.135),
    0px 22.34px 17.87px rgba(0, 0, 0, 0.1417),
    0px 41.78px 33.42px rgba(0, 0, 0, 0.1503),
    0px 100px 80px rgba(0, 0, 0, 0.15),

    inset 0px -4px 0px rgba(0, 7, 20, 1),
    inset 0px 1px 0px rgba(255, 255, 255, 0.8),
    inset 0px -5px 0px rgba(160, 160, 160, 0.2),
    inset 0px 2px 0px rgba(255, 255, 255, 0.25);
}

.nav-btn-circle:hover img {
  content: attr(data-white);
}


/* =========================
   DOTS
========================= */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.slider-dots span {
  font-size: 13px;
  color: #999;
  cursor: pointer;
}

.slider-dots span.active {
  font-size: 20px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  color: #111;
  transform: translateY(-1px);
}





/* =========================
   KNOW OUR FOUNDER
========================= */
.founder-section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 40px;
  text-align: center;
}

/* pill reuse */
.founder-pill {
  margin-bottom: 16px;
  width: 210px;
  height: 35px;
}

/* heading */
.founder-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 40px;
  line-height: 1.25;
  color: rgba(20, 20, 20, 1);
  font-weight: 100;
  margin-bottom: 140px;
}

.founder-heading .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
}

/* grid */
.founder-grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

/* =========================
   LEFT IMAGE
========================= */
.founder-image-wrap {
  position: relative;
  z-index: 5;
}

.founder-image-wrap img {
  width: 100%;
  height: 600px;
  border-radius: 14px;
  display: block;
}

/* half outside circle */
.founder-logo-circle {
  position: absolute;
  right: -65px;
  bottom: 40px;

  width: 120px;
  height: 120px;
  border-radius: 50%;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "General Sans Medium";
  font-size: 20px;
  color: rgba(20, 20, 20, 1);

  z-index: 10;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.founder-logo-circle img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* =========================
   RIGHT CONTENT
========================= */
.founder-content {
  position: relative;
  background: rgba(247, 247, 247, 1);
  padding: 45px 30px 70px;
  border-radius: 14px;
  left: -40px;
  bottom: 100px;
  z-index: 2;
}

/* title */
.founder-content h3 {
  font-family: "General Sans Medium";
  font-size: 40px;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 40px;
  font-weight: 100;
}

/* text */
.founder-content p {
  font-family: "General Sans Medium";
  font-size: 13px;
  line-height: 1.8;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
  font-weight: 100;
}

/* button spacing */
.founder-btn {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* =========================
   SIGNATURE
========================= */
.founder-signature {
  position: absolute;
  right: 30px;
  bottom: -150px;

  font-family: "Amsterdam Handwriting Regulat";
  font-size: 56px;
  font-weight: 100;
  color: rgba(20, 20, 20, 1);

  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 3;
}


/* =========================
   TESTIMONIAL SECTION
========================= */
.testimonial-section {
  max-width: 1150px;
  margin: 0 auto 80px;
  padding: 45px 20px;
  background: rgba(247, 247, 247, 1);
  border-radius: 18px;
  text-align: center;
}

/* pill */
.testimonial-pill {
  margin-bottom: 15px;
}

/* heading */
.testimonial-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 40px;
  line-height: 1.25;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 40px;
  font-weight: 100;
}

.testimonial-heading .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
}

/* =========================
   SLIDER
========================= */
.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: all 0.35s ease;
}

/* =========================
   CARD
========================= */
.testimonial-card {
  flex:0 0 calc((50% - (30px * 3)) / 4);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
}

/* image */
.testimonial-image {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  margin-bottom: 16px;
}

.testimonial-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* logo badge */
.testimonial-logo {
  position: absolute;
  right: 12px;
  bottom: -33px;

  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.testimonial-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* text */
.testimonial-card h4 {
  font-family: "General Sans Medium";
  font-size: 11px;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 4px;
  margin-top: 10px;
  font-weight: 100;
}

.testimonial-card h5 {
  font-family: "General Sans Medium";
  font-size: 15px;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 10px;
  font-weight: 100;
}

.testimonial-card p {
  font-family: "General Sans Medium";
  font-size: 11px;
  line-height: 1.7;
  color: rgba(116, 113, 114, 1);
  font-weight: 100;
}

/* =========================
   TESTIMONIAL CONTROLS
========================= */
.testimonial-controls.premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

/* =========================
   PREMIUM ROUND BUTTON
========================= */
.testimonial-controls .nav-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;

  background: transparent;
  border: 1.5px solid rgba(20, 20, 20, 1);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
}

.testimonial-controls .nav-btn-circle img {
  width: 16px;
  height: 16px;
  transition: all 0.35s ease;
}

/* =========================
   HOVER – PREMIUM EFFECT
========================= */
.testimonial-controls .nav-btn-circle:hover {
  background: rgba(2, 40, 59, 1);
  border-color: rgba(2, 40, 59, 1);

  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.14),
    0px 2.77px 2.21px rgba(0, 0, 0, 0.1197),
    0px 6.65px 5.32px rgba(0, 0, 0, 0.1283),
    0px 12.52px 10.02px rgba(0, 0, 0, 0.135),
    0px 22.34px 17.87px rgba(0, 0, 0, 0.1417),
    0px 41.78px 33.42px rgba(0, 0, 0, 0.1503),
    0px 100px 80px rgba(0, 0, 0, 0.15),

    inset 0px -4px 0px rgba(0, 7, 20, 1),
    inset 0px 1px 0px rgba(255, 255, 255, 0.8),
    inset 0px -5px 0px rgba(160, 160, 160, 0.2),
    inset 0px 2px 0px rgba(255, 255, 255, 0.25);
}

/* =========================
   DOTS (MATCH SERVICE STYLE)
========================= */
.testimonial-dots.premium-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.testimonial-dots.premium-dots span {
  font-size: 13px;
  color: #999;
  cursor: pointer;
}

.testimonial-dots.premium-dots span.active {
  font-size: 20px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  color: #111;
  transform: translateY(-1px);
}



/* =========================
   TRANSFORM CTA SECTION
========================= */
.cta-section {
  max-width: 900px;
  margin: 80px auto 100px;
  padding: 0 20px;
  text-align: center;
}

/* Heading */
.cta-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 40px;
  line-height: 1.25;
  color: rgba(20, 20, 20, 1);
  font-weight: 100;
  margin-bottom: 16px;
}

.cta-heading .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
}

/* Description */
.cta-desc {
  max-width: 750px;
  margin: 0 auto 28px;

  font-family: "General Sans Regular";
  font-size: 17px;
  line-height: 1.6;
  color: rgba(20, 20, 20, 1);
}

/* Button spacing */
.cta-btn {
  margin-top: 10px;

  /* floating shadow like image */
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.161),
    0 6px 8px rgba(0, 0, 0, 0.058),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Hover lift */
.cta-btn:hover {
  transform: translateY(-2px);
}





/* =========================
   FOOTER
========================= */
.site-footer {
  width: 100%;
  background: rgba(20, 20, 20, 1);
  padding: 70px 20px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 70px;
  color: #fff;
}

.footer-container .footer-col:nth-child(2) {
  justify-self: center;
}


/* LEFT */
.footer-logo {
  width: 50px;
  margin-bottom: 25px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-item img {
  width: auto;
  height: auto;
  margin-top: 4px;
}

.footer-item span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* CENTER */
.footer-links-col h4 {
  margin-bottom: 18px;
}

.footer-links-col a {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-links-col a:hover {
  color: #fff;
}

/* RIGHT */
.footer-about-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  margin-top: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social img {
  width: 30px;
  opacity: 0.8;
  padding: 6px;
  border-radius: 6px;
  background: rgba(54, 54, 54, 0.75);
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
}



/* DIVIDER */
.footer-divider {
  max-width: 1000px;
  margin: 40px auto 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* BOTTOM BAR */
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "General Sans Regular";
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}


/* =========================
   WAVING BRAND TEXT
========================= */

.footer-brand {
  margin-top: 60px;
  text-align: center;
  font-family: "Fanlste";
  font-size: 250px;
  line-height: 1;
  color: rgba(255, 255, 255, 1);
  pointer-events: none;
  white-space: nowrap;
}

/* wave container */
.wave-text span {
  display: inline-block;
  animation: waveMove 6s ease-in-out infinite;
}

/* stagger animation */
.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.2s; }
.wave-text span:nth-child(3) { animation-delay: 0.4s; }
.wave-text span:nth-child(4) { animation-delay: 0.6s; }
.wave-text span:nth-child(5) { animation-delay: 0.8s; }
.wave-text span:nth-child(6) { animation-delay: 1s; }
.wave-text span:nth-child(7) { animation-delay: 1.2s; }
.wave-text span:nth-child(8) { animation-delay: 1.4s; }
.wave-text span:nth-child(9) { animation-delay: 1.6s; }

/* =========================
   KEYFRAMES
========================= */
@keyframes waveMove {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-14px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}




















































/* =========================
   RESPONSIVE
========================= */


/* =========================
   (min-width: 1440px)
========================= */

@media (min-width: 1440px) {

  .hero { margin-bottom: 22.5px; padding-top: 103.5px;}

  .row span { width: 49.5px; height: 49.5px;}

  .header { padding: 18px 22.5px 9px;}
  
  .header-container { max-width: 1080px; height: 76.5px;}
  
  .logo { font-size: 29.25px;}
  
  .nav { gap: 31.5px;}
  
  .nav a { font-size: 15.75px;}

  .hero-text { margin-top: 40.5px;}
  
  .hero-title-italic { font-size: 50.625px; margin-bottom: 11.25px;}
  
  .hero-title-bold { font-size: 61.87px; margin-top: 5.625px; margin-bottom: 11.25px;}
  
  .hero-actions { gap: 18px; margin-top: 36px; margin-bottom: 39.375px;}

  .btn { gap: 5.625px; height: 50.625px; padding: 6.75px 11.25px 6.75px 6.75px; font-size: 16.87px;}

  .btn-icon { width: 33.75px; height: 33.75px;}

  .btn-icon img { width: 14.625px; height: 14.625px;}

  .hero-stats-bg { margin-top: 5.625px; margin-bottom: 45px; padding: 67.5px 0 67.5px;}

  .hero-stats { padding: 0 22.5px;}

  .stats-grid { gap: 22.5px; max-width: 1237.5px; margin: 0 auto 27px; padding: 0 22.5px;}

  .stat-card { gap: 18px; padding: 24.75px 27px;}

  .stat-card img { width: 49.5px; height: 49.5px;}

  .stat-text h3 { font-size: 45px; margin-bottom: 4.5px;}

  .stat-text p { font-size: 18px;}

  .services-strip { max-width: 1125px; height: 67.5px;}

  .services-track span { font-size: 15.75px; gap: 14.625px; margin-left: 11.25px;}

  .services-track span::before { width: 22.5px; height: 22.5px;}

  .why-cosmolyst { max-width: 1125px; padding: -22,5px 22.5px 33.75px;}

  .why-pill { gap: 11.25px; padding: 9px 22.5px;}

  .why-pill span { font-size: 15.75px;}

  .why-pill img { width: 15.75px; height: 15.75px;}

  .why-pill::before { width: 33.75px; height: 18px; top: -11.25px; left: 13.5px;}

  .why-pill span::before { width: 33.75px; height: 13.5px; top: 14.625px; left: -56.25px;}

  .why-pill::after { width: 33.75px; height: 22.5px; bottom: 56.25px; right: -11.25px;}

  .why-pill span::after { width: 33.75px; height: 15.75px; bottom: -5.625px; right: -56.25px;}

  .why-heading { font-size: 45px; margin-top: 11.25px; margin-bottom: 11.25px;}

  .why-content { max-width: 506.25px;}
  
  .brand-logo { width: 67.5px; margin-bottom: 11.25px;}

  .why-title { font-size: 36px; margin-bottom: 20.25px;}

  .why-desc { font-size: 16.875px; margin-bottom: 18px;}

  .core-values { padding: 78.75px 0px 33.75px; max-width: 1350px; margin: 0 auto 56.25px;}

  .core-values-container { max-width: 1237.5px; margin-top: -45px; gap: 78.75px;}

  .core-image { height: 787.5px;}

  .core-image-title { top: 54px; font-size: 90px;}

  .core-pill { margin-bottom: 28.125px; width: 225px; height: 39.375px;}

  .core-heading { font-size: 45px; gap: 33.75px; margin-bottom: 22.5px;}

  .core-desc { font-size: 13.5px; margin-bottom: 45px;}

  .core-grid { gap: 18px;}

  .core-card { gap: 11.25px; width: 303.75px; padding: 16.875px 16.875px 45px 16.875px;}

  .core-card img { width: 28.125px; height: 28.125px;}

  .core-card h4 { font-size: 14px; margin-bottom: 4.5px;}

  .core-card p { font-size: 12.37px;}
  
  .our-services { padding: 45px 22.5px 45px; margin: 22.5px auto; max-width: 1293.75px;}

  .service-glass-pill { gap: 11.25px; padding: 10.125px 24.75px;}

  .service-glass-pill::before { top: -5.625px; left: 2.25px; width: 42.75px; height: 22.5px;}

  .service-glass-pill::after { bottom: 2.25px; right: 5.625px; width: 27px; height: 7.875px;}

  .services-heading { font-size: 43.875px; margin: 15.75px 0 56.25px;}

  .services-track-manual { gap: 27px;}
  
  .service-box { flex:0 0 calc((50% - 95.625px)/4);max-width:calc((50% - 95.625px)/4);height: 330.75px; padding: 24.75px;}

  .service-box::before { top: -16.875px; left: -20.25px; width: 112.5px; height: 33.75px;}

  .service-box::after { bottom: -16.875px; right: -16.875px; width: 168.75px; height: 39.375px;}

  .service-box img { width: 36px; height: 36px; margin-bottom: 18px;}
  
  .service-box h4 { font-size: 18px; margin-bottom: 11.25px;}
  
  .service-box p { font-size: 14.625px;}

  .nav-btn-service { width: 47.25px; height: 47.25px; margin: 16.875px 22.5px; font-size: 28.125px;}

  .slider-controls.dark { gap: 24.75px; margin-top: 31.5px;}

  .nav-arrow { width: 54px; height: 54px;}

  .arrow-icon { width: 20.25px; height: 20.25px;}

  .slider-dots-black { gap: 16.875px;}

  .slider-dots-black span { font-size: 14.625px;}

  .slider-dots-black span.active { font-size: 22.5px;}

  .service-categories { padding: 22.5px 22.5px;}

  .service-pill { margin-bottom: 15.75px;}

  .service-heading { font-size: 47.25px; margin-bottom: 45px;}

  .service-slider-wrapper { gap: 18px;}
  
  .service-slider { width: calc((294.75px * 4) + (33.75px * 3));}

  .service-track { gap: 33.75px;}

  .service-card { flex: 0 0 calc((100% - (33.75px * 3)) / 4); height: 382.5px;}

  .service-card::after { height: 157.5px;}

  .service-card span { bottom: 27px; left: 5.625px; font-size: 19.125px;}

  .slider-controls { gap: 18px; margin-top: 22.5px;}

  .nav-btn-circle { width: 54px; height: 54px;}

  .nav-btn-circle img { width: 22.5px; height: 22.5px;}

  .slider-dots { gap: 16.875px;}

  .slider-dots span { font-size: 14.625px;}

  .slider-dots span.active { font-size: 22.5px;}

  .founder-section { max-width: 1237.5px; margin: 0 auto 90px; padding: 45px;}

  .founder-pill { margin-bottom: 18px; width: 236.25px; height: 39.375px;}

  .founder-heading { font-size: 45px; margin-bottom: 157.5px;}

  .founder-grid { gap: 67.5px;}

  .founder-image-wrap img { height: 675px;}

  .founder-logo-circle { right: -73.125px; bottom: 45px; width: 135px; height: 135px; font-size: 22.5px;}

  .founder-logo-circle img { width: 123.75px; height: 123.75px;}

  .founder-content { padding: 50.625px 33.75px 78.75px; left: -45px; bottom: 112.5px;}

  .founder-content h3 { font-size: 45px; margin-bottom: 45px;}

  .founder-content p { font-size: 14.625px; margin-bottom: 22.5px;}
  
  .founder-btn { margin-top: 22.5px; margin-bottom: 22.5px;}

  .founder-signature { right: 33.75px; bottom: -168.75px; font-size: 63px;}

  .testimonial-section { max-width: 1293.75px; margin: 0 auto 90px; padding: 50.625px 22.5px;}
  
  .testimonial-pill { margin-bottom: 16.875px;}

  .testimonial-heading { font-size: 45px; margin-bottom: 45px;}

  .testimonial-track { gap: 27px;}

  .testimonial-card { flex:0 0 calc((50% - (33.75px * 3)) / 4); padding: 18px;}
  
  .testimonial-image { margin-bottom: 18px;}

  .testimonial-image img { height: 213.75px;}

  .testimonial-logo { right: 13.5px; bottom: -37.125px; width: 78.75px; height: 78.75px;}

  .testimonial-logo img { width: 56.25px; height: 56.25px;}

  .testimonial-card h4 { font-size: 12.375px; margin-bottom: 4.5px; margin-top: 11.25px;}

  .testimonial-card h5 { font-size: 16.875px; margin-bottom: 11.25px;}

  .testimonial-card p { font-size: 12.375px;}

  .testimonial-controls.premium { gap: 20.25px; margin-top: 31.5px;}

  .testimonial-controls .nav-btn-circle { width: 54px; height: 54px;}

  .testimonial-controls .nav-btn-circle img { width: 18px; height: 18px;}

  .testimonial-dots.premium-dots { gap: 16.875px;}

  .testimonial-dots.premium-dots span { font-size: 14.625px;}

  .testimonial-dots.premium-dots span.active { font-size: 22.5px;}

  .cta-section { max-width: 1012.5px; margin: 90px auto 112.5px; padding: 0 22.5px; text-align: center;}

  .cta-heading { font-size: 45px; margin-bottom: 18px;}

  .cta-desc { max-width: 843.75px; margin: 0 auto 31.5px; font-size: 19.125px;}

  .cta-btn { margin-top: 11.25px;}


  .site-footer { padding: 78.75px 22.5px 45px;}
  .footer-container { max-width: 1125px; gap: 78.75px;}
  .footer-logo { width: 56.25px; margin-bottom: 28.125px;}
  .footer-item { gap: 13.5px; margin-bottom: 15.75px;}
  .footer-item img { margin-top: 4.5px;}
  .footer-item span { font-size: 14.625px;}
  .footer-links-col h4 { margin-bottom: 20.25px;}
  .footer-links-col a { font-size: 18px; margin-bottom: 15.75px;}
  .footer-about-col p { font-size: 16.875px; margin-bottom: 27px; margin-top: 20.25px;}
  .footer-social { gap: 18px;}
  .footer-social img { width: 33.75px; padding: 6.75px;}
  .footer-divider { max-width: 1125px; margin: 45px auto 22.5px; height: 1.125px;}
  .footer-bottom { max-width: 1125px; font-size: 13.5px;}
  .footer-bottom-links { gap: 20.25px;}
  .footer-brand { margin-top: 67.5px; font-size: 281.25px;}

}




/* =========================
   (min-width: 1600px)
========================= */

@media (min-width: 1600px) {

  .hero { margin-bottom: 25px; padding-top: 115px;}

  .row span { width: 55px; height: 55px;}

  .header { padding: 20px 25px 10px;}
  
  .header-container { max-width: 1200px; height: 85px;}
  
  .logo { font-size: 32.5px;}
  
  .nav { gap: 31.5px;}
  
  .nav a { font-size: 17.5px;}

  .hero-text { margin-top: 45px;}
  
  .hero-title-italic { font-size: 56.24px; margin-bottom: 12.5px;}
  
  .hero-title-bold { font-size: 68.73px; margin-top: 6.24px; margin-bottom: 12.5px;}
  
  .hero-actions { gap: 20px; margin-top: 40px; margin-bottom: 43.74px;}

  .btn { gap: 6.24px; height: 56.24px; padding: 7.5px 12.5px 7.5px 7.5px; font-size: 18.75px;}

  .btn-icon { width: 37.5px; height: 37.5px;}

  .btn-icon img { width: 16.24px; height: 16.24px;}

  .hero-stats-bg { margin-top: 6.24px; margin-bottom: 50px; padding: 75px 0 75px;}

  .hero-stats { padding: 0 25px;}

  .stats-grid { gap: 25px; max-width: 1375px; margin: 0 auto 30px; padding: 0 25px;}

  .stat-card { gap: 20px; padding: 27.5px 30px;}

  .stat-card img { width: 55px; height: 55px;}

  .stat-text h3 { font-size: 50px; margin-bottom: 5px;}

  .stat-text p { font-size: 20px;}

  .services-strip { max-width: 1250px; height: 75px;}

  .services-track span { font-size: 17.5px; gap: 16.24px; margin-left: 12.5px;}

  .services-track span::before { width: 25px; height: 25px;}

  .why-cosmolyst { max-width: 1250px; padding: -25px 25px 37.5px;}

  .why-pill { gap: 12.5px; padding: 10px 25px;}

  .why-pill span { font-size: 17.5px;}

  .why-pill img { width: 17.5px; height: 17.5px;}

  .why-pill::before { width: 37.5px; height: 20px; top: -12.5px; left: 15px;}

  .why-pill span::before { width: 37.5px; height: 15px; top: 16.24px; left: -62.5px;}

  .why-pill::after { width: 37.5px; height: 25px; bottom: 62.5px; right: -12.5px;}

  .why-pill span::after { width: 37.5px; height: 17.5px; bottom: -6.24px; right: -62.5px;}

  .why-heading { font-size: 50px; margin-top: 12.5px; margin-bottom: 12.5px;}

  .why-content { max-width: 562.44px;}
  
  .brand-logo { width: 75px; margin-bottom: 12.5px;}

  .why-title { font-size: 40px; margin-bottom: 22.5px;}

  .why-desc { font-size: 18.75px; margin-bottom: 20px;}

  .core-values { padding: 87.5px 0px 37.5px; max-width: 1500px; margin: 0 auto 62.5px;}

  .core-values-container { max-width: 1375px; margin-top: -50px; gap: 87.5px;}

  .core-image { height: 875px;}

  .core-image-title { top: 60px; font-size: 100px;}

  .core-pill { margin-bottom: 31.25px; width: 250px; height: 43.75px;}

  .core-heading { font-size: 50px; gap: 37.5px; margin-bottom: 25px;}

  .core-desc { font-size: 15px; margin-bottom: 50px;}

  .core-grid { gap: 20px;}

  .core-card { gap: 12.5px; width: 337.46px; padding: 18.75px 18.75px 50px 18.75px;}

  .core-card img { width: 31.25px; height: 31.25px;}

  .core-card h4 { font-size: 15.55px; margin-bottom: 5px;}

  .core-card p { font-size: 13.74px;}
  
  .our-services { padding: 50px 25px 50px; margin: 25px auto; max-width: 1437.35px;}

  .service-glass-pill { gap: 12.5px; padding: 11.25px 27.5px;}

  .service-glass-pill::before { top: -6.24px; left: 2.5px; width: 47.5px; height: 25px;}

  .service-glass-pill::after { bottom: 2.5px; right: 6.24px; width: 30px; height: 8.75px;}

  .services-heading { font-size: 48.75px; margin: 17.5px 0 62.5px; }

  .services-track-manual { gap: 30px; }

  .service-box { flex:0 0 calc((50% - 106.23px)/4);max-width:calc((50% - 106.23px)/4);height: 367.5px; padding: 27.5px; }

  .service-box::before { top: -18.75px; left: -22.5px; width: 125px; height: 37.5px; }

  .service-box::after { bottom: -18.75px; right: -18.75px; width: 187.5px; height: 43.75px; }

  .service-box img { width: 40px; height: 40px; margin-bottom: 20px; }

  .service-box h4 { font-size: 20px; margin-bottom: 12.5px; }

  .service-box p { font-size: 16.25px; }

  .nav-btn-service { width: 52.5px; height: 52.5px; margin: 18.75px 25px; font-size: 31.25px; }

  .slider-controls.dark { gap: 27.5px; margin-top: 35px; }

  .nav-arrow { width: 60px; height: 60px; }

  .arrow-icon { width: 22.5px; height: 22.5px; }

  .slider-dots-black { gap: 18.75px; }

  .slider-dots-black span { font-size: 16.25px; }

  .slider-dots-black span.active { font-size: 25px; }

  .service-categories { padding: 25px 25px; }

  .service-pill { margin-bottom: 17.5px; }

  .service-heading { font-size: 52.5px; margin-bottom: 50px; }

  .service-slider-wrapper { gap: 20px; }

  .service-slider { width: calc((327.5px * 4) + (37.5px * 3)); }

  .service-track { gap: 37.5px; }

  .service-card { flex: 0 0 calc((100% - (37.5px * 3)) / 4); height: 425px; }

  .service-card::after { height: 175px; }

  .service-card span { bottom: 30px; left: 6.25px; font-size: 21.25px; }

  .slider-controls { gap: 20px; margin-top: 25px; }

  .nav-btn-circle { width: 60px; height: 60px; }

  .nav-btn-circle img { width: 25px; height: 25px; }

  .slider-dots { gap: 18.75px; }

  .slider-dots span { font-size: 16.25px; }

  .slider-dots span.active { font-size: 25px; }

  .founder-section { max-width: 1375px; margin: 0 auto 100px; padding: 50px; }

  .founder-pill { margin-bottom: 20px; width: 262.5px; height: 43.75px; }

  .founder-heading { font-size: 50px; margin-bottom: 175px; }

  .founder-grid { gap: 75px; }

  .founder-image-wrap img { height: 750px; }

  .founder-logo-circle { right: -81.25px; bottom: 50px; width: 150px; height: 150px; font-size: 25px; }

  .founder-logo-circle img { width: 137.5px; height: 137.5px;}

  .founder-content { padding: 56.25px 37.5px 87.5px; left: -50px; bottom: 125px; }

  .founder-content h3 { font-size: 50px; margin-bottom: 50px; }

  .founder-content p { font-size: 16.25px; margin-bottom: 25px; }

  .founder-btn { margin-top: 25px; margin-bottom: 25px; }

  .founder-signature { right: 37.5px; bottom: -187.5px; font-size: 70px; }

  .testimonial-section { max-width: 1437.5px; margin: 0 auto 100px; padding: 56.25px 25px; }

  .testimonial-pill { margin-bottom: 18.75px; }

  .testimonial-heading { font-size: 50px; margin-bottom: 50px; }

  .testimonial-track { gap: 30px; }

  .testimonial-card { flex:0 0 calc((50% - (37.5px * 3)) / 4); padding: 20px; }

  .testimonial-image { margin-bottom: 20px; }

  .testimonial-image img { height: 237.5px; }

  .testimonial-logo { right: 15px; bottom: -41.25px; width: 87.5px; height: 87.5px; }

  .testimonial-logo img { width: 62.5px; height: 62.5px; }

  .testimonial-card h4 { font-size: 13.75px; margin-bottom: 5px; margin-top: 12.5px; }

  .testimonial-card h5 { font-size: 18.75px; margin-bottom: 12.5px; }

  .testimonial-card p { font-size: 13.75px; }

  .testimonial-controls.premium { gap: 22.5px; margin-top: 35px; }

  .testimonial-controls .nav-btn-circle { width: 60px; height: 60px; }

  .testimonial-controls .nav-btn-circle img { width: 20px; height: 20px; }

  .testimonial-dots.premium-dots { gap: 18.75px; }

  .testimonial-dots.premium-dots span { font-size: 16.25px; }

  .testimonial-dots.premium-dots span.active { font-size: 25px; }

  .cta-section { max-width: 1125px; margin: 100px auto 125px; padding: 0 25px; text-align: center; }

  .cta-heading { font-size: 50px; margin-bottom: 20px; }

  .cta-desc { max-width: 937.5px; margin: 0 auto 35px; font-size: 21.25px; }

  .cta-btn { margin-top: 12.5px; }

 
 
  .site-footer { padding: 87.5px 25px 50px; }
  .footer-container { max-width: 1250px; gap: 87.5px;}
  .footer-logo { width: 62.5px; margin-bottom: 31.25px;}
  .footer-item { gap: 15px; margin-bottom: 17.5px;}
  .footer-item img { margin-top: 5px;}
  .footer-item span { font-size: 16.25px;}
  .footer-links-col h4 { margin-bottom: 22.5px;}
  .footer-links-col a { font-size: 20px; margin-bottom: 17.5px;}
  .footer-about-col p { font-size: 18.75px; margin-bottom: 30px; margin-top: 22.5px;}
  .footer-social { gap: 20px;}
  .footer-social img { width: 37.5px; padding: 7.5px;}
  .footer-divider { max-width: 1250px; margin: 50px auto 25px; height: 1.25px; }
  .footer-bottom { max-width: 1250px; font-size: 15px; }
  .footer-bottom-links { gap: 22.5px; }
  .footer-brand { margin-top: 75px; font-size: 312.5px; }


}





/* =========================
   (min-width: 1920px)
========================= */

@media (min-width: 1920px) {

  .hero { margin-bottom: 30px; padding-top: 138px; }

  .row span { width: 66px; height: 66px; }

  .header { padding: 24px 30px 12px; }

  .header-container { max-width: 1440px; height: 102px; }

  .logo { font-size: 39px; }

  .nav { gap: 38px; }

  .nav a { font-size: 21px; }

  .hero-text { margin-top: 54px; }

  .hero-title-italic { font-size: 67.5px; margin-bottom: 15px; }

  .hero-title-bold { font-size: 82.5px; margin-top: 7.5px; margin-bottom: 15px; }

  .hero-actions { gap: 24px; margin-top: 48px; margin-bottom: 52.5px; }

  .btn { gap: 7.5px; height: 67.5px; padding: 9px 15px 9px 9px; font-size: 22.5px; }

  .btn-icon { width: 45px; height: 45px; }

  .btn-icon img { width: 19.5px; height: 19.5px; }

  .hero-stats-bg { margin-top: 7.5px; margin-bottom: 60px; padding: 90px 0 90px; }

  .hero-stats { padding: 0 30px; }

  .stats-grid { gap: 30px; max-width: 1650px; margin: 0 auto 36px; padding: 0 30px; }

  .stat-card { gap: 24px; padding: 33px 36px; }

  .stat-card img { width: 66px; height: 66px; }

  .stat-text h3 { font-size: 60px; margin-bottom: 6px; }

  .stat-text p { font-size: 24px; }

  .services-strip { max-width: 1500px; height: 90px; }

  .services-track span { font-size: 21px; gap: 19.5px; margin-left: 15px; }

  .services-track span::before { width: 30px; height: 30px; }

  .why-cosmolyst { max-width: 1500px; padding: 0 30px 45px; }

  .why-pill { gap: 15px; padding: 12px 30px; }

  .why-pill span { font-size: 21px; }

  .why-pill img { width: 21px; height: 21px; }

  .why-pill::before { width: 45px; height: 24px; top: -15px; left: 18px; }

  .why-pill span::before { width: 45px; height: 18px; top: 19.5px; left: -75px; }

  .why-pill::after { width: 45px; height: 30px; bottom: 75px; right: -15px; }

  .why-pill span::after { width: 45px; height: 21px; bottom: -7.5px; right: -75px; }

  .why-heading { font-size: 60px; margin-top: 15px; margin-bottom: 15px; }

  .why-content { max-width: 675px; }

  .brand-logo { width: 90px; margin-bottom: 15px; }

  .why-title { font-size: 48px; margin-bottom: 27px; }

  .why-desc { font-size: 22.5px; margin-bottom: 24px; }

  .core-values { padding: 105px 0 45px; max-width: 1800px; margin: 0 auto 75px; }

  .core-values-container { max-width: 1650px; margin-top: -60px; gap: 105px; }

  .core-image { height: 1050px; }

  .core-image-title { top: 72px; font-size: 120px; }

  .core-pill { margin-bottom: 37.5px; width: 300px; height: 52.5px; }

  .core-heading { font-size: 60px; gap: 45px; margin-bottom: 30px; }

  .core-desc { font-size: 18px; margin-bottom: 60px; }

  .core-grid { gap: 24px; }

  .core-card { gap: 15px; width: 405px; padding: 22.5px 22.5px 60px 22.5px; }

  .core-card img { width: 37.5px; height: 37.5px; }

  .core-card h4 { font-size: 18.66px; margin-bottom: 6px; }

  .core-card p { font-size: 16.5px; }

  .our-services { padding: 60px 30px 60px; margin: 30px auto; max-width: 1725px; }

  .service-glass-pill { gap: 15px; padding: 13.5px 33px; }

  .service-glass-pill::before { top: -7.5px; left: 3px; width: 57px; height: 30px; }

  .service-glass-pill::after { bottom: 3px; right: 7.5px; width: 36px; height: 10.5px; }

  .services-heading { font-size: 58.5px; margin: 21px 0 75px; }

  .services-track-manual { gap: 36px; }

  .service-box { flex:0 0 calc((50% - 127.5px)/4);max-width:calc((50% - 127.5px)/4);height: 441px; padding: 33px; }

  .service-box::before { top: -22.5px; left: -27px; width: 150px; height: 45px; }

  .service-box::after { bottom: -22.5px; right: -22.5px; width: 225px; height: 52.5px; }

  .service-box img { width: 48px; height: 48px; margin-bottom: 24px; }

  .service-box h4 { font-size: 24px; margin-bottom: 15px; }

  .service-box p { font-size: 19.5px; }

  .nav-btn-service { width: 63px; height: 63px; margin: 22.5px 30px; font-size: 37.5px; }

  .slider-controls.dark { gap: 33px; margin-top: 42px; }

  .nav-arrow { width: 72px; height: 72px; }

  .arrow-icon { width: 27px; height: 27px; }

  .slider-dots-black { gap: 22.5px; }

  .slider-dots-black span { font-size: 19.5px; }

  .slider-dots-black span.active { font-size: 30px; }

  .service-categories { padding: 30px 30px; }

  .service-pill { margin-bottom: 21px; }

  .service-heading { font-size: 63px; margin-bottom: 60px; }

  .service-slider-wrapper { gap: 24px; }

  .service-slider { width: calc((393px * 4) + (45px * 3)); }

  .service-track { gap: 45px; }

  .service-card { flex: 0 0 calc((100% - (45px * 3)) / 4); height: 510px; }

  .service-card::after { height: 210px; }

  .service-card span { bottom: 36px; left: 7.5px; font-size: 25.5px; }

  .slider-controls { gap: 24px; margin-top: 30px; }

  .nav-btn-circle { width: 72px; height: 72px; }

  .nav-btn-circle img { width: 30px; height: 30px; }

  .slider-dots { gap: 22.5px; }

  .slider-dots span { font-size: 19.5px; }

  .slider-dots span.active { font-size: 30px; }

  .founder-section { max-width: 1650px; margin: 0 auto 120px; padding: 60px; }

  .founder-pill { margin-bottom: 24px; width: 315px; height: 52.5px; }

  .founder-heading { font-size: 60px; margin-bottom: 210px; }

  .founder-grid { gap: 90px; }

  .founder-image-wrap img { height: 900px; }

  .founder-logo-circle { right: -97.5px; bottom: 60px; width: 180px; height: 180px; font-size: 30px; }

  .founder-logo-circle img { width: 165px; height: 165px;}

  .founder-content { padding: 67.5px 45px 105px; left: -60px; bottom: 150px; }

  .founder-content h3 { font-size: 60px; margin-bottom: 60px; }

  .founder-content p { font-size: 19.5px; margin-bottom: 30px; }

  .founder-btn { margin-top: 30px; margin-bottom: 30px; }

  .founder-signature { right: 45px; bottom: -225px; font-size: 84px; }

  .testimonial-section { max-width: 1725px; margin: 0 auto 120px; padding: 67.5px 30px; }

  .testimonial-pill { margin-bottom: 22.5px; }

  .testimonial-heading { font-size: 60px; margin-bottom: 60px; }

  .testimonial-track { gap: 36px; }

  .testimonial-card { flex:0 0 calc((50% - (45px * 3)) / 4); padding: 24px; }

  .testimonial-image { margin-bottom: 24px; }

  .testimonial-image img { height: 285px; }

  .testimonial-logo { right: 18px; bottom: -49.5px; width: 105px; height: 105px; }

  .testimonial-logo img { width: 75px; height: 75px; }

  .testimonial-card h4 { font-size: 16.5px; margin-bottom: 6px; margin-top: 15px; }

  .testimonial-card h5 { font-size: 22.5px; margin-bottom: 15px; }

  .testimonial-card p { font-size: 16.5px; }

  .testimonial-controls.premium { gap: 27px; margin-top: 42px; }

  .testimonial-controls .nav-btn-circle { width: 72px; height: 72px; }

  .testimonial-controls .nav-btn-circle img { width: 24px; height: 24px; }

  .testimonial-dots.premium-dots { gap: 22.5px; }

  .testimonial-dots.premium-dots span { font-size: 19.5px; }

  .testimonial-dots.premium-dots span.active { font-size: 30px; }

  .cta-section { max-width: 1350px; margin: 120px auto 150px; padding: 0 30px; text-align: center; }

  .cta-heading { font-size: 60px; margin-bottom: 24px; }

  .cta-desc { max-width: 1125px; margin: 0 auto 42px; font-size: 25.5px; }

  .cta-btn { margin-top: 15px; }

 
 
  .site-footer { padding: 105px 30px 60px; }
  .footer-container { max-width: 1500px; gap: 105px;}
  .footer-logo { width: 75px; margin-bottom: 37.5px;}
  .footer-item { gap: 18px; margin-bottom: 21px;}
  .footer-item img { margin-top: 6px;}
  .footer-item span { font-size: 19.5px;}
  .footer-links-col h4 { margin-bottom: 27px;}
  .footer-links-col a { font-size: 24px; margin-bottom: 21px;}
  .footer-about-col p { font-size: 22.5px; margin-bottom: 36px; margin-top: 27px;}
  .footer-social { gap: 24px;}
  .footer-social img { width: 45px; padding: 9px;}
  .footer-divider { max-width: 1500px; margin: 60px auto 30px; height: 1.5px; }
  .footer-bottom { max-width: 1500px; font-size: 18px; }
  .footer-bottom-links { gap: 27px; }
  .footer-brand { margin-top: 90px; font-size: 375px; }


}






/* =========================
   (min-width: 2560px)
========================= */

@media (min-width: 2560px) {

  .hero { margin-bottom: 40px; padding-top: 184px; }

  .row span { width: 88px; height: 88px; }

  .header { padding: 32px 40px 16px; }

  .header-container { max-width: 1920px; height: 136px; }

  .logo { font-size: 52px; }

  .nav { gap: 51px; }

  .nav a { font-size: 28px; }

  .hero-text { margin-top: 72px; }

  .hero-title-italic { font-size: 90px; margin-bottom: 20px; }

  .hero-title-bold { font-size: 110px; margin-top: 10px; margin-bottom: 20px; }

  .hero-actions { gap: 32px; margin-top: 64px; margin-bottom: 70px; }

  .btn { gap: 10px; height: 90px; padding: 12px 20px 12px 12px; font-size: 30px; }

  .btn-icon { width: 60px; height: 60px; }

  .btn-icon img { width: 26px; height: 26px; }

  .hero-stats-bg { margin-top: 10px; margin-bottom: 80px; padding: 120px 0 120px; }

  .hero-stats { padding: 0 40px; }

  .stats-grid { gap: 40px; max-width: 2200px; margin: 0 auto 48px; padding: 0 40px; }

  .stat-card { gap: 32px; padding: 44px 48px; }

  .stat-card img { width: 88px; height: 88px; }

  .stat-text h3 { font-size: 80px; margin-bottom: 8px; }

  .stat-text p { font-size: 32px; }

  .services-strip { max-width: 2000px; height: 120px; }

  .services-track span { font-size: 28px; gap: 26px; margin-left: 20px; }

  .services-track span::before { width: 40px; height: 40px; }

  .why-cosmolyst { max-width: 2000px; padding: 0 40px 60px; }

  .why-pill { gap: 20px; padding: 16px 40px; }

  .why-pill span { font-size: 28px; }

  .why-pill img { width: 28px; height: 28px; }

  .why-pill::before { width: 60px; height: 32px; top: -20px; left: 24px; }

  .why-pill span::before { width: 60px; height: 24px; top: 26px; left: -100px; }

  .why-pill::after { width: 60px; height: 40px; bottom: 100px; right: -20px; }

  .why-pill span::after { width: 60px; height: 28px; bottom: -10px; right: -100px; }

  .why-heading { font-size: 80px; margin-top: 20px; margin-bottom: 20px; }

  .why-content { max-width: 900px; }

  .brand-logo { width: 120px; margin-bottom: 20px; }

  .why-title { font-size: 64px; margin-bottom: 36px; }

  .why-desc { font-size: 30px; margin-bottom: 32px; }

  .core-values { padding: 140px 0 60px; max-width: 2400px; margin: 0 auto 100px; }

  .core-values-container { max-width: 2200px; margin-top: -80px; gap: 140px; }

  .core-image { height: 1400px; }

  .core-image-title { top: 96px; font-size: 160px; }

  .core-pill { margin-bottom: 50px; width: 400px; height: 70px; }

  .core-heading { font-size: 80px; gap: 60px; margin-bottom: 40px; }

  .core-desc { font-size: 24px; margin-bottom: 80px; }

  .core-grid { gap: 32px; }

  .core-card { gap: 20px; width: 540px; padding: 30px 30px 80px 30px; }

  .core-card img { width: 50px; height: 50px; }

  .core-card h4 { font-size: 24.87px; margin-bottom: 8px; }

  .core-card p { font-size: 22px; }

  .our-services { padding: 80px 40px 80px; margin: 40px auto; max-width: 2300px; }

  .service-glass-pill { gap: 20px; padding: 18px 44px; }

  .service-glass-pill::before { top: -10px; left: 4px; width: 76px; height: 40px; }

  .service-glass-pill::after { bottom: 4px; right: 10px; width: 48px; height: 14px; }

  .services-heading { font-size: 78px; margin: 28px 0 100px; }

  .services-track-manual { gap: 48px; }

  .service-box { flex:0 0 calc((50% - 170px)/4);max-width:calc((50% - 170px)/4);height: 588px; padding: 44px; }

  .service-box::before { top: -30px; left: -36px; width: 200px; height: 60px; }

  .service-box::after { bottom: -30px; right: -30px; width: 300px; height: 70px; }

  .service-box img { width: 64px; height: 64px; margin-bottom: 32px; }

  .service-box h4 { font-size: 32px; margin-bottom: 20px; }

  .service-box p { font-size: 26px; }

  .nav-btn-service { width: 84px; height: 84px; margin: 30px 40px; font-size: 50px; }

  .slider-controls.dark { gap: 44px; margin-top: 56px; }

  .nav-arrow { width: 96px; height: 96px; }

  .arrow-icon { width: 36px; height: 36px; }

  .slider-dots-black { gap: 30px; }

  .slider-dots-black span { font-size: 26px; }

  .slider-dots-black span.active { font-size: 40px; }

  .service-categories { padding: 40px 40px; }

  .service-pill { margin-bottom: 28px; }

  .service-heading { font-size: 84px; margin-bottom: 80px; }

  .service-slider-wrapper { gap: 32px; }

  .service-slider { width: calc((524px * 4) + (60px * 3)); }

  .service-track { gap: 60px; }

  .service-card { flex: 0 0 calc((100% - (60px * 3)) / 4); height: 680px; }

  .service-card::after { height: 280px; }

  .service-card span { bottom: 48px; left: 10px; font-size: 34px; }

  .slider-controls { gap: 32px; margin-top: 40px; }

  .nav-btn-circle { width: 96px; height: 96px; }

  .nav-btn-circle img { width: 40px; height: 40px; }

  .slider-dots { gap: 30px; }

  .slider-dots span { font-size: 26px; }

  .slider-dots span.active { font-size: 40px; }

  .founder-section { max-width: 2200px; margin: 0 auto 160px; padding: 80px; }

  .founder-pill { margin-bottom: 32px; width: 420px; height: 70px; }

  .founder-heading { font-size: 80px; margin-bottom: 280px; }

  .founder-grid { gap: 120px; }

  .founder-image-wrap img { height: 1200px; }

  .founder-logo-circle { right: -130px; bottom: 80px; width: 240px; height: 240px; font-size: 40px; }

  .founder-logo-circle img { width: 220px; height: 220px;}

  .founder-content { padding: 90px 60px 140px; left: -80px; bottom: 200px; }

  .founder-content h3 { font-size: 80px; margin-bottom: 80px; }

  .founder-content p { font-size: 26px; margin-bottom: 40px; }

  .founder-btn { margin-top: 40px; margin-bottom: 40px; }

  .founder-signature { right: 60px; bottom: -300px; font-size: 112px; }

  .testimonial-section { max-width: 2300px; margin: 0 auto 160px; padding: 90px 40px; }

  .testimonial-pill { margin-bottom: 30px; }

  .testimonial-heading { font-size: 80px; margin-bottom: 80px; }

  .testimonial-track { gap: 48px; }

  .testimonial-card { flex:0 0 calc((50% - (60px * 3)) / 4); padding: 32px; }

  .testimonial-image { margin-bottom: 32px; }

  .testimonial-image img { height: 380px; }

  .testimonial-logo { right: 24px; bottom: -66px; width: 140px; height: 140px; }

  .testimonial-logo img { width: 100px; height: 100px; }

  .testimonial-card h4 { font-size: 22px; margin-bottom: 8px; margin-top: 20px; }

  .testimonial-card h5 { font-size: 30px; margin-bottom: 20px; }

  .testimonial-card p { font-size: 22px; }

  .testimonial-controls.premium { gap: 36px; margin-top: 56px; }

  .testimonial-controls .nav-btn-circle { width: 96px; height: 96px; }

  .testimonial-controls .nav-btn-circle img { width: 32px; height: 32px; }

  .testimonial-dots.premium-dots { gap: 30px; }

  .testimonial-dots.premium-dots span { font-size: 26px; }

  .testimonial-dots.premium-dots span.active { font-size: 40px; }

  .cta-section { max-width: 1800px; margin: 160px auto 200px; padding: 0 40px; text-align: center; }

  .cta-heading { font-size: 80px; margin-bottom: 32px; }

  .cta-desc { max-width: 1500px; margin: 0 auto 56px; font-size: 34px; }

  .cta-btn { margin-top: 20px; }

  
  
  .site-footer { padding: 140px 40px 80px; }
  .footer-container { max-width: 2000px; gap: 140px;}
  .footer-logo { width: 100px; margin-bottom: 50px;}
  .footer-item { gap: 24px; margin-bottom: 28px;}
  .footer-item img { margin-top: 8px;}
  .footer-item span { font-size: 26px;}
  .footer-links-col h4 { margin-bottom: 36px;}
  .footer-links-col a { font-size: 32px; margin-bottom: 28px;}
  .footer-about-col p { font-size: 30px; margin-bottom: 48px; margin-top: 36px;}
  .footer-social { gap: 32px;}
  .footer-social img { width: 60px; padding: 12px;}
  .footer-divider { max-width: 2000px; margin: 80px auto 40px; height: 2px; }
  .footer-bottom { max-width: 2000px; font-size: 24px; }
  .footer-bottom-links { gap: 36px; }
  .footer-brand { margin-top: 120px; font-size: 500px; }


}






























/* =========================
   MOBILE VIEW
========================= */
@media (max-width:480px){

  body{ overflow-x:hidden;}

  .hero{ padding-top:90px; align-items:center;}

  .hero-bg{ pointer-events:none;}

  .grid{ opacity:0.35;}

  .grid-left{ left:-20px;}

  .grid-right{ right:-20px;}

  .row span{ width:25px; height:25px; border-radius:6px;}

  .header{ position:fixed; top:0; left:0; width:100%; z-index:9999; display:flex; justify-content:center; padding:12px 0;}

  .header-container{ width:92%; max-width:420px; height:56px; display:flex; align-items:center; justify-content:space-between; margin:0 auto;background: rgba(255, 255, 255, 0.65);backdrop-filter: blur(8px);-webkit-backdrop-filter: blur(12px);border-radius: 999px;border: 0.5px solid rgba(0, 0, 0, 0.05);box-shadow:0 24px 60px rgba(0, 0, 0, 0.055),inset 0 1px 0 rgba(255, 255, 255, 0.32);}

  .logo{ font-size:20px;}

  .menu-toggle{ display:block; font-size:22px; color: #000; background:none; border:none; cursor:pointer;}

  .nav{ display:none; position:absolute; top:70px; left:50%; transform:translateX(-50%); width:92%; max-width:420px; background:#fff; border-radius:16px; padding:18px; flex-direction:column; gap:16px; box-shadow:0 20px 40px rgba(0,0,0,0.08);}

  .nav.show{ display:flex;}

  .nav a{ font-size:15px; text-align:center;}

  .hero-text{ width:92%; max-width:420px; margin:24px auto 0; text-align:center;}
  
  .hero-title-italic{ font-size:22px; line-height:1.3; margin-bottom:8px;}

  .hero-title-bold{ font-size:26px; line-height:1.3; margin-bottom:6px;}
  
  .hero-actions{ gap:12px; margin-top:20px; margin-bottom:24px; justify-content:center;}
  
  .btn{ height:35px; font-size:13px; padding:6px 12px 6px 6px;}
  
  .btn-icon{ width:24px; height:24px;}

  .btn-icon img{ width:10px; height:10px;}

  .btn-secondary{ box-shadow: 0 6px 14px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.25);}

  .btn-secondary .btn-icon{ box-shadow: 0 4px 10px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.25);}

  .hero-stats-bg{margin:0 0 24px;padding:26px 10px;border-radius:12px;box-shadow:none;}

  .stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:0;}
  
  .stat-card{height: 100px;background: rgba(237, 242, 247, 1); box-shadow:none; padding:12px; border-radius:12px; align-items:center; justify-content:center; text-align:center;}
  
  .stat-card img{width:30px; height:30px;}
  
  .stat-text h3{font-size:25px;}
  
  .stat-text p{font-size:14px;}
  
  .services-strip{height:40px; border-radius:10px;}
  
  .services-track span{font-size:11px; gap:6px; margin-left:6px;}
  
  .services-track span::before{width:12px; height:12px;}

  .why-cosmolyst{max-width:92%; margin:0 auto 30px; padding:0 14px 20px;}

  .why-pill{width:fit-content;gap:6px; padding:6px 14px; border-radius:999px;backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);box-shadow:0 1px 4px rgba(0,0,0,.06),inset 0 1px 0 rgba(255,255,255,.9);}
  
  .why-pill span{font-size:13px;}
  
  .why-pill img{width:12px;height:12px;}
  
  .why-pill::before{width:18px;height:10px;top:-6px;left:8px;box-shadow:0 0 0 1px rgba(0,0,0,.14),0 1px 4px rgba(0,0,0,.10);filter:blur(1px);}
  
  .why-pill::after{width:18px;height:12px;bottom:28px;right:-6px;box-shadow:0 0 0 1px rgba(0,0,0,.08),0 -1px 4px rgba(0,0,0,.08);filter:blur(1px);}
  
  .why-pill span::before{width:18px;height:8px;top:8px;left:-28px;box-shadow:0 0 0 1px rgba(0,0,0,.08),0 1px 3px rgba(0,0,0,.08);filter:blur(1px);}
  
  .why-pill span::after{width:18px;height:8px;bottom:-4px;right:-28px;box-shadow:0 0 0 1px rgba(0,0,0,.08),0 1px 3px rgba(0,0,0,.08);filter:blur(1px);}

  .why-heading{font-size:22px;line-height:1.3;margin:6px 0;}
  
  .why-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:center}

  .why-content{display:contents}
  
  .brand-logo{grid-column:1;width:34px;margin-top:10px}

  .why-title{grid-column:1;font-size:18px;line-height:1.35;margin-bottom:0}
  
  .why-image{grid-column:2;grid-row:1/3;display:flex;justify-content:center;align-items:center}
  
  .why-image img{width:80%;max-width:150px;height:auto;border-radius:14px}
  
  .why-desc{grid-column:1/3;margin-top:2px;margin-bottom:1px;text-align:justify;font-size:12px;line-height:1.6}  

  .why-desc:last-child{margin-bottom:0}

  .core-values{padding:20px 14px 20px;border-radius:14px;margin:0 auto 30px;}

  .core-values-container{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:0;padding:0 4px;align-items:center}
  
  .core-pill{grid-column:1/3;justify-self:center;width:fit-content;height:30px;margin-bottom:5px}
  
  .core-heading{grid-column:1/3;text-align:center;font-size:26px;line-height:1.35;margin-bottom:3px}
  
  .core-desc{grid-column:2;grid-row:3;text-align:justify;font-size:12px;line-height:1.6;margin-bottom:0;}
  
  .core-image{grid-column:1;grid-row:3;justify-self:center;width:100%;max-width:180px;height:200px}
  .core-image img{width:80%;height:100%;object-fit:cover;border-radius:14px}
  
  .core-content{display:contents}
  
  .core-grid{grid-column:1/3;margin-top:16px;display:grid;grid-template-columns:1fr;gap:12px}
  
  .core-card{width:100%;padding:14px;border-radius:12px;box-shadow:0 6px 16px rgba(0,0,0,.06),inset 0 1px 0 rgba(255,255,255,.9);text-align:left}
  
  .core-card:hover{transform:none;box-shadow:0 6px 16px rgba(0,0,0,.06),inset 0 1px 0 rgba(255,255,255,.9);}
  
  .core-card img{width:20px;height:20px}

  .core-card h4{font-size:13px;margin-bottom:3px}
  
  .core-card p{font-size:12px;line-height:1.5}

  .our-services{padding:26px 14px;border-radius:14px;margin:16px auto;}
  
  .service-glass-pill{width: fit-content; gap:6px;padding:6px 14px;border-radius:999px;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);box-shadow:0 6px 18px rgba(0,0,0,.18);}
  
  .service-glass-pill span{font-size:12px;}
  
  .service-glass-pill::before{width:22px;height:12px;top:-4px;left:2px;}
  
  .service-glass-pill::after{width:14px;height:5px;bottom:2px;right:4px;}
  
  .services-heading{font-size:24px;margin:12px 0 28px;line-height:1.3;}
  
  .services-track-manual{gap:16px;}
  
  .service-box{flex:0 0 calc((25% - 28px)/2);max-width:calc((25% - 28px)/2);height:auto;min-height:220px;padding:16px;border-radius:14px;box-shadow:0 10px 22px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.2);}
  
  .service-box::before{width:60px;height:18px;top:-10px;left:-10px;}
  
  .service-box::after{width:80px;height:20px;bottom:-10px;right:-10px;}
  
  .service-box img{width:26px;height:26px;margin-bottom:10px;}
  
  .service-box h4{font-size:15px;margin-bottom:6px;}
  
  .service-box p{font-size:12px;line-height:1.5;}
  
  .nav-btn-service{width:34px;height:34px;font-size:18px;margin:10px;}
  
  .slider-controls.dark{gap:12px;margin-top:16px;}
  
  .nav-arrow{width:38px;height:38px;}
  
  .arrow-icon{width:14px;height:14px;}
  
  .slider-dots-black span{font-size:11px;}
  
  .slider-dots-black span.active{font-size:16px;}

  .service-categories{padding:16px 14px;}
  
  .service-pill{width:fit-content;margin-bottom:10px;}
  
  .service-heading{font-size:24px;line-height:1.3;margin-bottom:24px;}
  
  .service-slider-wrapper{gap:10px;}
  
  .service-slider{width:100%;overflow:hidden;}
  
  .service-track{gap:14px;}
  
  .service-card{flex:0 0 calc((100% - 14px)/2);max-width:calc((100% - 14px)/2);height:240px;border-radius:12px;}
  
  .service-card::after{height:100px;}
  
  .service-card span{bottom:14px;font-size:14px;}
  
  .slider-controls{gap:10px;margin-top:14px;}
  
  .nav-btn-circle{width:38px;height:38px;}
  
  .nav-btn-circle img{width:16px;height:16px;}
  
  .slider-dots span{font-size:11px;}
  
  .slider-dots span.active{font-size:16px;}

  .founder-section{max-width:100%;padding:20px 14px;margin:0 auto 40px;}

  .founder-pill{width:auto;height:auto;margin-bottom:12px;}
  
  .founder-heading{font-size:24px;line-height:1.3;margin-bottom:28px;}
  
  .founder-grid{grid-template-columns:1fr;gap:22px;text-align:center;}
  
  .founder-image-wrap{width:100%;position:relative;}
  
  .founder-image-wrap img{width:100%;height:auto;border-radius:12px;}
  
  .founder-logo-circle{right:50%;bottom:-40px;transform:translateX(50%);width:80px;height:80px;}
  
  .founder-logo-circle img{width:70px;height:70px;}
  
  .founder-content{left:0;bottom:0;padding:55px 18px 40px;border-radius:12px;text-align:left;}
  
  .founder-content h3{font-size:26px;margin-bottom:18px;text-align:center;}
  
  .founder-content p{font-size:13px;line-height:1.7;margin-bottom:14px;text-align:justify;}
  
  .founder-signature{position:relative;right:auto;bottom:auto;margin-top:18px;font-size:36px;transform:rotate(-8deg);text-align:right;}  

  .testimonial-section{margin:0 auto 40px;padding:28px 14px;border-radius:14px;}
  
  .testimonial-heading{font-size:24px;line-height:1.3;margin-bottom:24px;}
  
  .testimonial-track{gap:14px;}
  
  .testimonial-card{flex:0 0 calc((25% - 25px) / 2);padding:12px;border-radius:12px;}
  
  .testimonial-image img{height:160px;border-radius:10px;}
  
  .testimonial-logo{width:50px;height:50px;right:10px;bottom:-24px;box-shadow:0 6px 16px rgba(0,0,0,.18);}
  
  .testimonial-logo img{width:32px;height:32px;}
  
  .testimonial-card h4{font-size:9.5px;margin-top:8px;}
  
  .testimonial-card h5{font-size:13px;margin-bottom:6px;}
  
  .testimonial-card p{font-size:11px;line-height:1.6;}
  
  .testimonial-controls.premium{gap:12px;margin-top:18px;}
  
  .testimonial-controls .nav-btn-circle{width:38px;height:38px;}
  
  .testimonial-controls .nav-btn-circle img{width:14px;height:14px;}
  
  .testimonial-dots.premium-dots span{font-size:11px;}
  
  .testimonial-dots.premium-dots span.active{font-size:16px;}

  .cta-section{max-width:100%;margin:40px auto 60px;padding:0 14px;}
  
  .cta-heading{font-size:24px;line-height:1.3;margin-bottom:12px;}
  
  .cta-desc{max-width:100%;font-size:14px;line-height:1.6;margin:0 auto 20px;}
  
  .cta-btn{margin-top:8px;box-shadow:0 8px 18px rgba(0,0,0,.12),0 3px 5px rgba(0,0,0,.05),inset 0 1px 0 rgba(255,255,255,.9);}
  
  .cta-btn:hover{transform:none;}

  .site-footer{padding:40px 14px 24px;}
  
  .footer-container{grid-template-columns:1fr;gap:30px;text-align:center;}
  
  .footer-container .footer-col:nth-child(2){justify-self:center;}
  
  .footer-logo{width:42px;margin:0 auto 18px;}
  
  .footer-item{justify-content:center;text-align:center;}
  
  .footer-item span{font-size:12px;line-height:1.5;}
  
  .footer-links-col a{font-size:14px;margin-bottom:10px;}
  
  .footer-about-col p{font-size:13px;margin:10px 0 18px;}
  
  .footer-social{justify-content:center;gap:12px;}
  
  .footer-social img{width:26px;padding:5px;}
  
  .footer-divider{margin:24px auto 16px;}
  
  .footer-bottom{flex-direction:column;gap:10px;font-size:11px;text-align:center;}
  
  .footer-bottom-links{gap:12px;flex-wrap:wrap;justify-content:center;}
  
  .footer-brand{margin-top:30px;font-size:80px;}
  
  .wave-text span{animation-duration:5s;}

}


