/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 0; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { font-size: 1rem; color: #475569; }

/* ========== REUSABLE COMPONENTS ========== */

/* Section Header Shared Styles */
.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-center h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a3d62;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.header-underline {
  width: 50px;
  height: 3px;
  background-color: #e67e22;
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-subheadline-center {
  font-size: 2.5rem;
  color: #64748b;
  max-width: 1400px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background-color: #0a3d62;
  color: white;
  box-shadow: 0 4px 12px rgba(10, 61, 98, 0.2);
}

.btn-primary:hover {
  background-color: #0e4d7a;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #e67e22;
  color: white;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.btn-secondary:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #0a3d62;
  border: 1.5px solid #0a3d62;
  padding: 0.7rem 1.5rem;
}

.btn-outline:hover {
  background-color: #0a3d62;
  color: white;
}

.btn-about {
  background-color: #0a3d62;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(10, 61, 98, 0.2);
}

.btn-about:hover {
  background-color: #0e4d7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 61, 98, 0.3);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 1.25rem 0;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #0a3d62;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e67e22;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-trigger i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f8fafc;
  color: #e67e22;
  padding-left: 1.5rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: #0a3d62;
  transition: 0.2s;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Hero Dots */
.hero-dots-horizontal {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.hero-dot.active {
  width: 30px;
  border-radius: 10px;
  background-color: #e67e22;
}

/* Hero Content */
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: white;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background-color: #e67e22;
  color: white;
}

.hero .btn-primary:hover {
  background-color: #d35400;
}

.hero .btn-outline {
  background-color: transparent;
  color: white;
  border-color: white;
}

.hero .btn-outline:hover {
  background-color: white;
  color: #0a3d62;
}

/* ========== WHO WE ARE SECTION ========== */
.who-we-are {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #e3e4e6 100%);
}

.who-we-are-header {
  text-align: center;
  margin-bottom: 3rem;
}

.who-we-are-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a3d62;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.who-we-are-header .section-subheadline-center {
  color: #e67e22;
}

.who-we-are-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}

/* Who We Are - Image */
.who-image-modern {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-frame:hover img {
  transform: scale(1.02);
}

.image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(10, 61, 98, 0.7), transparent);
  pointer-events: none;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a3d62;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-badge i {
  color: #e67e22;
  font-size: 0.9rem;
}

/* Who We Are - Content */
.who-content-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.who-text-modern p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 1rem;
}

.who-text-modern p:last-child {
  margin-bottom: 0;
}

.who-text-modern strong {
  color: #0a3d62;
  font-weight: 700;
}

/* Stats - Full Width Below Both Columns */
.who-stats {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #e67e22;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-button-wrapper {
  margin-top: 0.5rem;
}

/* ========== COMPANIES SECTION ========== */
.companies {
  padding: 5rem 0;
  background-color: #ffffff;
}

.companies-header {
  text-align: center;
  margin-bottom: 3rem;
}

.companies-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a3d62;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.companies-header .section-subheadline-center {
  color: #e67e22;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.company-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.company-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.75rem;
}

.card-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0a3d62;
  line-height: 1.3;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
  margin-bottom: 1.5rem;
}

/* ========== WHY INDUSTRY LEADERS SECTION ========== */
.why-industry-leaders {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #e3e4e6 100%);
}

.why-leaders-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-leaders-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a3d62;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.why-leaders-header .section-subheadline-center {
  color: #e67e22;
}

.why-leaders-wrapper {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.why-leaders-image {
  flex: 1;
  position: relative;
}

.image-frame-leaders {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
}

.image-frame-leaders img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-frame-leaders:hover img {
  transform: scale(1.02);
}

.image-overlay-leaders {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(10, 61, 98, 0.6), transparent);
  pointer-events: none;
  border-radius: 0 0 24px 24px;
}

.why-leaders-content {
  flex: 1;
}

.leaders-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 2rem;
}

.leaders-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.leader-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-bullet {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-bullet i {
  font-size: 0.6rem;
  color: #e67e22;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.leaders-button-wrapper {
  margin-top: 0.5rem;
}

.btn-leaders {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #e67e22;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
}

.btn-leaders:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.35);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-single {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a3d62;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.testimonials-header .section-subheadline-center {
  color: #e67e22;
}

.testimonial-carousel {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 380px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-card-single {
  background: #e3e4e6;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid #eef2f6;
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.quote-icon i {
  font-size: 2.5rem;
  color: #e67e22;
  opacity: 0.5;
}

.testimonial-text-single {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.author-image-single {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e67e22;
  padding: 2px;
}

.author-image-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info-single {
  text-align: left;
}

.author-info-single h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.author-info-single span {
  font-size: 0.8rem;
  color: #64748b;
}

/* Testimonial Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 28px;
  border-radius: 10px;
  background-color: #e67e22;
}

.dot:hover {
  background-color: #e67e22;
}

/* ========== INSIGHTS & UPDATES SECTION ========== */
.insights {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #e3e4e6 100%);
}

.insights-header {
  text-align: center;
  margin-bottom: 3rem;
}

.insights-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a3d62;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.insights-header .section-subheadline-center {
  color: #e67e22;
}

/* Carousel */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  overflow: hidden;
  flex: 1;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  color: #0a3d62;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover {
  background-color: #e67e22;
  border-color: #e67e22;
  color: white;
  transform: scale(1.05);
}

/* Insight Cards */
.insight-card {
  flex: 0 0 385px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.insight-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #e67e22;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insight-content {
  padding: 1.5rem;
}

.insight-date {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
  margin-bottom: 0.5rem;
}

.insight-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.insight-content p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e67e22;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 0.75rem;
  color: #d35400;
}

/* View All Button */
.view-all-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: transparent;
  color: #0a3d62;
  border: 2px solid #0a3d62;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: #0a3d62;
  color: white;
  transform: translateY(-2px);
}

/* ========== CTA SECTION ========== */
.cta {
  background: #0f172a;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}

.cta-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding-top: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-col p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  text-decoration: none;
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #e67e22;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-large {
    grid-column: span 2;
  }
  
  .insight-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 80vh;
  }

  .hero-container {
    flex-direction: column;
    text-align: left;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .who-we-are-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .who-stats {
    gap: 1rem;
    padding: 1.2rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  .who-image-modern {
    order: 1;
  }
  
  .who-content-modern {
    order: 2;
  }
  
  .why-leaders-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  
  .why-leaders-image {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  
  /* Mobile Navigation */
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(70vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 1.5rem;
    transition: left 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 1.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
  }
  
  .dropdown-menu a:hover {
    padding-left: 1.5rem;
    background: transparent;
  }
}

@media (max-width: 768px) {
  .carousel-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .carousel-track {
    gap: 0;
    width: 100%;
  }
  
  .insight-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    scroll-snap-align: start;
  }
  
  .carousel-btn {
    display: none !important;
  }
  
  .testimonials-single {
    padding: 3rem 0;
  }
  
  .testimonial-card-single {
    padding: 1.8rem;
  }
  
  .testimonial-text-single {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .quote-icon i {
    font-size: 2rem;
  }
  
  .author-image-single {
    width: 50px;
    height: 50px;
  }
  
  .author-info-single h4 {
    font-size: 0.9rem;
  }
  
  .author-info-single span {
    font-size: 0.7rem;
  }
  
  .testimonial-carousel {
    max-width: 100%;
  }
  
  .testimonial-track {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-dots-horizontal {
    bottom: 80px;
    gap: 10px;
  }
  
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-dot.active {
    width: 20px;
  }
  
  .who-stats {
    flex-direction: row;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }

  .section-subheadline-center {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
  }

  .companies-grid {
    grid-template-columns: 1fr;
  }
  
  .why-industry-leaders {
    padding: 3rem 0;
  }
  
  .leaders-description {
    font-size: 0.95rem;
  }
  
  .btn-leaders {
    width: 100%;
    justify-content: center;
  }

  .about-button-wrapper .btn-about {
    width: 100%;
    justify-content: center;
  }
  
  .leader-feature {
    gap: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .image-badge {
    bottom: 15px;
    left: 15px;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .insight-card {
    flex: 0 0 100px;
  }
  
  .insight-content h3 {
    font-size: 1rem;
  }
  
  .testimonial-card-single {
    padding: 1.5rem;
  }
  
  .testimonial-author-single {
    flex-direction: column;
    text-align: center;
  }
  
  .author-info-single {
    text-align: center;
  }
  
  .testimonial-track {
    min-height: 250px;
  }
  
  .testimonial-text-single {
    font-size: 0.9rem;
  }

  /* CTA */
  .cta {
    padding: 2.5rem 1rem;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  /* Footer */

  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    font-size: 0.75rem;
  }
  
  .social-links {
    justify-content: left;
  }
  
  .contact-info li {
    justify-content: left;
    font-size: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
  
  .footer-bottom a {
    font-size: 0.75rem;
  }
}