/* Basic Resets and Variables */
:root {
  --primary-color: #007bff; /* A blue similar to the button */
  --text-color: #333;
  --highlight-color: #008080; /* A shade of teal for the highlight */
  --background-color: #f9f9f9;
  --button-bg-color: #008080; /* Teal for the button background */
  --button-text-color: #fff;
  --border-radius: 8px;
  --spacing-large: 40px;
  --spacing-medium: 20px;
  --spacing-small: 10px;

  /* for the navbar css */
  --navbar-bg-color: #002b4d; /* Dark blue from the image */
  --navbar-text-color: #fff;
  --navbar-hover-color: #004d80; /* Slightly lighter blue for hover */
  --dropdown-bg-color: #fff;
  --dropdown-text-color: #333;
  --dropdown-hover-bg: #f0f0f0;
  --navbar-btn-border-color: #008080; /* Teal for navbar button border */
  --navbar-btn-text-color: #008080; /* Teal for navbar button text */

  /* ... existing variables ... */
  --about-bg-color: #f9f9f9; /* Light background similar to the image */
  --about-heading-color: #002b4d; /* Dark blue for heading */
  --about-text-color: #333; /* Dark gray for paragraph text */
  --about-button-bg: #4aa0ab; /* Teal from the button in the image */

  --ims-radius: 8px;
  --ims-shadow: 0 3px 12px rgb(0 0 0 / 0.08);
  --ims-max-width: 1200px;
  --ims-heading-clr: #023047;
  --ims-accent: #3d9dad;
  /* ... existing variables ... */
  --brands-bg-color: #004d80; /* Dark blue from the image background */
  --brands-heading-color: #fff;
  --logo-gap: 40px; /* Space between logos */
  --marquee-speed: 60s; /* Default animation duration */
  --marquee-height: 120px; /* Height of the marquee row */
  --blur-width: 15%; /* Width of the blur overlay */
}

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

/* collapsed by default */
#readMoreText.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 7; /* number of lines to show initially */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* optional style for the button */
.read-more-btn {
  color: #008080;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  margin-top: 1px;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  padding: 0; /* Remove padding from body to allow hero section to go full width */
  overflow-x: hidden; /* Prevent horizontal scrollbar on small screens */
}
:root {
  /* tweak these any time */
  --nav-bg: rgb(20 197 186);
  --nav-text: #ffffff;
  --nav-hover: #ffe8e8;
  --btn-bg: #f5f5f5;
  --btn-text: rgb(20 197 186);
}

.custom-btn {
  background-color: rgb(220, 232, 231) !important;
  color: #14c5ba !important;
  margin-top: 0.2rem !important;
  font-weight: 600 !important;
  padding: 4px 14px !important;
  margin-right: 9px;
}

/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.4;
}

.navbar-custom {
  background-color: rgb(20, 197, 186) !important;
}

/* ========== NAVBAR ========== */
.navbar:not(.landing-site-navbar) {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  background-color: rgb(20, 197, 186);
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
}
.navbar-container {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.navbar-brand img {
  height: 36px;
}

/* links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links li a {
  color: var(--nav-text);
  padding: 8px 8px;
  font-weight: 500;
  transition: color 0.25s;
}
.nav-links li a:hover {
  color: var(--nav-hover);
}

/* contact button */
.navbar-btn-brand {
  background: var(--btn-bg);
  color: var(--btn-text) !important;
  padding: 10px 30px !important;
  border-radius: 50px;
  transition:
    background 0.25s,
    transform 0.15s;
}
.navbar-btn-brand:hover {
  transform: translateY(-2px);
}

/* ========== DROPDOWN (base) ========== */
.dropdown {
  position: relative;
}
.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.3s;
}

.dropdown-content {
  position: absolute;
  left: 50%;
  top: calc(100% + 15px);
  transform: translateX(-50%);
  background: #f4f5f5;
  color: #000;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.dropdown-content p {
  font-weight: 600;
  margin-bottom: 2px;
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-content:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

/* ========== HAMBURGER ========== */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  color: var(--nav-text);
  cursor: pointer;
}

/* ========== MOBILE (≤576 px) ========== */
@media (max-width: 576px) {
  .menu-icon {
    display: block;
  }

  /* collapse nav list */
  .nav-links {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: var(--nav-bg);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease-out;
  }
  .nav-links.active {
    max-height: 600px;
  }

  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 12px 25px;
  }

  /* override dropdown for mobile */
  .dropdown-content {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 25px 5px;
    background: #eff0f0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.35s ease-out;
  }
  .dropdown.open .dropdown-content {
    max-height: 400px;
  }
  .dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  /* keep arrow neutral on hover (mobile tap handles it) */
  .dropdown:hover .dropdown-arrow {
    transform: none;
  }
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

/* Hero Section Styling */
.hero-section {
  display: flex;

  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  align-items: center;
  justify-content: center; /* Changed to center for overall alignment */
  width: 100vw; /* Full viewport width */
  min-height: 70vh;
  background-color: #fff; /* White background as in the image */
  padding: var(--spacing-large); /* Add padding to the section */
  box-sizing: border-box; /* Include padding in the width/height */
  position: relative; /* For absolute positioning if needed later */
}

/* We need a new container inside hero-section to give it the card-like appearance */
.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  max-width: 1200px; /* Max width of the content container */
  width: 100%;
  background-color: #fff; /* Background for the card */
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-large);
  gap: var(--spacing-large);
}

.hero-content {
  flex: 1; /* Allows content to take available space */
  min-width: 300px; /* Minimum width before wrapping */
  padding-right: var(--spacing-medium);
  text-align: left; /* Default text alignment */
}

.hero-content h1 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: var(--spacing-small);
  color: var(--text-color);
  line-height: 1.2;
}

.hero-content h1 .highlight {
  color: var(--highlight-color);
}

.hero-content p {
  font-size: 1.1em;
  margin-bottom: var(--spacing-medium);
  color: #555;
}

.hero-buttons {
  margin-top: var(--spacing-medium);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px; /* Rounded button as per image */
  text-decoration: none;
  font-weight: bold;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn.brand {
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
  border: 2px solid var(--button-bg-color);
}

.btn.brand:hover {
  background-color: #006666; /* Slightly darker teal on hover */
  transform: translateY(-2px);
}

.hero-images {
  flex: 1; /* Allows image to take available space */
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px; /* Minimum width before wrapping */
}

.hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column; /* Stack items vertically on medium screens */
    text-align: center;
  }
  .hero-section {
    padding: var(--spacing-medium);
    margin-top: 4rem; /* Space from the top for fixed navbar */
  }

  .hero-content {
    margin-bottom: var(--spacing-large); /* Add space below content */
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: 3rem;
    padding: var(--spacing-medium);
  }
  .hero-wrapper {
    padding: var(--spacing-medium);
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  .hero-section {
    margin-top: 5rem;
    padding: var(--spacing-small);
  }
  .hero-wrapper {
    padding: var(--spacing-small);
    gap: var(--spacing-medium);
  }

  .hero-content h1 {
    font-size: 1.8em;
  }

  .hero-content p {
    font-size: 0.9em;
  }
}

.about-section {
  background-color: var(--about-bg-color);
  padding: 40px 20px; /* Top/bottom padding for section */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%; /* Ensure it doesn't overflow */
  margin-top: 20px; /* Optional: space from the previous section if needed, or controlled by parent flex/grid */
}

.about-section .heading {
  font-size: 2.8em; /* Adjusted based on image */
  color: var(--about-heading-color);
  margin-bottom: 30px;
  font-weight: bold;
  max-width: 800px; /* Constrain heading width if it gets too wide */
  line-height: 1.2;
}

.about-section .para {
  font-size: 1.1em;
  color: var(--about-text-color);
  line-height: 1.8; /* Increased line-height for readability */
  max-width: 1200px; /* Max width for paragraph content */
  margin-bottom: 40px; /* Space between paragraph and button */
  padding: 0 15px; /* Slight horizontal padding for smaller screens */
}

/* Reusing existing .btn and .brand classes for the button */
/* Adjusting the specific button style for this section if it differs from the hero section */
.about-button .btn.brand {
  background-color: var(
    --about-button-bg
  ); /* Use the specific teal for this button */
  border: 2px solid var(--about-button-bg);
  color: #fff;
  padding: 15px 35px; /* Slightly larger padding for this button */
  font-size: 1.1em;
  border-radius: 50px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    border-color 0.3s ease;
}

.about-button .btn.brand:hover {
  background-color: #3f8f99; /* Slightly darker teal on hover */
  border-color: #3f8f99;
  transform: translateY(-2px);
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-section .heading {
    font-size: 2.2em;
    margin-bottom: 25px;
  }

  .about-section .para {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .about-button .btn.brand {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 10px;
  }

  .about-section .heading {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .about-section .para {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 30px 10px;
  }
  .about-section .heading {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .about-section .para {
    text-align: center;
    font-size: 0.9em;
    line-height: 1.6;
  }
  .about-button .btn.brand {
    padding: 10px 25px;
    font-size: 0.9em;
  }
}

.brands-wrapper {
  position: relative;
  overflow: hidden;
}

.brands-scroll {
  display: flex;
  align-items: center;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.brands-left-to-right {
  animation-name: scrollLeftToRight;
}

.brands-right-to-left {
  animation-name: scrollRightToLeft;
  animation-direction: reverse;
  margin-top: 30px;
}

.brand-item {
  flex-shrink: 0;
  padding: 0 25px;
}

.brand-item img {
  max-height: 60px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.brand-item img:hover {
  opacity: 1;
}

.blur {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.blur-left {
  left: 0;
  background: linear-gradient(to right, #022a39, transparent);
}

.blur-right {
  right: 0;
  background: linear-gradient(to left, #022a39, transparent);
}

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

/* ims.css ()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()(()()()()()()()()()()()()()(( */

:root {
  /* Define CSS variables for easier theming/adjustments */
  --ims-max-width: 1200px; /* Max width for the container */
  --ims-heading-clr: #2c3e50; /* Dark blue/gray for headings */
  --ims-accent: #007bff; /* A blue accent color for hover/borders */
  --ims-card-bg: #f3f5ff; /* Very light indigo tint for card background */
  --ims-card-border: #dfe2ff; /* Light border for cards */
}

.ims-section {
  background: linear-gradient(135deg, #f1f9ff 0%, #49aeb1 120%);
  /* Ensure it takes full viewport width and height */
  width: 100%;
  min-height: 100vh; /* Use min-height to allow content to expand if needed */
  display: flex; /* Use flexbox to center content vertically */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  padding: 4rem 1rem; /* Add some default padding */
  font-family: system-ui, sans-serif;
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

.ims-container {
  max-width: var(--ims-max-width);
  margin-inline: auto;
  text-align: center;
  width: 100%; /* Ensure container takes full available width within its max-width */
  padding: 0 1rem; /* Add horizontal padding for smaller screens */
}

.ims-title {
  font-size: clamp(
    1.8rem,
    3vw + 1rem,
    2.8rem
  ); /* Made title slightly larger and more fluid */
  font-weight: 700;
  color: var(--ims-heading-clr);
  margin: 0 0 0.8rem; /* Adjusted margin */
  line-height: 1.2;
}

.ims-subtitle {
  font-size: clamp(
    0.95rem,
    1.5vw + 0.5rem,
    1.2rem
  ); /* Made subtitle more fluid */
  margin-bottom: 3rem; /* Increased margin for better separation */
  opacity: 0.8;
  max-width: 700px; /* Limit subtitle width for readability */
  margin-inline: auto; /* Center subtitle if it has a max-width */
}

/* ====== 3×3 GRID ====== */
.ims-grid-3x3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center; /* Center cards within their grid cells */
  align-items: stretch; /* Make cards stretch to fill height of the row */
}

/* ░░ CARD DIMENSIONS ░░────────────────────────────────────────── */
.ims-card {
  width: 100%; /* Fill the grid cell */
  max-width: 380px; /* Slightly increased max-width for cards */
  padding: 1.8rem 1.5rem; /* More space inside the card */

  /* (OPTIONAL) enforce a taller box so text lengths line-up.
     Remove if you prefer auto-height. */
  min-height: 380px; /* Adjusted min-height for better balance */

  border-radius: 10px;
  border: 1px solid var(--ims-card-border);
  background: var(--ims-card-bg);
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  display: flex; /* Use flexbox for internal card layout */
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center content horizontally within the card */
  text-align: center; /* Center text within the card */
  transition:
    transform 0.3s ease,
    border-color 0.3s ease; /* Smooth transition for hover effect */
}

/* ====== CARD BASE (Hover Effect) ====== */
.ims-card:hover {
  transform: translateY(-8px); /* Slightly more pronounced lift */
  border-color: var(--ims-accent);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Subtle shadow on hover */
}

.ims-icon {
  width: 70px; /* Slightly larger icon */
  height: 70px;
  margin-bottom: 1.5rem; /* Increased margin below icon */
  object-fit: contain;
}

.ims-card__title {
  font-size: clamp(
    1.1rem,
    1.8vw + 0.5rem,
    1.3rem
  ); /* Made card title more fluid */
  font-weight: 700;
  margin: 0 0 0.8rem; /* Adjusted margin */
  color: var(--ims-heading-clr);
}

.ims-card__text {
  font-size: clamp(
    0.85rem,
    1.2vw + 0.3rem,
    1rem
  ); /* Made card text more fluid */
  line-height: 1.6; /* Increased line-height for readability */
  opacity: 0.85;
  flex-grow: 1; /* Allow text to take up available space, pushing content to bottom if needed */
}

/* --- Media Queries --- */

/* Tablet and Smaller Desktop screens */
@media (max-width: 992px) {
  .ims-section {
    padding: 3rem 1rem; /* Reduce padding on smaller screens */
    min-height: auto; /* Allow section to grow beyond 100vh on tablets */
  }

  .ims-grid-3x3 {
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 1.5rem; /* Slightly reduce gap */
  }

  .ims-card {
    min-height: 350px; /* Adjust min-height for tablet view */
    padding: 1.2rem 1rem; /* Reduce card padding */
  }

  .ims-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
}

/* Mobile screens */
@media (max-width: 580px) {
  .ims-section {
    padding: 2.5rem 0.5rem; /* More reduced padding for mobile */
  }

  .ims-container {
    padding: 0 0.5rem; /* Tighter container padding */
  }

  .ims-title {
    font-size: clamp(
      1.6rem,
      8vw,
      2.2rem
    ); /* More aggressive clamping for mobile title */
    margin-bottom: 0.5rem;
  }

  .ims-subtitle {
    font-size: clamp(
      0.9rem,
      4vw,
      1.1rem
    ); /* More aggressive clamping for mobile subtitle */
    margin-bottom: 2rem;
  }

  .ims-grid-3x3 {
    grid-template-columns: 1fr; /* Single column */
    gap: 1.2rem; /* Reduce gap further */
  }

  .ims-card {
    max-width: 320px; /* Limit card width on very small screens */
    min-height: auto; /* Let card height adjust to content on mobile */
    padding: 1rem 0.8rem; /* Further reduce card padding */
  }

  .ims-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
  }

  .ims-card__title {
    font-size: clamp(1rem, 5vw, 1.2rem);
    margin-bottom: 0.5rem;
  }

  .ims-card__text {
    font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    line-height: 1.5;
  }
}

/* ====== OPTIONAL BACKGROUND HUES ====== */
.bg-youtube {
  background: #f6f8ff;
}
.bg-instagram {
  background: #fff4ec;
}
.bg-regional {
  background: #ecf9ff;
}
.bg-celebrity {
  background: #f7f6ff;
}
.bg-brand {
  background: #eefcf4;
}
.bg-tiktok {
  background: #fff7ff;
}
.bg-linkedin {
  background: #eff6ff;
}
.bg-twitter {
  background: #f0fcff;
}
.bg-integrated {
  background: #ffffff;
  border-left: 6px solid var(--ims-accent);
}

/* ===== Root palette & basics ================================= */
:root {
  --blue: #0061ff;
  --border: #e5e8f0;
  --text-dark: #121826;
  --text-mid: #5c6680;
  --radius: 12px;
  --card-w: 200px; /* each card 200 px wide */
  --gap: 1.5rem; /* gap between cards     */
}
/* 
/* section padding */
.influencers {
  font-family: Inter, system-ui, sans-serif;
  padding: 1.5rem 0;
  max-width: 1250px;
  margin-inline: auto;
}

/* -------------------- Tabs ----------------------------------- */
.tabs {
  display: flex;
  gap: 2.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  background: none;
  border: 0;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
}
.tab.active {
  color: var(--blue);
}
.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1rem;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
}

/* -------------------- Card ----------------------------------- */
.card {
  width: var(--card-w);
  flex: 0 0 var(--card-w);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 1.2rem 0.8rem 1.5rem;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.04);
}
.avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-inline: auto 1rem auto;
}
.card .category {
  display: block;
  margin-top: 0.8rem;
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3462ff;
}
.name {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0.2rem 0 0.4rem;
}
.followers {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin: 0;
}

/* -------------------- Slider logic --------------------------- */
.slider-viewport {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--border);
}
.slider-track {
  display: flex;
  gap: var(--gap);
  animation: slide-ltr 40s linear infinite;
}
@keyframes slide-ltr {
  0% {
    transform: translateX(calc(-50% - var(--gap)));
  }
  100% {
    transform: translateX(0%);
  }
}
.slider-viewport:hover .slider-track {
  animation-play-state: paused;
}
*/

/* ---------- Responsive tweaks ---------- */

/* Tablets and medium screens */




/*  this another Section infulnecesr Section this Need to make in very     */


/* Basic Reset and Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Influencer Section Container */
.influencer-process {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(135deg, #f1f9ff 0%, #49aeb1 120%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Main Heading */
.process-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #1d3a4d;
  margin-bottom: 2rem;
}

/* Cards Container */
.process-steps {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Individual Card */
.process-card {
  width: 260px;
  background-color: #ffffff;
  padding: 4rem 1.2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Highlighted Card */
.process-card.highlighted {
  background-color: #f7faff;
  border: 2px solid #00aaff;
}

.process-card.highlighted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background-color: #00aaff;
  border-radius: 0 0 10px 10px;
}

/* Icons */
.process-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

/* ========== Media Queries ========== */

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
  .process-heading {
    font-size: 2.5rem;
  }
}

/* Medium devices (992px - 1199px) */
@media (max-width: 1199px) {
  .process-heading {
    font-size: 2rem;
  }

  .process-card {
    width: 240px;
  }

  .process-icon {
    width: 65px;
    height: 65px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .process-heading {
    font-size: 1.8rem;
  }

  .process-card {
    width: 220px;
    padding: 0.8rem 1rem;
  }

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

/* Mobile Devices (601px - 767px) */
@media (max-width: 767px) {
  .influencer-process {
    padding: 1.5rem 1rem;
    height: auto;
  }

  .process-heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .process-card {
    width: 90%;
  }

  .process-icon {
    width: 55px;
    height: 55px;
  }
}

/* Small Mobile (≤600px) */
@media (max-width: 600px) {
  .process-heading {
    font-size: 1.4rem;
  }

  .process-card {
    width: 100%;
  }

  .process-icon {
    width: 50px;
    height: 50px;
  }
}

/* Card Titles */
/* Simple reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* =========================================================
   GLOBAL RESET & BASE TYPOGRAPHY
   ========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.5;
}

/* =========================================================
   WHY-CHOOSE SECTION
   ========================================================= */
.why-choose-container {
  width: 100%;
  /* min-height: 100vh; 👈 was height:100vh */
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.why-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 80vh;
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-details {
  flex: 1.2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}

.why-details h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #032d4f;
  margin-bottom: 0.5rem;
}
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.reason-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.reason-card img {
  width: 44px;
  height: 44px;
}

.reason-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #032d4f;
  margin-bottom: 0.35rem;
}

.reason-card p {
  font-size: 0.9rem;
  color: #374151;
}

/* ================= MEDIA QUERIES: WHY-CHOOSE ================ */
@media (max-width: 991px) {
  .why-choose-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .why-image-container {
    width: 100%;
    height: 50vh;
  }

  .why-details {
    align-items: center;
    gap: 1.3rem;
  }
}

@media (max-width: 767px) {
  .why-choose-container {
    padding: 1.5rem;
  }

  .why-image-container {
    height: 40vh;
  }
}

/* =========================================================
   YOUTUBE-INFLUENCERS SECTION
   ========================================================= */
.youtube-influencers {
  width: 100%;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  text-align: center;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: #032d4f;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-size: 0.95rem;
  color: #54595f;
  margin-bottom: 2rem;
}

.category-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.category-grid > .category {
  padding: 30px 10px;
  border-radius: 10px;
  background: #f1f1f1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  color: inherit;
}

.category-grid > .category:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.category-grid > .category img {
  width: 50px;
  height: 50px;
  margin-bottom: 0.8rem;
}

.category-grid > .category span,
.category-grid > .category .category-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #242a2f;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* — YouTube grid card colours — */
.category-grid > .category.lifestyle {
  background: #b9f2ff;
}
.category-grid > .category.travel {
  background: #f7ea75;
}
.category-grid > .category.education {
  background: #a1f5c5;
}
.category-grid > .category.beauty {
  background: #fdd1a5;
}
.category-grid > .category.fitness {
  background: #e0ff8c;
}
.category-grid > .category.vines {
  background: #ffb3ce;
}
.category-grid > .category.gaming {
  background: #e9b8ff;
}
.category-grid > .category.comedy {
  background: #9fffd4;
}
.category-grid > .category.motivation {
  background: #7ef5ff;
}
.category-grid > .category.technology {
  background: #a7c9ff;
}
.category-grid > .category.vlogs {
  background: #f8ddb0;
}
.category-grid > .category.food {
  background: #a4ffca;
}

/* MEDIA QUERIES: YOUTUBE GRID */
@media (max-width: 991px) {
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .category-grid > .category img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 1.2rem;
  }
  .title {
    font-size: 1.7rem;
  }
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.2rem;
  }
}

/* =========================================================
   INSTAGRAM-INFLUENCERS SECTION
   ========================================================= */
.ig-section {
  width: 100%;
  /* min-height: 100vh; 👈 was height:100vh */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f6fa radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px)
    repeat;
  background-size: 90px 90px;
}

.ig-wrap {
  width: 100%;
  max-width: 1200px;
  padding: 2rem 1rem;
  text-align: center;
}

.ig-title {
  font-size: 2rem;
  font-weight: 700;
  color: #072842;
  margin-bottom: 0.6rem;
}

.ig-sub {
  max-width: 1060px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  color: #5d5f63;
}

.ig-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  justify-items: center;
}

.ig-card {
  width: 100%;
  padding: 1.5rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.ig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.ig-card img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.ig-card span,
.ig-card .category-label {
  display: block;
  width: 100%;
  font-size: 0.83rem;
  font-weight: 600;
  color: #1f2733;
  text-align: center;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .ig-title {
    font-size: 1.8rem;
  }
  .ig-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

/* =========================================================
   TESTIMONIAL SECTION
   ========================================================= */
/* ===== HERO LAYOUT ===================================================== */
.testimonial-hero {
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #003051 0%, #0a5073 50%, #37adc4 100%);
  color: #ffffff;
}

.testimonial-copy {
  flex: 0 0 300px;
}
.headline {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
}
.subline {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.testimonial-card {
  flex: 1.2;
  max-width: 908px;
  padding: 2.2rem 6rem 1rem;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  overflow: hidden;
  background-image: url("images/reviewBg.557705a2.jpg");
  transition: opacity 0.35s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.item {
  display: flex;
  margin-left: 4px;
  width: 100%;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.55;
  color: #00263c;
  font-weight: 500;
}
.brand-logo {
  margin-top: 1.8rem;
  width: 80px;
}
.arrows {
  display: flex;
  margin-top: 1.4rem;
  gap: 0.8rem;
}

.arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #a6b7c3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: #003051;
  transition:
    background 0.25s,
    color 0.25s;
}
.arrow:hover {
  background: #003d60;
  color: #ffffff;
}

.quote-icon {
  position: absolute;
  bottom: 1.4rem;
  right: 1.6rem;
  width: 60px;
  opacity: 0.3;
}

@media (max-width: 991px) {
  .testimonial-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 2rem;
  }
  .headline {
    font-size: 2rem;
  }
}

@media (max-width: 599px) {
  .headline {
    font-size: 1.7rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .arrow {
    width: 30px;
    height: 30px;
  }
  .quote-icon {
    width: 50px;
  }
}

@media (max-width: 576px) {
  .testimonial-copy {
    flex: 0 0 100%;
  }
  .testimonial-card {
    padding: 1.2rem;
  }
  .headline {
    font-size: 1.5rem;
  }
  .subline {
    font-size: 0.85rem;
  }
  .arrow {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .quote-icon {
    width: 40px;
  }
}

/* =========================================================
   UTILITIES
   ========================================================= */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.btn.brand {
  display: inline-block;
  background: #3d9dad;
  color: #ffffff;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s;
}

.btn.brand:hover {
  /* background: #e66f16; */
  color: #fff !important;
}

/* brands-marquee.css */
.brands {
  padding: 4rem 0;
  background: radial-gradient(ellipse at top, #17698d 0%, #0a344e 100%);
  overflow: hidden;
  position: relative;
  color: #fff;
}

.brands__title {
  font:
    700 2rem/1.2 "Segoe UI",
    sans-serif;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bold {
  color: #fff;
  font-weight: 800;
}
.wireSvg {
  position: absolute;
  top: 1px;
  left: 20%;
  width: 70px;
}

.sideblur {
  position: absolute;
  top: 50%;
  width: 250px;
  transform: translateY(-50%);
  pointer-events: none;
}
.sideblur--left {
  left: 0;
}
.sideblur--right {
  right: 0;
  transform: translate(50%, -50%) scaleX(-1);
}

/* ─────────── marquee core ─────────── */
.marquee-container {
  --gap: 5rem; /* space between items */
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
.track {
  display: flex;
  gap: var(--gap);
  flex-shrink: 0;
}

.marquee-item {
  height: 40px;
  filter: grayscale(100%) brightness(180%);
  transition: filter 0.3s;
  object-fit: contain;
}
.marquee-item:hover {
  filter: grayscale(0%) brightness(100%);
}

/* subtle fade edge */
.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 12% 88%,
    rgba(0, 0, 0, 0.65) 100%
  );
  mix-blend-mode: overlay; /* keeps colours bright */
}

/* Small screens (e.g., smartphones in portrait mode) */
@media (max-width: 576px) {
  .brands {
    padding: 1rem 0; /* Slightly less padding on smaller screens */
    height: auto;
  }
  .bold {
    margin: 1rem;
  }
  .wireSvg {
    display: none; /* Hide wire on small screens */
  }
  .sideblur {
    display: none; /* Hide side blur on small screens */
  }

  .brands__title {
    font-size: 1.5rem;
    margin: 0.5rem 0; /* Reduce margin on title */
    text-align: center; /* Center title on small screens */
    font-weight: 700;
    margin-bottom: 1.5rem; /* Reduce margin on title */
  }

  .marquee {
    --gap: 2.5rem; /* Smaller gap for the marquee on small screens */
  }

  /* You might want to adjust sizes of absolute elements if they look too large/small */
  .brands__wire {
    display: none;
    width: 50px; /* Make wire smaller on very small screens */
    top: -10px; /* Adjust top position */
  }

  .brands__blur {
    width: 150px; /* Make blur smaller */
  }

  .brands__blur--left {
    left: -10px;
  }

  .brands__blur--right {
    right: -10px;
  }
}

/* Medium screens (e.g., tablets, larger smartphones) */
@media (min-width: 577px) and (max-width: 992px) {
  .brands {
    padding: 3.5rem 0; /* Moderate padding */
  }
  .wireSvg {
    display: none; /* Hide wire on small screens */
  }
  .sideblur {
    display: none; /* Hide side blur on small screens */
  }

  .brands__title {
    margin-bottom: 1.5rem; /* Moderate margin */
    font-size: 1.5rem !important; /* Slightly larger font size */
    font-weight: 600; /* Slightly bolder */
  }

  .marquee {
    --gap: 3.5rem; /* Moderate gap for the marquee */
  }
}

/* Large screens (e.g., desktops) - Base styles are generally sufficient, but can refine */
@media (min-width: 993px) {
  .brands {
    /* Base padding (4rem 0) is already good, but you could increase for very large screens */
    /* padding: 5rem 0; */
  }

  .brands__title {
    /* Base margin (3.5rem) is generally fine */
    margin-bottom: 4rem;
  }

  .marquee {
    /* Base gap (4.5rem) is good, could be increased if needed */
    /* --gap: 5rem; */
  }

  /* For very large screens, you might want slightly larger wire/blur */
  .brands__wire {
    width: 80px;
  }
  .brands__blur {
    width: 250px;
  }
}

/*  this styleinfluencers section this is the style for influencers section


/* CORE LAYOUT --------------------------------------------------------- */
/* body { margin:0; font-family: 'Segoe UI', sans-serif; background:#fff; } */
.section-title {
  text-align: center;
  font-size: 2.3rem;
  color: #0d1b3d;
  margin: 60px 0 25px;
}

/* .tabs   { display:flex; justify-content:center; gap:2.5rem; margin-bottom:30px; } */
.tab {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #69738a;
  cursor: pointer;
}
/* .tab.active { color:#0d1b3d; border-bottom:3px solid #1877f2; } */

/* SLIDER -------------------------------------------------------------- */
.slider {
  position: relative;
  overflow: hidden;
}

.track {
  --gap: 3.5rem;
  display: flex;
  gap: var(--gap);
  flex-shrink: 0;
  animation: scroll linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* CARD ---------------------------------------------------------------- */
.card {
  width: 220px;
  min-width: 220px;
  padding: 34px 24px 28px;
  border: 1px solid #e5ecff;
  border-radius: 18px;
  box-shadow: 0 8px 14px rgba(30, 42, 90, 0.06);
  background: #fff;
  text-align: center;
  cursor: pointer;
}

.card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
}

.name {
  fontsize: 1.1rem;
  font-weight: 700;
  color: #0d1b3d;
  margin-bottom: 14px;
}
.follows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #69738a;
  font-weight: 500;
}
.follows svg {
  width: 16px;
  height: 16px;
}

/* MODAL --------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 1rem;
}
.modal.open {
  display: flex;
}
.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 40px 50px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: relative;
  animation: pop 0.25s ease;
}
@keyframes pop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}
.close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #69738a;
}
.modal-content h3 {
  margin: 25px 0 8px;
}
.modal-content p {
  margin: 4px 0;
  color: #69738a;
}

/* UTILITIES ----------------------------------------------------------- */
@media (max-width: 600px) {
  .card {
    width: 170px;
    min-width: 170px;
    padding: 28px 18px;
  }
  .card img {
    width: 110px;
    height: 110px;
  }
}

/*    8************************************************************************
 * Hero Section Styles this last Section 
 ****************************************************************** */

.faq-section {
  padding: 2rem 1rem;
}

.faq-container {
  max-width: 1200px; /* keeps lines comfortable */
  margin: 0 auto;
}

/* ------------- TITLE ------------- */
.faq-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
}

/* ------------- ACCORDION ITEMS ------------- */
details {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.2rem 0;
}

/* remove border from last item */
details:last-of-type {
  border-bottom: none;
}

details summary {
  font-size: 1.125rem;
  font-weight: 700;
  list-style: none; /* hide default arrow */
  position: relative;
  cursor: pointer;
  padding-left: 2.3rem; /* room for + / – icon */
  user-select: none;
}

/* + / – icon */
details summary::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 1.55rem;
  color: #008cff; /* bright blue like screenshot */
  line-height: 1;
  transition:
    transform 0.2s ease,
    content 0.2s ease;
}

/* swap to minus when open */
details[open] summary::before {
  content: "—"; /* em-dash minus */
  transform: scale(1.2);
}

/* ANSWER TEXT */
details p {
  margin-top: 0.8rem;
  margin-left: 2.3rem;
  font-size: 1rem;
  color: #475569;
  max-width: 80ch; /* keeps paragraphs readable */
}

/* LINKS inside answers */
details p a {
  color: #008cff;
  text-decoration: none;
}

details p a:hover {
  text-decoration: underline;
}

/* ------------- SMALL DEVICES TWEAKS ------------- */
@media (max-width: 480px) {
  .faq-title {
    font-size: 2rem;
  }

  details summary {
    font-size: 1rem;
  }

  details p {
    font-size: 0.95rem;
  }
}

:root {
  --c-accent: #3465ff;
  --c-base: #0e1c4d;
  --c-mute: #79809b;
  --c-line: #e8eafc;
}
/* *{box-sizing:border-box;margin:0;padding:0}
  body{
    font-family:"Inter",system-ui,sans-serif;
    background:#fff;
    color:var(--c-base);
  } */

/* ============ Section ============ */
.cosmo-hub {
  max-width: 1250px;
  margin: auto;
  padding: 3rem 1rem 4rem;
  text-align: center;
}
.cosmo-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 2.6rem;
}

/* -------- Tabs -------- */
.nebula-rail {
  display: flex;
  justify-content: center;
  gap: 2.6rem;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 2.6rem;
}
.nebula-knob {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-mute);
  padding: 0.5rem 0 1rem;
  position: relative;
  transition: 0.24s;
}
.nebula-knob.is-on {
  color: var(--c-base);
}
.nebula-knob.is-on::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--c-accent);
}

/* -------- Card -------- */
.orbit-shell {
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 2rem 1.25rem 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  transition: 0.3s;
}
.orbit-shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(18, 30, 74, 0.12);
}
.orbit-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.orbit-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.orbit-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--c-accent);
  margin-bottom: 0.35rem;
}
.orbit-name {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.orbit-stat {
  font-size: 0.9rem;
  color: var(--c-mute);
}
.orbit-stat i {
  margin-right: 0.25rem;
}

/* -------- Owl tweaks -------- */
.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.owl-item {
  padding: 22px 0;
}

@media (max-width: 564px) {
  .cosmo-hub {
    padding: 2rem 1rem 3rem;
  }
  .cosmo-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
  .nebula-rail {
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  /* .nebula-knob{padding:.5rem 0 1.2rem;font-size:.9rem;} */
  /* .orbit-shell{padding:1.5rem 1rem 2.2rem;} */
  /* .orbit-avatar{width:150px;height:150px;margin-bottom:1.2rem;} */
  /* .orbit-name{font-size:1.15rem;} */
}

/* ========== THEME VARS (unique names) ========== */
:root {
  --uDeepSea: #002b45; /* background */
  --uIce: #fff; /* pure white */
  --uMist: rgba(255, 255, 255, 0.85);
  --uRipple: rgba(255, 255, 255, 0.25);
  --uBlush: #ff3570; /* heart color */
}

/* ========== RESET + BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Poppins, sans-serif;
}

/* ========== FOOTER START ========== */
.orbit-footer {
  background: var(--uDeepSea);
  color: var(--uIce);
}

/* Catchy headline */
.orbit-headline {
  text-align: center;
  padding: 4rem 1rem 3.5rem;
}
.orbit-headline h2 {
  font-weight: 600;
  font-size: clamp(1rem, 2vw + 1rem, 2.5rem);
  line-height: 1.2;
}

/* separator */
.orbit-slice {
  border: 0;
  border-top: 1px solid var(--uRipple);
  margin-inline: 8%;
}

/* grid wrapper */
.orbit-grid {
  --gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 2.5rem;
  padding: 0 1rem;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* logo box */
.orbit-brand img {
  width: 190px;
}

/* socials */
.orbit-social {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.orbit-social a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--uIce);
  color: var(--uDeepSea);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 0.25s;
}
.orbit-social a:hover {
  transform: translateY(-4px);
}

/* column headings & links */
.orbit-col h5 {
  font-size: 1.25rem;
  margin-bottom: 1.3rem;
  font-weight: 600;
  margin-left: 2rem;
}
.orbit-col ul {
  list-style: none;
}
.orbit-col li {
  margin-bottom: 0.8rem;
}
.orbit-col a {
  color: var(--uMist);
  text-decoration: none;
  transition: opacity 0.25s;
}
.orbit-col a:hover {
  opacity: 1;
}

/* bottom strip */
.orbit-tail {
  border-top: 1px solid var(--uRipple);
  padding: 2rem 1rem 3rem;
  text-align: center;
  font-size: 0.9rem;
}
.orbit-tail .heart {
  color: var(--uBlush);
}

@media (max-width: 564px) {
  .orbit-grid {
    grid-template-columns: 1fr;
  }
  .orbit-brand img {
    width: 150px;
  }
  .orbit-social {
    justify-content: center;
    gap: 1rem;
  }
  .orbit-col h5 {
    font-size: 1.15rem;
  }
  .orbit-col a {
    font-size: 0.9rem;
  }
}

/* responsive */
@media (max-width: 768px) {
  .orbit-brand {
    text-align: center;
  }
  .orbit-social {
    justify-content: center;
  }
  .orbit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .orbit-brand {
    grid-column: 1/-1;
  }
}
