/* ==================== General Styles ==================== */

:root {
  --primary-color: #002868;
  --secondary-color: #1a1a1a;
  --accent-color: #dc143c;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
  --primary: #667eea;
  --secondary: #764ba2;
  --bg: #f4f7fb;
  --card: rgba(255, 255, 255, 0.75);
  --text: #1a202c;
}

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

html {
  scroll-behavior: smooth;
  
}

@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 14.5px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13.5px;
  }
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #1a202c;
  background: #f4f7fb;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

section {
  overflow: hidden;
}

/* ==================== Navigation ==================== */
.navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Bootstrap default nav text size */
.nav-link {
  font-weight: 500;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  margin: 0 1rem;
  color: var(--text-dark) !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

/* underline hover animation */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ==================== Dropdown Styling ==================== */

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle {
  position: relative;
}

/* Dot indicator */
.dropdown-toggle::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::before {
  opacity: 1;
  transform: scale(1.2);
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  margin-top: 0.1rem;
  animation: dropdownSlide 0.3s ease-out;
}

/* dropdown animation */
@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bootstrap default dropdown text */
.dropdown-item {
  padding: 0.6rem 1.5rem;
  font-size: 1rem; /* Bootstrap default */
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--accent-color);
  padding-left: 2rem;
}

.dropdown-item:active {
  background-color: transparent;
  color: var(--accent-color);
}

/* ==================== Hover Dropdown (Desktop Only) ==================== */

@media (min-width: 992px) {
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .dropdown:hover > .dropdown-menu {
    display: block !important;
  }

  .dropdown > .dropdown-menu:hover {
    display: block !important;
  }
}

.dropdown-toggle {
  padding-bottom: 0.5rem;
}

/* ==================== CTA Button ==================== */

.btn-demo {
  background: linear-gradient(135deg, #dc143c 0%, #c41e3a 100%);
  color: white;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  padding: clamp(10px, 1.8vw, 16px) clamp(20px, 3vw, 40px);
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
  color: white;
}

/* Bootstrap button sizes */
.btn-primary,
.btn-outline-primary {
  font-size: 1rem;
}

/* ==================== Hero Section ==================== */

.hero-section {
  min-height: 520px;
  background: linear-gradient(
    135deg,
    #002868 0%,
    #003d82 25%,
    #dc143c 50%,
    #c41e3a 75%,
    #002868 100%
  );
  color: white;
  padding: clamp(60px, 8vw, 140px) 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideInUp 0.8s ease-out 0.1s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.btn-demo-45 {
  background: white;
  color: #dc143c;
  border: none;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  padding: clamp(10px, 1.8vw, 16px) clamp(20px, 3vw, 40px);
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  animation: slideInUp 0.8s ease-out 0.3s both;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.btn-demo-45:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  color: #dc143c;
  background: #f0f0f0;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 968px) {
  nav {
    gap: 15px;
  }
}
/* ==================== Brands Section ==================== */

.brands-section {
  padding: 3rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  overflow: hidden;
}

/* Track */
.brands-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

/* Each row */
.brands-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}

/* Continuous anti-clockwise */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Brand styling */
.brand-item {
  color: white;
  font-size: clamp(1.25rem, 3vw, 0.75rem);
  padding: 0 3rem;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.brand-item:hover {
  transform: scale(1.15);
}

/* Mobile speed */
@media (max-width: 768px) {
  .brands-track {
    animation-duration: 14s;
  }
}

/* ==================== Section Styling ==================== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* ==================== Benefits Section ==================== */

.benefit-icon {
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  font-size: clamp(20px, 3vw, 34px);
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-section {
  padding: 80px 0;
  background: #f0efef81;
}

.benefits-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #333333;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
}

.benefit-card {
  background: #f9fafb;
  padding: clamp(18px, 3vw, 40px);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

.benefit-card-blue:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05),
    rgba(0, 153, 255, 0.05)
  );
  border-color: #0066ff;
}

.benefit-card-red:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 51, 51, 0.05),
    rgba(220, 20, 60, 0.05)
  );
  border-color: #ff3333;
}

.benefit-card-yellow:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.05),
    rgba(255, 204, 0, 0.05)
  );
  border-color: #ff9900;
}

.benefit-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: var(--transition);
}

.icon-box {
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  font-size: clamp(20px, 3vw, 34px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.benefit-card-blue .benefit-icon {
  background: linear-gradient(135deg, #0099ff, #0066ff);
}

.benefit-card-blue:hover .benefit-icon {
  background: linear-gradient(135deg, #0066ff, #003d99);
  transform: scale(1.1);
}

.benefit-card-red .benefit-icon {
  background: linear-gradient(135deg, #ff6666, #ff3333);
}

.benefit-card-red:hover .benefit-icon {
  background: linear-gradient(135deg, #ff3333, #cc0000);
  transform: scale(1.1);
}

.benefit-card-yellow .benefit-icon {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
}

.benefit-card-yellow:hover .benefit-icon {
  background: linear-gradient(135deg, #ff9900, #cc6600);
  transform: scale(1.1);
}

/* Green Card Hover Background */
.benefit-card-green:hover {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.05),
    rgba(16, 163, 74, 0.05)
  );
  border-color: #22c55e;
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.25);
}

/* Green Icon Background */
.benefit-card-green .benefit-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Green Icon Hover */
.benefit-card-green:hover .benefit-icon {
  background: linear-gradient(135deg, #16a34a, #0f7a3b);
  transform: scale(1.1);
}

/* Green Title */
.benefit-card-green .benefit-title {
  color: #16a34a;
}

/* Green Title Hover */
.benefit-card-green:hover .benefit-title {
  color: #0f7a3b;
}

.benefit-icon svg {
  width: 60px;
  height: 60px;
}

.benefit-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.benefit-card-blue .benefit-title {
  color: #0066ff;
}

.benefit-card-blue:hover .benefit-title {
  color: #003d99;
}

.benefit-card-red .benefit-title {
  color: #ff3333;
}

.benefit-card-red:hover .benefit-title {
  color: #cc0000;
}

.benefit-card-yellow .benefit-title {
  color: #ff9900;
}

.benefit-card-yellow:hover .benefit-title {
  color: #cc6600;
}

.benefit-subtitle-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ==================== How We Work Section ==================== */
.how-we-work-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.how-we-work-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 40, 104, 0.02) 0%,
    rgba(220, 20, 60, 0.02) 100%
  );
  pointer-events: none;
}

.how-we-work-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.how-we-work-description {
  font-size: 1.05rem;
  color: #333333;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 500;
}

/* Curve */
.s-wrapper {
  position: relative;
  max-width: 420px;
  height: 720px;
  margin: auto;
}

.s-path path {
  fill: none;
  stroke: url(#grad);
  stroke-width: 8;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw 3s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Step container */
.step {
  position: absolute;
  transform: translateX(-50%);
}

/* Unified layout */
.step-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

/* Unified icon */
.step-circle {
  width: 70px;
  height: 70px;
  font-size: clamp(20px, 3vw, 34px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
  flex-shrink: 0;
  transition: 0.3s;
}

/* Unified auto-sized card */
.step-card {
  background: var(--card);
  padding: 16px 18px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  display: inline-block;
  width: 300px;
  max-width: 100%;
}

/* Unified hover */
.step:hover .step-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(102, 126, 234, 0.35);
}

.step:hover .step-circle {
  transform: scale(1.12);
}

/* Unified text */
.step-title {
  font-weight: 700;
  font-size: 20px;
}

.step-desc {
  font-size: 13px;
  opacity: 0.8;
}

/* Positions */
.step1 {
  top: 0px;
  left: 100%;
}

.step2 {
  top: 220px;
  left: -10%;
}

.step3 {
  top: 390px;
  left: 100%;
}

.step4 {
  top: 590px;
  left: -10%;
}

/* Mobile timeline */
@media (max-width: 768px) {
  .s-wrapper {
    height: auto;
  }

  .s-path {
    display: none;
  }

  .step {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    margin-bottom: 30px;
  }

  .step-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== Why Choose Us Section ==================== */
.why-choose-us-section {
  background: #c6c6c67f;
  padding: 80px 0;
}

.why-choose-us-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666666;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
}

.why-choose-us-description {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  margin: auto;
}

/* Vertical Card Layout */
.vertical-cards {
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Base Card */
.vertical-card {
  display: flex;
  width: 100%;
}

.vertical-card.left {
  justify-content: flex-start;
}

.vertical-card.right {
  justify-content: flex-end;
}

.card-content {
  background: linear-gradient(145deg, #c8c5c5, #f0f5ff);
  width: 60%;
  padding: clamp(18px, 3vw, 40px);
  border-radius: 20px;
  border: 1px solid rgba(0, 40, 104, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  backdrop-filter: blur(6px);
}

/* Hover Effect */
.card-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 40, 104, 0.25);
  border-color: #bf0a30;
  /* USA red */
}

/* USA Accent Strip */
.card-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 6px;
  height: 70%;
  background: linear-gradient(
    180deg,
    #002868,
    /* USA blue */ #ffffff,
    #bf0a30 /* USA red */
  );
  border-radius: 6px;
}

/* Text */
.card-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #002868;
  /* USA blue */
}

.card-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
  .card-content {
    width: 100%;
    padding: 30px;
  }

  .vertical-card.left,
  .vertical-card.right {
    justify-content: center;
  }
}
/* ==================== Customer Success Section ==================== */

.customer-success-section {
  background: linear-gradient(135deg, #dc143c 0%, #002868 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.success-content {
  color: white;
  z-index: 2;
  position: relative;
}

.success-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  color: white;
}

.success-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: white;
}

.success-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 500;
  color: white;
}

.success-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-demo-success {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-demo-success:hover {
  background: white;
  color: #dc143c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-see-customers {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-see-customers:hover {
  opacity: 0.85;
  gap: 0.75rem;
  color: white;
  transform: translateX(5px);
}

.success-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.stat-card {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: white;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  height: 100%;
}

.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.customer-success-section .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.customer-success-section .stat-text {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.95;
  color: white;
}

/* Responsive Design for Customer Success Section */
@media (max-width: 991px) {
  .customer-success-section {
    padding: 60px 0;
  }

  .success-content {
    margin-bottom: 3rem;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

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

  .success-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-demo-success,
  .btn-see-customers {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .success-stats {
    justify-content: flex-start;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .customer-success-section .stat-number {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 768px) {
  .customer-success-section {
    padding: 40px 0;
  }

  .success-title {
    font-size: 1.75rem;
  }

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

  .stat-card {
    padding: 1.25rem;
  }

  .customer-success-section .stat-number {
    font-size: 1.75rem;
  }

  .customer-success-section .stat-text {
    font-size: 0.85rem;
  }
}

/* ==================== Scrollbar ==================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0052cc;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

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

  .feature-card,
  .step-card,
  .dataset-card,
  .pricing-card {
    margin-bottom: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .hero-image {
    font-size: 8rem;
    margin-top: 2rem;
  }

  .about-image {
    font-size: 8rem;
    margin-top: 2rem;
  }

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

  .hero-section::before {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -100px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
  }

  .navbar-brand {
    margin-right: 1rem;
  }

  .nav-link {
    margin: 0.5rem 0;
  }

  .navbar-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
  }

  .btn-signin,
  .btn-demo {
    width: 100%;
    text-align: center;
  }

  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }

  .brand-item {
    font-size: 0.75rem;
  }
}

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

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

  .navbar-brand {
    font-size: 1.25rem;
  }

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

  .footer .row {
    text-align: center;
  }

  .footer .col-md-6:last-child {
    margin-top: 1rem;
  }

  .filter-buttons .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

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

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

/*==================== Testimonials Slider ===========*/

.testimonial-section {
  background: #c6c6c644;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.subtitle {
  color: #0c9a8c;
  font-weight: 600;
}

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

.slider-wrapper {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}
.stars {
  margin: 12px 0;
  color: #fbbf24;
  font-size: 1.1rem;
}

/* ✅ SLOW & SMOOTH SLIDER */
.slider {
  display: flex;
  transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 50%;
  padding: 30px;
}

.testimonial-card-inner {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
}

.quote {
  font-size: 50px;
  color: #0c9a8c;
  position: absolute;
  top: 15px;
  left: 20px;
}

.testimonial-card p {
  margin: 40px 0 25px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.user h4 {
  color: #0c9a8c;
}

.user small {
  color: #777;
}

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

.dots span {
  width: 10px;
  height: 10px;
  margin: 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dots span.active {
  background: #0c9a8c;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .slider {
    transition-duration: 2.2s;
  }
}

/* ==================== Footer ==================== */

.footer {
  background: #012d77;
  color: var(--light-bg);
  padding: clamp(40px, 6vw, 80px) 20px;
}

/* Footer Logo Styling */
.footer-logo {
    width: clamp(110px, 18vw, 160px);
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--light-bg);
}

.footer-section p,
.footer-section a {
  color: var(--light-bg);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

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