:root {
  --primary-color: #0165f6;
  --secondary-color: #182844;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --background-light: #ffffff;
  --background-dark: linear-gradient(135deg, var(--secondary-color) 0%, #3d465f 100%);
  --grey-bg: #e5e7eb;
  --accent-gradient: linear-gradient(135deg, var(--primary-color), #0052cc);

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  margin: 0;
  background-color: var(--background-light);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 40px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.8;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* NAVIGATION MENU */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 100;
}



.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-weight: 400;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(1, 101, 246, 0.1);
  color: var(--primary-color);
}

/* CTA BUTTON */
.cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hide mobile CTA on desktop */
.mobile-cta {
  display: none;
}


/* DESKTOP DROPDOWN (hover only on desktop) */
@media (min-width: 993px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


/* MOBILE STYLES */
@media (max-width: 992px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo-img {
    height: 28px;
  }

  /* Show hamburger */
  .mobile-menu-toggle {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  /* Mobile menu container */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }

  .nav-menu > li > a {
    display: block;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 1rem;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(1, 101, 246, 0.03);
    padding: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .dropdown-menu li {
    padding-left: 1rem;
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-gray);
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--primary-color);
  }



  /* Mobile CTA */
  .mobile-cta {
    display: block;
    margin-top: 1rem;
    border-bottom: none;
  }

  .mobile-cta .cta-btn {
    color:#fff;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    display: block;
  }
}

@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: rgba(1, 101, 246, 0.03);
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .logo-img {
    height: 26px;
  }

  .nav-menu {
    top: 55px;
    max-height: calc(100vh - 55px);
  }
}

.hero {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  margin-top: 70px;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hero.fade-out {
  opacity: 0;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.circle-large,
.circle-medium,
.circle-small {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}

.circle-large {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-color), transparent);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.circle-medium {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary-color), transparent);
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
}

.circle-small {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-color), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(40px, 10px) scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}
.hero-title {
  will-change: contents;
}


.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.typing-text {
  display: inline-flex;
  justify-content: center;   /* center text inside reserved width */
  width: 16ch;               /* longest word length */
  white-space: nowrap;
}

#typed-word {
  display: inline-block;
  width: 100%;
}





@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.cta-button {
  display: inline-block;
  background: var(--accent-gradient);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
  box-shadow: 0 10px 30px rgba(1, 101, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(1, 101, 246, 0.4);
}

.overlap-section {
  position: relative;
  margin-top: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  z-index: 10;
  background-color: transparent;
  transition: background-color 0.6s ease;
}

.overlap-section.grey-bg {
  background-color: var(--background-light);
}

.image-wrapper {
  position: relative;
  width: 900px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.overlap-section.grey-bg .image-wrapper {
  transform: scale(1.01);
}

.img {
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.overlap-section.grey-bg .img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.img.big {
  width: 100%;
  z-index: 1;
}

.img.small {
  position: absolute;
  width: 45%;
  z-index: 2;
}

.img.small.left {
  top: 50px;
  left: -100px;
  height: 80%;
  width: auto;
}

.img.small.right {
  top: 50px;
  right: -100px;
  width: 300px;
}
@media(max-width:992px){
    .image-wrapper{
    width: 600px;
  }
  .overlap-section{
    margin-top: -50px;
  }
}

@media(max-width:552px){
  .overlap-section{
    margin-top: -90px;
  }
}



/* SECTION */
.brands-section {
  padding: 48px 0;
  overflow: hidden;
  position: relative;
  background: transparent;
  margin-bottom: 50px;
}

/* Title */
.partners-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #6b7280; /* subtle grey */
  margin-bottom: 32px;
}

/* MARQUEE */
.brands-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.brands-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: scroll 45s linear infinite;
}

/* ITEM (NO BOXES) */
.brand-item {
  flex: 0 0 auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO WRAPPER */
.brand-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO IMAGE */
.brand-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;

  /* GREY MODE */
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.55;

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.brand-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* PAUSE ON HOVER */
.brands-track:hover {
  animation-play-state: paused;
}

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

/* MOBILE */
@media (max-width: 768px) {
  .brand-item {
    padding: 0 28px;
  }

  .brand-logo {
    height: 36px;
  }

  .partners-title {
    font-size: 1rem;
  }
}







/* ========== AUDIENCE SECTION ========== */
.audience-section {
  background: var(--background-light);
  padding:40px 0px;
  position: relative;
  margin-bottom: 50px;
   min-height: calc(100vh + (2 * 120px));
   
}

.audience-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* LEFT EXPLORE BUTTON */
.audience-cta {
  display: inline-block;
  margin-top: 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
}

.audience-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.audience-cta:hover::after {
  width: 30%;
}

/* IMAGE LINK */
.image-link {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

/* IMAGE CTA OVERLAY */
.image-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;

  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;

  padding: 6px 12px;
  border-radius: 999px;

  background: transparent;               /* normal state */
  transition: background 0.3s ease, color 0.3s ease;
}


.image-link:hover .image-cta {
  background: rgba(255, 255, 255, 0.92);
  color: var(--secondary-color);
}


/* Cursor cue */
.image-link:hover video {
  cursor: pointer;
}

.audience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  /* background: linear-gradient(90deg, transparent, rgba(1, 101, 246, 0.2), transparent); */
}

.audience-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: sticky;
  height: auto;

top: 20%;
}

/* LEFT COLUMN */
.audience-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 520px;
}

/* CHANNEL LIST */
.channel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.channel-list li {
  position: relative;
  padding: 3px 10px 0px 20px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #5f6b7a;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.25s ease, color 0.25s ease;
}

/* Left indicator (clean, not flashy) */
.channel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 2px;
  background: transparent;
  border-radius: 2px;
  transition: background 0.25s ease;
}

/* Hover â€“ subtle */
.channel-list li:hover {
  background: rgba(1, 101, 246, 0.04);
  color: var(--secondary-color);
}

/* Active state â€“ confident, calm */
.channel-list li.active {
  /* background: rgba(1, 101, 246, 0.08); */
  color: var(--primary-color);
  font-weight: 600;
}

/* Active indicator */
.channel-list li.active::before {
  background: var(--primary-color);
}


.channel-list li.active .channel-icon {
  opacity: 1;
  transform: scale(1.3);
}

.audience-right {
  position: relative;
}

.image-frame {
  background: var(--grey-bg);
  border-radius: 24px;
  
  box-shadow: var(--shadow-xl);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}

.image-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(1, 101, 246, 0.2);
}

.image-frame:hover::before {
  opacity: 0.05;
}

.audience-right video {
  width: 100%;
  max-height: 500px;
  border-radius: 16px;
  object-fit: fill;
  object-position: center;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-height: 750px) {
  .audience-wrapper {
    top: 120px;
    transform: none;
  }
}

/* ========== MOBILE RESPONSIVE (AUDIENCE SECTION) ========== */
@media (max-width: 992px) {
  .audience-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-left h2 {
    max-width: 100%;
    text-align: center;
  }

  .channel-list {
    align-items: center;
  }

  .channel-list li {
    width: 100%;
    max-width: 360px;
    text-align: center;
    padding: 12px 16px;
  }

  .channel-list li::before {
    left: 50%;
    top: auto;
    bottom: 4px;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
  }

  .audience-right {
    max-height: none;
  }

  .audience-right video {
    height: 300px;
    border-radius: 14px;
  }
}

@media (max-width: 576px) {
  .hero{
    min-height: 60vh !important;
    margin-top: 60px;
  }
  .image-wrapper{
    width: 300px;
  }
  .audience-section {
    padding: 40px 20px;
  }

  .audience-left h2 {
    font-size: 1.6rem;
    line-height: 1.35;
  }

  .audience-left{
    max-width: 90%;
  }
  .audience-right{
max-width: 90%;
  }
  .channel-list {
    gap: 8px;
    flex-direction: row;
    overflow-x: scroll;
    max-width: 100vw;
  }

  .channel-list li {
    font-size: 0.95rem;
    padding: 10px 14px;
    white-space: nowrap;      /* ðŸ”¥ prevents text wrapping */
  
  }

  .audience-right video {
    height: 240px;
  }
  .audience-section{
    min-height: 00vh;
  }
}
.audienceExploreBtn:hover{
text-decoration: none;
}









.features-section {
  padding: 64px 0;
  background: var(--background-dark);
  position: relative;
  z-index: 11;
}
.section-title{
    color: #fff;
    font-weight: 900;
    text-align: center;
    font-size: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(1, 101, 246, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-card:hover {
  transform: translateX(10px);
  box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.8;
}





/* ===== INSIGHTS SECTION ===== */
.insights-section {
  background: #fff;
  padding: 64px 0;
}

.insights-container {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 40px;
}

/* Header */
.insights-header {
  text-align: center;
  margin-bottom: 48px;
}

.insights-header h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.insights-header p {
  color: #6b7280;
  max-width: 620px;
  margin: 0 auto 28px;
}

/* Tabs */
.insights-tabs {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 4px;
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #fff;
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Grid */
.insights-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  animation: fadeIn 0.4s ease;
}

.insights-grid.active {
  display: grid;
}

/* Card */
.insight-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.insight-card {
  position: relative;
}

.insight-card .card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Keep inner links clickable */
.insight-card a:not(.card-link) {
  position: relative;
  z-index: 2;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

/* Image header */
.card-image {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insight-card:hover img {
  transform: scale(1.08);
}

/* Floating tag */
.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--primary-color);
}

.tag.case {
  color: #16a34a;
}

/* Content */
.card-content {
  padding: 22px 24px 26px;
}

.card-content h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.card-content a {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

/* Case metric */
.case-metric {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insights-section {
    padding: 60px 20px;
  }

  .card-image {
    height: 170px;
  }
}







/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 40px 0;
  background: linear-gradient(180deg,#ffffff 0%, #f9fafb 100%);
  text-align: center;
  overflow: hidden;
}

.section-subtitle {
  display:inline-block;
  background: rgba(1,101,246,0.1);
  color: var(--primary-color);
  padding:6px 14px;
  font-size:12px;
  border-radius:20px;
  margin-bottom:15px;
}

.section-title-1 {
  font-size:40px;
  color: var(--secondary-color);
  margin-bottom:50px;
}
.section-title-1 span{
  font-style: italic;
}
.testimonial-wrapper {
  display:flex;
  flex-direction:column;
  gap:30px;
}



.testimonial-track {
  display:flex;
  gap:20px;
  padding: 10px;
  width: max-content;
}

.testimonial-card {
  background: var(--background-light);
  padding:14px;
  width:320px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  text-align:left;
  transition:0.3s;
}

.testimonial-card p {
  font-size:14px;
  color: var(--text-gray);
  margin-bottom:15px;
  line-height:1.6;
}

/* Profile */
.profile{
  display:flex;
  align-items:center;
  margin-bottom:15px;
}

.profile img{
  width:50px;
  height:50px;
  border-radius:50%;
  margin-right:15px;
}

.profile h4{
  font-size:16px;
  color: var(--secondary-color);
}

.profile p{
  font-size:13px;
  color: var(--text-gray);
}


.stars {
  color:#fbbf24;
}

/* Animation */
.scroll-left .testimonial-track {
  animation: scrollLeft 40s linear infinite;
}

/* RIGHT SCROLL */
.scroll-right .testimonial-track {
  animation: scrollRight 40s linear infinite;
}

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

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

/* Pause on hover */
.testimonial-row:hover .testimonial-track {
  animation-play-state: paused;
}

/* Responsive */
@media(max-width:768px){
  .testimonial-card {
    width:260px;
  }
  .section-title {
    font-size:28px;
  }
}








/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(1, 101, 246, 0.06),
    rgba(99, 102, 241, 0.04)
  );
  padding: 64px 0;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.cta-container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* CTA Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(1, 101, 246, 0.35);
}

.cta-secondary {
  border: 2px solid rgba(1, 101, 246, 0.25);
  color: var(--primary-color);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(1, 101, 246, 0.08);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }
}






.footer {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  
  flex-direction: column;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}
.footer-description {
  max-width: 360px;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}



    .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup-modal {
  background: #fff;
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

.popup-title {
  margin-bottom: 20px;
  text-align: center;
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: span 2;
}

input, select, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button[type="submit"] {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
}


@media (max-width: 968px) {
  .nav-menu {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .channels-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .img.small.left,
  .img.small.right {
    width: 40%;
    top: 20px;
  }

  .img.small.left {
    left: -50px;
  }

  .img.small.right {
    right: -50px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .overlap-section {
    padding: 40px 20px;
  }

  .img.small.left,
  .img.small.right {
    width: 35%;
    top: 10px;
  }

  .img.small.left {
    left: -20px;
  }

  .img.small.right {
    right: -20px;
  }

  .brand-item {
    min-width: 160px;
    padding: 1.5rem 2rem;
  }

  .brand-icon {
    font-size: 2rem;
  }

  .brand-item span {
    font-size: 0.95rem;
  }
}
.footer-newsletter {
  margin-top: 20px;
}

.newsletter-title {
  color: #fff !important;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  max-width: 320px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  color: #333;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-btn {
  background: #0165f6 !important;
  border: none;
  width: 20% !important;
  border-radius: 6px;
  color: #111;
  font-size: 14px;
  height: 38px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 0px !important;
}

.newsletter-btn:hover {
  background: #bbcbe2;
}

.success-state {
  display: none;
  color: #0165f6;
  margin-top: 15px;
  font-size: 14px;
}