:root {
  --primary: #1084c3;
  --dark: #000;
  --light: #fff;
  --grey-100: #f8fafc;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;

  --primary-color: #1084c3;
  --secondary-color: #0a2540;
  --text-light: #fff;
  --text-dark: #0a2540;
  --accent-color: #ffd700;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Site Header
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: backdrop-filter 0.3s ease, background 0.3s ease;
  z-index: 10;
}

.site-header.scrolled {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.35);
}

.header-container {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
} */

/* Hero Section */

.hero-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.slider-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(100%);
  transition: transform 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  transform: translateX(0);
  z-index: 2;
}

.slide.current-bg {
  transform: translateX(0);
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 37, 64, 0.7),
    rgba(16, 132, 195, 0.4)
  );
}
/* . {
  color: white;
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
} */
.hero-content {
  position: relative;
  max-width: 960px;
  width: 90%;
  padding: 2rem 1.5rem;
  margin-top: 5rem;
  z-index: 2;
}

.note {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 1s ease-out;
}

.headline-container {
  height: auto;
  min-height: 50px;
  overflow: hidden;
  margin-bottom: 1rem;
  display: inline-block;
  min-width: 100%;
}

.headline {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  display: inline-block;
  /* This is the key change */
  /* width: 0; */
}

/* New CSS for the typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: rgba(255, 255, 255, 0.75);
  }
}

.subheadline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: black;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.subheadline.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-group {
  /* display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem; */
  margin-bottom: 2rem;
  /* flex-wrap: wrap; */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.cta-group.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn {
  padding: 14px 32px;
  background: var(--primary-color);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 132, 195, 0.4);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 132, 195, 0.6);
  background: #0e76ad;
}

.cta-btn.outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.rating.show {
  opacity: 1;
  transform: translateY(0);
}

.stars {
  font-size: 1.2rem;
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.stat {
  font-weight: 500;
}

.hero-slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--text-light);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-arrow.left {
  left: 15px;
}

.slider-arrow.right {
  right: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cta-btn {
    width: 220px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1.5rem 1rem;
  }

  .note {
    font-size: 0.75rem;
  }

  .rating {
    flex-direction: column;
    gap: 0.2rem;
  }

  .stat {
    font-size: 0.9rem;
  }

  /* Mobile-optimized slider animations */
  .slide {
    transition: transform 0.8s ease-in-out;
  }
}

/* Flag Carousel */
.flag-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.flag-carousel::before,
.flag-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 1;
}

.flag-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}

.flag-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scrollFlags 60s linear infinite;
  flex-shrink: 0;
}

/* Pause animation on hover */
.carousel-track:hover,
.carousel-track.row-2:hover,
.carousel-track.row-3:hover {
  animation-play-state: paused;
}

/* Flag container with tooltip */
.flag-item {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.flag-carousel img {
  height: 35px;
  width: auto;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.flag-item:hover img {
  transform: scale(1.2) translateY(-3px);
  box-shadow: 0 4px 12px rgba(16, 132, 195, 0.3);
}

/* Tooltip styling */
.flag-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: linear-gradient(135deg, var(--primary-color), #0e76ad);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(16, 132, 195, 0.4);
  z-index: 10;
}

.flag-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0e76ad;
}

.flag-item:hover .flag-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

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

/* New animations for alternating direction */
@keyframes scrollFlagsRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.carousel-track.row-2 {
  animation: scrollFlagsRight 60s linear infinite;
}

.carousel-track.row-3 {
  animation: scrollFlags 60s linear infinite;
}
/* Overall Container */
.about-us-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  align-items: stretch; /* Ensures both columns match height */
}

/* Left Column – About Us */
.about-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-section h2 {
  font-size: 32px;
  color: #007bce;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-section h2.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-section h1 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.about-section h1.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  opacity: 1;
  transform: translateY(0);
}

.about-section p:nth-of-type(1) {
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.about-section p:nth-of-type(2) {
  transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}

.about-section p.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Minimal Button Styling */
.minimal-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 20px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease, opacity 0.6s ease-out 0.8s, transform 0.6s ease-out 0.8s;
}

.minimal-btn.animate {
  opacity: 1;
  transform: translateY(0);
}

.minimal-btn:hover {
  background: var(--primary);
  color: white;
}

/* Right Column – Goals */
.goals-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.goals-title {
  font-size: 28px;
  font-weight: 700;
  color: #007bce;
  margin-bottom: 40px;
}

/* Goal Container */
.goals {
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: space-between;
  flex-grow: 1;
}

/* Stepped Spacing */
.step-1 {
  margin-left: 0px;
}
.step-2 {
  margin-left: 40px;
}
.step-3 {
  margin-left: 80px;
}

.goal {
  position: relative;
  padding-left: 60px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.goal.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Stacked Numbers */
.number-stack {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.number-stack span {
  position: absolute;
  color: #64748b; /* darker bluish-gray */
}

.number-stack .n1 {
  opacity: 0.5;
  top: 0;
  left: 0;
}

.number-stack .n2 {
  opacity: 0.25;
  top: 10px;
  left: 10px;
}

.number-stack .n3 {
  opacity: 0.1;
  top: 20px;
  left: 20px;
}

/* Goal Text */
.text {
  position: relative;
  z-index: 1;
}

.text h3 {
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: bold;
  color: #000;
}

.text p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  max-width: 420px;
}

/* Mobile view - Center button */
@media (max-width: 768px) {
  .about-us-container {
    flex-direction: column;
  }

  .minimal-btn {
    align-self: center;
  }
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats Section */
.stats {
  padding: 6rem 1.5rem;
  background: #fff;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allow stacking */
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.stat-item {
  flex: 1 1 calc(25% - 2rem); /* 4 per row on desktop */
  min-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #444;
}

/* Mobile: 1 per row */
@media (max-width: 768px) {
  .stat-item {
    flex: 1 1 100%;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.9rem;
  }
}

/* Base Styles */
.who-we-serve {
  padding: 2rem 1.5rem;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 3.5rem;
  color: #1a365d;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card Container - Fixed Dimensions */
.serve-card-container {
  perspective: 1000px;
  -webkit-perspective: 1000px;
  height: 420px;
  width: 100%;
}

/* Card Wrapper - Strict Dimensions */
.serve-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.serve-card-container:hover .serve-card-wrapper {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

/* Card Faces - Strict Dimensions */
.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Card Content Container - Ensures no overflow */
.card-content {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Front Card Specific Styles */
.card-front {
  background: linear-gradient(
    180deg,
    hsla(213, 55%, 60%, 1) 0%,
    hsla(220, 82%, 96%, 1) 79%,
    hsla(218, 85%, 97%, 1) 100%
  );
}

/* Back Card Specific Styles */
.card-back {
  background: white;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

/* Icon Area - Perfectly fitted SVG */
.icon-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.icon-area svg {
  width: 100%;
  height: 100%;
  max-width: 280px;
  max-height: 180px;
  object-fit: contain;
}

.serve-card-container:hover .icon-area {
  opacity: 0.12;
}

/* Text Area - Front */
.text-area {
  padding: 1.8rem;
  text-align: center;
}

.text-area h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1a365d;
}

.text-area p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2d3748;
  opacity: 0.9;
}

/* Back Content - Perfectly Centered */
.back-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
}

.back-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a365d;
}

.back-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2d3748;
  max-width: 90%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .serve-card-container {
    height: 380px;
  }

  .text-area h3,
  .back-content h3 {
    font-size: 1.6rem;
  }

  .text-area p,
  .back-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .who-we-serve {
    padding: 1.5rem 1rem;
  }

  .serve-card-container {
    height: 360px;
  }

  .text-area,
  .back-content {
    padding: 1.2rem;
  }

  .back-content p {
    max-width: 100%;
  }
}

/* Logo Carousel */

.logo-carousel {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  min-height: 350px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll-left 40s linear infinite;
  flex-wrap: nowrap;
  width: max-content;
}

.logo-row img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  opacity: 0.85;
  transition: all 0.4s ease;
  flex-shrink: 0;
  padding: 12px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo-row img:hover {
  filter: grayscale(0%) opacity(1);
  opacity: 1;
  transform: scale(1.12) translateY(-8px);
  box-shadow: 0 10px 25px rgba(16, 132, 195, 0.25);
}

.row-2 {
  animation: scroll-right 45s linear infinite;
}

.row-3 {
  animation: scroll-left 50s linear infinite;
}

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

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

.fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 5;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

/* Activities Section */
.activities-section {
  padding: 80px 1.5rem;
  background: var(--grey-100);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e293b;
}

.activities-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.activity-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.activity-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.activity-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.activity-description {
  font-size: 0.9rem;
  color: #64748b;
  flex: 1;
}

.activity-link {
  display: inline-block;
  margin-top: 12px;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.activity-link:hover {
  color: #1d4ed8;
}

/* LinkedIn Feed Section */
.linkedin-feed-section {
  margin-top: 40px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.category-header .category-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: #0a66c2;
}

.category-header .category-title i {
  font-size: 1.2em;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0a66c2;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.follow-btn:hover {
  background: #004182;
  transform: translateY(-2px);
}

.linkedin-posts-container {
  position: relative;
}

.linkedin-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.linkedin-post-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.linkedin-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.linkedin-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.linkedin-author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.linkedin-author-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.linkedin-post-time {
  font-size: 0.85rem;
  color: #64748b;
  margin: 2px 0 0 0;
}

.linkedin-post-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 16px;
}

.linkedin-post-media {
  margin: 16px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.linkedin-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.linkedin-post-image:hover {
  transform: scale(1.02);
}

.linkedin-post-engagement {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
  font-size: 0.85rem;
  color: #64748b;
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.engagement-item i {
  font-size: 0.9em;
}

.linkedin-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #0a66c2;
  font-size: 1.2em;
}

/* Loading States */
.loading-state {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid #0a66c2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-state {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
}

.retry-btn {
  background: #0a66c2;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s ease;
}

.retry-btn:hover {
  background: #004182;
}

/* Media Section */
.media-section {
  text-align: center;
  padding: 80px 1.5rem;
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.media-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.media-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.media-tab {
  background: none;
  border: 1px solid #ccc;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.media-tab.active {
  background: #000000;
  color: #fff;
  border-color: #0f172a;
}

/* Carousel Container */
.media-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.media-carousel {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  position: relative;
  padding: 15px 0;
}

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

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.9);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover:not(:disabled) {
  background: #1e293b;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow.left {
  left: 0;
}

.carousel-arrow.right {
  right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #0f172a;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #0f172a;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: #475569;
  border-color: #475569;
}

/* Media Cards */
.media-card {
  background: #0f1010;
  color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  min-width: calc(33.333% - 17px);
  max-width: calc(33.333% - 17px);
  flex-shrink: 0;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 450px;
}

.media-card.show {
  opacity: 1;
  transform: translateY(0);
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.media-card iframe,
.media-card img {
  width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.media-content {
  padding: 20px;
  background: #1e293b;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.media-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #f8fafc;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-height: 1.68rem;
}

.media-content p {
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
  max-height: 4.8rem;
}

.media-btn {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background: #2563eb;
  color: white;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;

  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

.media-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .media-carousel-container {
    padding: 0 50px;
  }
  
  .media-card {
    min-width: calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    height: 450px;
  }
}

@media (max-width: 768px) {
  .media-carousel-container {
    padding: 0 45px;
  }
  
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  
  .media-card {
    min-width: calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    height: 450px;
  }
  
  .media-card iframe,
  .media-card img {
    height: 180px;
  }
}

@media (max-width: 640px) {
  .media-section {
    padding: 60px 1rem;
  }
  
  .media-title {
    font-size: 2rem;
  }
  
  .media-carousel-container {
    padding: 0 40px;
  }
  
  .media-card {
    min-width: 100%;
    height: 450px;
    max-width: 100%;
  }
  
  .media-card iframe,
  .media-card img {
    height: 200px;
  }
  
  .carousel-arrow {
    width: 35px;
    height: 35px;
  }
}

.media-slider { margin: 1rem 0 2rem; position: relative; }
.media-slider-heading { margin: 0 0 .5rem; font-size:1.05rem; color:#111; }

.slider-viewport { overflow:hidden; width:100%; }
.slider-track { display:flex; transition:transform .36s ease; will-change:transform; }
.slider-item { box-sizing:border-box; padding:0 .75rem; flex:0 0 auto; min-width:260px; }

.media-card { background:#fff; border-radius:10px; box-shadow:0 6px 20px rgba(0,0,0,0.06); overflow:hidden; display:flex; flex-direction:column; height:100%; }
.media-card-image { display:block; width:100%; height:160px; background:#eee; overflow:hidden; }
.media-card-image img { width:100%; height:160px; object-fit:cover; display:block; }
.media-card-body { padding:.75rem; display:flex; flex-direction:column; min-height:110px; }
.media-card-title { margin:0 0 .25rem; font-size:1rem; color:#111; line-height:1.2; }
.media-card-excerpt { margin:0; color:#444; font-size:.92rem; flex:1; }
.media-card-date { display:block; font-size:.78rem; color:#777; margin-bottom:.25rem; }
.media-card-meta { margin-top:.5rem; font-size:.82rem; color:#888; }

.slider-controls { position:absolute; top:50%; transform:translateY(-50%); width:100%; display:flex; justify-content:space-between; pointer-events:none; padding:0 6px; }
.slider-controls button { pointer-events:auto; background:rgba(0,0,0,.75); color:#fff; border:0; width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.slider-controls button:disabled { opacity:.4; }

.slider-dots { display:flex; gap:6px; justify-content:center; margin-top:.5rem; }
.slider-dot { width:8px; height:8px; border-radius:50%; border:0; background:#e4e4e4; cursor:pointer; }
.slider-dot.active { background:#111; }

/* responsive increases visible items by JS; min-width controls basic item size */
@media (min-width:900px) { .slider-item { min-width:320px; } }
/* Reviews Section */
.reviews-section {
  padding: 60px 1.5rem;
  background-color: #f8f9fa;
  text-align: center;
}

.reviews-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-track-container {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
  padding: 10px 0;
}

.review-card {
  display: flex;
  flex: 0 0 auto;
  width: clamp(280px, 80vw, 500px);
  border-radius: 16px;
  overflow: hidden;
  min-height: 275px;
  background: #1f1f1f;
  color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.review-gradient {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  padding: 20px;
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.review-gradient h3 {
  margin: 0;
  font-size: 1.1rem;
}

.review-gradient .stars {
  margin: 5px 0;
  font-size: 1rem;
}

.review-gradient span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.review-text {
  padding: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

/* Styling for the profile photo */
.review-profile-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.review-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Adjust the .review-gradient to center the content */
.review-gradient {
  display: flex;
  flex-direction: column;
  align-items: center; /* This will center the items horizontally */
  justify-content: center;
  /* Other styles remain the same */
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  padding: 20px;
  flex: 0 0 25%;
  color: #fff;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.nav-btn {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #eee;
}

/* Help Section (New Styles) */
.help-section {
  background: #0d1117;

  color: white;
  padding: 100px 1.5rem;
}

.help-heading {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.help-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
}

.step-card.card-animation {
  animation: fadeInUp 0.8s ease-out;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.card-description {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* Responsive adjustment for list alignment */
  align-items: flex-start;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.bullet-point {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.green-bullet {
  background-color: #4ade80;
}
.blue-bullet {
  background-color: #60a5fa;
}
.yellow-bullet {
  background-color: #fcd34d;
}
.purple-bullet {
  background-color: #c084fc;
}
.pink-bullet {
  background-color: #f472b6;
}

.card-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base Styling for the Contact Section */
.contact-section {
  padding: 6rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #0d1117;
  color: #e2e8f0;
}

.contact-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  animation: fadeIn 1.2s ease-out;
}

.contact-heading {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-heading .highlight {
  color: var(--primary);
}

.contact-subheading {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

/* Glassmorphism Form Styling */
.contact-form {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent background */
  backdrop-filter: blur(20px); /* The key glassmorphism effect */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15); /* Light, semi-transparent border */
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); /* Soft, glassy shadow */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap; /* Allows inputs to wrap on smaller screens */
}

.form-group input,
.form-group textarea,
.form-group select {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  max-width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  box-sizing: border-box;
}

.form-group select {
  padding-right: 3rem;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="white"%3E%3Cpath d="M8 11L3 6h10l-5 5z"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group select:focus {
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="white"%3E%3Cpath d="M8 5l5 5H3l5-5z"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.form-group select:not(:focus) {
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="white"%3E%3Cpath d="M8 11L3 6h10l-5 5z"/%3E%3C/svg%3E');
}

.form-group textarea {
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Update the 'select' element within your form to style its options */
.form-group select option {
  background: #101c36;
  color: white;
}

.submit-btn {
  align-self: flex-end;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(167, 243, 208, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(167, 243, 208, 0.6);
}

/* Full-width form elements */
.form-group.full-width {
  flex-direction: column;
  width: 100%;
}

/* Cloudflare Turnstile Responsive Styling */
.cf-turnstile {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ensure the iframe inside Turnstile is responsive */
.cf-turnstile iframe {
  width: 100% !important;
  max-width: 300px;
  height: auto !important;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }
  .form-group {
    flex-direction: column;
    gap: 1rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-width: unset;
  }
  
  /* Cloudflare Turnstile Mobile Adjustments */
  .form-group.full-width {
    padding: 0;
    margin: 0;
  }
  
  .cf-turnstile {
    transform: scale(0.85);
    transform-origin: center;
    margin: -10px 0;
  }
  
  .submit-btn {
    align-self: stretch; /* Stretch button to full width */
  }
}

/* General Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#contact-cards {
  background: #0d1117;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
}

#contact-cards .card {
  background: #161b22;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

#contact-cards .card-logo {
  height: 60px;
  margin-bottom: 1rem;
}

#contact-cards h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #60a5fa;
}

#contact-cards p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: #a0aec0;
}

#contact-cards p i {
  margin-right: 0.5rem;
  color: #60a5fa;
}

#contact-cards a {
  color: #60a5fa;
  text-decoration: none;
}
#contact-cards a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  #contact-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer Styling */
.footer {
  background: #1f1d36;
  color: #fff;
  padding: 3rem 1.5rem 1rem;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light); */

.footer-logo {
  height: 65px; /* adjust height */
  width: auto; /* keep aspect ratio */
  display: inline-block;
}

.footer-brand i {
  color: #60a5fa;
}

.footer-about p {
  color: #9ca3af;
  line-height: 1.6;
  max-width: 28rem;
  margin-bottom: 2rem;
}

/* Footer contact details styling */
.footer-contact-details {
  margin-bottom: 1.5rem;
}

.footer-contact-details p {
  margin-bottom: 0.25rem;
  color: #d1d5db;
}

.footer-contact-details strong {
  color: #f3f4f6;
  margin-right: 0.5rem;
}

.footer-contact-details a {
  color: #60a5fa;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-contact-details a:hover {
  color: #93c5fd;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
  align-items: center;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Colors for social icons */
.social-icon.bg-email{
  background-color: #6fcf97;
}

.social-icon.bg-linkedin {
  background-color: #0a66c2;
}

.social-icon.bg-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.social-icon.bg-youtube {
  background-color: #ff0000;
}

.social-icon.bg-telegram {
  background-color: #0088cc;
}


/* Hover effects */
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  font-size: 1.2rem;
  color: white; /* Explicitly set icon color to white */
  transition: color 0.3s ease;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.developer-credit {
  font-size: 0.875rem;
  color: #9ca3af;
  text-align: right;
}

.developer-credit a {
  color: white;
  text-decoration: none;
  margin-left: 0.25rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.developer-credit a:hover {
  color: #60a5fa;
  cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .developer-credit {
    text-align: center;
  }
}

/* ===================== */
/* Mobile Responsiveness */
/* ===================== */



@media (max-width: 768px) {
  /* Hero section */
  .hero {
    min-height: 80vh;
    padding: 2rem 1rem;
  }

  .headline {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .subheadline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* About section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Who we serve */
  .serve-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews section */
  .review-card {
    flex-direction: column;
    min-height: auto;
  }

  .review-gradient {
    flex: auto;
  }

  /* Help section */
  .help-container {
    flex-direction: column;
    gap: 2rem;
  }

  .help-item {
    font-size: 1.2rem;
  }

  /* Contact section */
  .contact-form {
    padding: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-social {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand {
    border: none;
  }

  .social-icons {
    justify-content: center;
  }

  /* LinkedIn Feed Mobile Styles */
  .category-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .follow-btn {
    align-self: flex-end;
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .linkedin-posts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .linkedin-post-card {
    padding: 16px;
  }

  .linkedin-post-header {
    gap: 10px;
  }

  .linkedin-author-image {
    width: 40px;
    height: 40px;
  }

  .linkedin-post-image {
    height: 180px;
  }

  .linkedin-post-content {
    font-size: 0.9rem;
  }

  .linkedin-post-engagement {
    gap: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  /* LinkedIn post images on small screens */
  .linkedin-post-image {
    height: 160px;
  }
  
  /* Cloudflare Turnstile for very small screens */
  .cf-turnstile {
    transform: scale(0.75) !important;
    transform-origin: center;
    margin: -15px 0;
    width: 100% !important;
    overflow: visible;
  }
  
  .form-group.full-width {
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  
  /* Contact form adjustments for very small screens */
  .contact-form {
    padding: 1rem;
    margin: 0 10px;
  }
}

/* Extra small screens (under 360px) */
@media (max-width: 360px) {
  .cf-turnstile {
    transform: scale(0.65) !important;
    margin: -20px 0;
  }
  
  .contact-form {
    padding: 0.75rem;
    margin: 0 5px;
  }
}

/* ========================================
   COMPONENT-SPECIFIC STYLES
   Using unique prefixed classes with EXACT original styling
   ======================================== */



/* Mobile Responsiveness - Footer Component */
@media (max-width: 768px) {
  .csi-component-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .csi-component-footer-brand {
    justify-content: center;
  }
  
  .csi-component-footer-social {
    justify-content: center;
  }
}
