/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

:root {
  --primary-color: #0f294b;
  --primary-light: #203c6b;
  --accent-color: #f8a01b;
  --accent-light: #ffc96b;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-accent: 0 5px 15px rgba(248, 160, 27, 0.3);
  --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  --blur-effect: blur(10px);
  --body-font: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
  --heading-font: 'Segoe UI Semibold', 'Segoe UI Web Semibold', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

/* Global styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

section {
  position: relative;
  padding:0;
  transition: var(--transition-standard);
}

/* Add subtle grain texture to sections */
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Header styles */
.header {
  width: 100%;
  background:#ffffff;
  padding: 1rem 2rem; /* Use rem for padding */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.header--scrolled {
  padding: 1rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

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

.header__logo img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1);
  opacity: 0.95;
}

.header--scrolled .header__logo img {
  height: 60px;
}

.header__logo img:hover {
  opacity: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-family: var(--body-font);
}

.header--scrolled .nav__link {
  color: var(--primary-color);
}

.nav__divider {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.header--scrolled .nav__divider {
  color: var(--accent-color);
}

.nav__link:hover {
  color: var(--accent-color);
}

.header--scrolled .nav__link:hover {
  color: var(--accent-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.header__search {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.2rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.header__search:hover {
  color: var(--accent-color);
}

.header--scrolled .header__search {
  color: var(--primary-color);
}

.header--scrolled .header__search:hover {
  color: var(--accent-color);
}

/* Mobile menu toggle */
.header__mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1010;
}

.header__mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.header--scrolled .header__mobile-toggle span {
  background: var(--primary-color);
}

.header__mobile-toggle span:nth-child(1) {
  top: 0;
}

.header__mobile-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__mobile-toggle span:nth-child(3) {
  bottom: 0;
}

.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

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

.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

@media (max-width: 992px) {
  .header__mobile-toggle {
    display: block;
  }
  
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-color);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .header__nav.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav__link {
    color: white;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .header--scrolled .nav__link {
    color: white;
  }
  
  .nav__divider {
    display: none;
  }
  
  .header__search {
    margin: 1rem 0 0;
    color: white;
  }
  
  .header--scrolled .header__search {
    color: white;
  }
}

/* Modern scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Enhanced Hero Section */
.hero {
    height: 80vh; /* Reduced from 100vh to 80vh for better section visibility */
  position: relative;
  background-color: var(--primary-light);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.7) 0%, rgba(10, 31, 68, 0.5) 100%);
  z-index: 1;
}

.hero__slider {
  margin-top: 10px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero__slides {
  height: 120%;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
  z-index: 2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(66, 88, 126, 0.3) 0%, rgba(10, 31, 68, 0.2) 100%);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero__slide.active {
  transform: translateX(0);
}

.hero__content {
  position: relative;
  text-align: left;
  color: white;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out both;
  margin-left: 8rem;
}

.hero__content h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-family: var(--heading-font);
}

.hero__description {
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
  max-width: 600px;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  z-index: 5;
  position: relative;
}

.hero__cta .btn {
  padding: 0.8rem 1.8rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero__cta .btn--primary {
  background: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
}

.hero__cta .btn--primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

.hero__cta .btn--outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero__cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .slider-btn:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.hero .slider-btn--prev {
  left: 2rem;
}

.hero .slider-btn--next {
  right: 2rem;
}

/* Hero Navigation Dots */
.hero__indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero__indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.hero__indicator.active {
  background: white;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


@media (max-width: 992px) {
  .hero__content h1 {
    font-size: 2.8rem;
  }
  
  .hero__description {
    font-size: 1.1rem;
  }
  
  .hero__subheading {
    font-size: 1.2rem;
  }
  
  .hero .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .hero .slider-btn--prev {
    left: 1rem;
  }
  
  .hero .slider-btn--next {
    right: 1rem;
  }
  
  .hero__indicators {
    bottom: 1.5rem;
  }
  
  .hero__indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .hero__content h1 {
    font-size: 2rem;
  }
  
  .hero__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero__subheading {
    font-size: 1rem;
  }
  
}

@media (max-width: 576px) {
  .hero__content h1 {
    font-size: 1.8rem;
  }
  
  .hero__subheading {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .hero .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .hero__indicators {
    bottom: 1rem;
    gap: 0.3rem;
  }
  
  .hero__indicator {
    width: 8px;
    height: 8px;
  }
}



.welcome {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(135deg, #f9f9f9 0%, #f3f3f3 100%);
  overflow: hidden;
  z-index: 1;
}

.welcome::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 41, 75, 0.03) 0%, rgba(15, 41, 75, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.welcome::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 160, 27, 0.05) 0%, rgba(248, 160, 27, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.welcome .container {
  position: relative;
  z-index: 2;
}

.welcome h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-family: var(--heading-font);
}

.welcome h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  box-shadow: 0 2px 5px rgba(248, 160, 27, 0.3);
}

.welcome p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  font-family: var(--body-font);
}

/* Services Section */
.services {
  background: linear-gradient(145deg, rgba(15, 41, 75, 0.05) 0%, rgba(15, 41, 75, 0.1) 100%);
  padding: 3rem 0 5rem 0;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  top: -10%;
  right: -10%;
  background: radial-gradient(circle, rgba(248, 160, 27, 0.1) 0%, rgba(248, 160, 27, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.services::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 40%;
  bottom: -5%;
  left: -5%;
  background: radial-gradient(circle, rgba(15, 41, 75, 0.08) 0%, rgba(15, 41, 75, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.services__subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  position: relative;
  z-index: 2;
  font-family: var(--body-font);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-card__inner {
  background: var(--primary-color);
  padding: 3rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.service-card:hover .service-card__inner {
  background: var(--primary-light);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: 1;
}

.service-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-card h3 {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  transition: color 0.3s ease;
  font-family: var(--heading-font);
}

.service-card:hover h3 {
  color: var(--accent-color);
}

.service-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-family: var(--body-font);
}

.service-card .btn.btn--read-more {
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  margin-top: auto;
}

.service-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 992px) {
  .service-card__inner {
    padding: 2.5rem 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 1rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-card__inner {
    padding: 2rem 1.5rem;
  }
  
  .service-card__icon {
    width: 70px;
    height: 70px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  text-align: center;
}

.testimonials h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-family: var(--heading-font);
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
  height: 300px;
}

.testimonials__slider {
  position: relative;
  height: 300px;
  max-width: 1400px;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial {
  width: 100%;
  min-height: 300px;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(15, 41, 75, 0.1);
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial.active {
  opacity: 1;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial.prev-2,
.testimonial.prev-1,
.testimonial.next-1,
.testimonial.next-2 {
  display: none;
}

/* Testimonial Navigation Buttons */
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-btn:hover {
  background: var(--accent-light);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-btn--prev {
  left: -70px;
}

.testimonial-btn--next {
  right: -70px;
}

@media (max-width: 1200px) {
  .testimonials__slider {
    max-width: 700px;
  }
  
  .testimonial-btn--prev {
    left: -60px;
  }
  
  .testimonial-btn--next {
    right: -60px;
  }
}

@media (max-width: 768px) {
  .testimonials__slider {
    max-width: 90%;
    margin: 2rem auto;
  }
  
  .testimonial {
    padding: 1.5rem;
    min-height: 250px;
  }
  
  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .testimonial-btn--prev {
    left: -50px;
  }
  
  .testimonial-btn--next {
    right: -50px;
  }
}

@media (max-width: 576px) {
  .testimonials__slider {
    max-width: 95%;
    margin: 1.5rem auto;
  }
  
  .testimonial {
    padding: 1rem;
    min-height: 200px;
  }
  
  .testimonial-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .testimonial-btn--prev {
    left: -40px;
  }
  
  .testimonial-btn--next {
    right: -40px;
  }
}

.testimonial p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
  padding: 0 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: var(--body-font);
  z-index: 2;
}

.testimonial p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  transition: all 0.3s ease;
}

.testimonial.active:hover p::before {
  opacity: 0.6;
  transform: translateY(-3px);
}

.testimonial-author {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 2rem;
  position: relative;
  font-family: var(--heading-font);
}

.testimonial-author::before {
  content: '—';
  color: var(--accent-color);
  font-weight: 400;
}

.testimonial.active:hover .testimonial-author {
  color: var(--accent-color);
}

.testimonial-position {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.testimonial.active:hover .testimonial-position {
  opacity: 1;
  transform: translateX(5px);
}

.testimonial-company {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial.active:hover .testimonial-company {
  border-top-color: var(--accent-color);
}

.testimonial-logo {
  max-height: 40px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.testimonial-company-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.testimonial.active:hover .testimonial-company-name {
  opacity: 1;
  color: var(--accent-color);
}

.testimonial.active:hover .testimonial-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Button Enhancements */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 500;
  transition: var(--transition-standard);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition-standard);
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
}

.btn--primary {
  background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
  color: white;
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(247, 169, 40, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn.btn--read-more {
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  border: 2px solid transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn.btn--read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-color);
  transition: width 0.3s ease;
  z-index: -1;
}

.service-card:nth-child(2) .btn--read-more::before,
.service-card:nth-child(3) .btn--read-more::before,
.service-card:nth-child(4) .btn--read-more::before {
  background: var(--accent-color);
}

.service-card .btn.btn--read-more:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  border: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev {
  left: -22px;
}

.carousel-btn--next {
  right: -22px;
}

@media (max-width: 992px) {
  .carousel-slide {
    flex-direction: column;
  }
  
  .carousel-slides {
    height: auto;
    min-height: 700px;
  }
  
  .slide-image {
    height: 300px;
  }
  
  .slide-text {
    padding: 2rem;
  }
  
  .slide-text h2 {
    font-size: 2.5rem;
  }
  
  .carousel-btn {
    top: 150px;
  }
}

@media (max-width: 576px) {
  .carousel-slides {
    min-height: 800px;
  }
  
  .slide-image {
    height: 250px;
  }
  
  .slide-text {
    padding: 1.5rem;
  }
  
  .slide-text h2 {
    font-size: 2rem;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
  }
}

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

.animate-on-scroll {
    opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  }

.animate-on-scroll.visible {
    opacity: 1;
  transform: translateY(0);
}

/* Refined spacing and responsive adjustments */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
  margin: 2rem 0;
}




/* ========================================
   REACH OUT SECTION
   ======================================== */

/* Main Section */
.reach-out {
  padding: clamp(5rem, 12vw, 10rem) 0;
  min-height: 100vh;
  background: var(--primary-color);
  width: 100%;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.reach-out__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.reach-out__content {
  display: grid;
  grid-template-columns: minmax(350px, 1fr) 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Left Side - Title & CTA */
.reach-out__left {
  padding-right: 2rem;
}

.reach-out__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 clamp(1rem, 3vw, 2rem) 0;
  text-align: left;
  font-family: var(--heading-font);
}

.reach-out__title span {
  color: var(--accent-color);
  display: block;
}

.reach-out__cta {
  margin-top: 2rem;
  color: white;
  border-color: var(--accent-color);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.reach-out__cta:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(248, 160, 27, 0.3);
}

/* Right Side - Contact Section */
.reach-out__contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

/* Contact Cards */
.reach-out__contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.reach-out__contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.reach-out__contact-card .contact-link {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.reach-out__contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.reach-out__contact-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  min-width: 24px;
}

.reach-out__contact-card:hover i {
  transform: scale(1.1);
}

.reach-out__contact-card .card-content {
  flex: 1;
}

.reach-out__contact-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.reach-out__contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Compact Map */
.reach-out__compact-map {
  margin-top: 0;
  padding-top: 0;
}

.compact-map__title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  font-family: var(--heading-font);
}

.compact-map__title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.compact-map__container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compact-map__container:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.compact-map__container iframe {
  width: 100%;
  height: clamp(200px, 20vw, 350px);
  border: none;
  border-radius: 8px;
}

/* ========================================
   REACH OUT RESPONSIVE STYLES
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
  .reach-out__content {
    grid-template-columns: minmax(300px, 1fr) 1.8fr;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .reach-out__content {
    grid-template-columns: 1fr;
  }

  .reach-out__left {
    padding-right: 0;
    text-align: center;
  }

  .reach-out__title {
    text-align: center;
  }

  .reach-out__contact-section {
    grid-template-columns: 1fr minmax(280px, 350px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reach-out {
    min-height: 90vh;
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .reach-out__contact-section {
  grid-template-columns: 1fr;
  }

  .reach-out__compact-map {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .reach-out__contact-card {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: white;
  text-decoration: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #f8a01b, #fbbf24);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(248, 160, 27, 0.4);
  border-color: #f8a01b;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form__content,
  .why-mauritius__content,
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-mauritius__text h3 {
    font-size: 3rem;
  }
  
  .header {
    padding: 1rem;
  }
  
  .header--scrolled {
    padding: 0.75rem 1rem;
  }
  
  .welcome p {
  font-size: 1rem;
    padding: 0 1rem;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__content {
    padding: 0 1rem;
  }
  
  .hero__content h1 {
    font-size: 2rem;
  }
  
  .hero__subheading {
    font-size: 1rem;
  }
  
  .header__nav {
    display: none;
  }
  
}

@media (max-width: 576px) {
  .hero__content h1 {
    font-size: 1.8rem;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .welcome h2, .services h2, .testimonials h2 {
    font-size: 2rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* Updated Mauritius Advantages Section */
.mauritius-advantages {
  background-color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.mauritius-advantages::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 41, 75, 0.05) 0%, rgba(15, 41, 75, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.mauritius-advantages::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 160, 27, 0.08) 0%, rgba(248, 160, 27, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.mauritius-advantages .container {
  position: relative;
  z-index: 2;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(145deg, var(--primary-color), var(--primary-light));
  color: white;
  font-size: 1.8rem;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(145deg, var(--accent-color), var(--accent-light));
}

.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent-color);
}

.feature-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.action-row {
  text-align: center;
  margin-top: 2rem;
}

.action-row .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 8px 15px rgba(15, 41, 75, 0.15);
}

@media (max-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .feature-card {
    padding: 1.5rem; /* Adjust padding */
  }
}

@media (max-width: 576px) {
  .slide-text h2 {
    font-size: 3rem;
  }
  
  .carousel-slide {
    padding: 3rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reach-out {
  padding: clamp(5rem, 12vw, 10rem) 0;
  min-height: 100vh;
  background: var(--primary-color);
  width: 100%;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.reach-out__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.reach-out__content {
  display: grid;
  grid-template-columns: minmax(350px, 1fr) 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Left Side - Title & CTA */
.reach-out__left {
  padding-right: 2rem;
}

.reach-out__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 clamp(1rem, 3vw, 2rem) 0;
  text-align: left;
  font-family: var(--heading-font);
}

.reach-out__title span {
  color: var(--accent-color);
  display: block;
}

.reach-out__cta {
  margin-top: 2rem;
  color: white;
  border-color: var(--accent-color);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.reach-out__cta:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(248, 160, 27, 0.3);
}

/* Right Side - Contact Section */
.reach-out__contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

/* Contact Cards */
.reach-out__contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.reach-out__contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.reach-out__contact-card .contact-link {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.reach-out__contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.reach-out__contact-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  min-width: 24px;
}

.reach-out__contact-card:hover i {
  transform: scale(1.1);
}

.reach-out__contact-card .card-content {
  flex: 1;
}

.reach-out__contact-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.reach-out__contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Compact Map */
.reach-out__compact-map {
  margin-top: 0;
  padding-top: 0;
}

.compact-map__title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  font-family: var(--heading-font);
}

.compact-map__title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.compact-map__container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compact-map__container:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.compact-map__container iframe {
  width: 100%;
  height: clamp(200px, 20vw, 350px);
  border: none;
  border-radius: 8px;
}

/* ========================================
   REACH OUT RESPONSIVE STYLES
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
  .reach-out__content {
    grid-template-columns: minmax(300px, 1fr) 1.8fr;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .reach-out__content {
    grid-template-columns: 1fr;
  }

  .reach-out__left {
    padding-right: 0;
    text-align: center;
  }

  .reach-out__title {
    text-align: center;
  }

  .reach-out__contact-section {
    grid-template-columns: 1fr minmax(280px, 350px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reach-out {
    min-height: 90vh;
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .reach-out__contact-section {
    grid-template-columns: 1fr;
  }

  .reach-out__compact-map {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .reach-out__contact-card {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: white;
  text-decoration: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #f8a01b, #fbbf24);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(248, 160, 27, 0.4);
  border-color: #f8a01b;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form__content,
  .why-mauritius__content,
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-mauritius__text h3 {
    font-size: 3rem;
  }
  
  .header {
    padding: 1rem;
  }
  
  .header--scrolled {
    padding: 0.75rem 1rem;
  }
  
  .welcome p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__content {
    padding: 0 1rem;
  }
  
  .hero__content h1 {
    font-size: 2rem;
  }
  
  .hero__subheading {
    font-size: 1rem;
  }
  
  .header__nav {
    display: none;
  }
  
}

@media (max-width: 576px) {
  .hero__content h1 {
    font-size: 1.8rem;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .welcome h2, .services h2, .testimonials h2 {
    font-size: 2rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* Updated Mauritius Advantages Section */
.mauritius-advantages {
  background-color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.mauritius-advantages::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 41, 75, 0.05) 0%, rgba(15, 41, 75, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.mauritius-advantages::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 160, 27, 0.08) 0%, rgba(248, 160, 27, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}
.mauritius-advantages .container {
  position: relative;
  z-index: 2;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.feature-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(145deg, var(--primary-color), var(--primary-light));
  color: white;
  font-size: 1.8rem;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(145deg, var(--accent-color), var(--accent-light));
}
.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent-color);
}

.feature-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.action-row {
  text-align: center;
  margin-top: 2rem;
}

.action-row .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 8px 15px rgba(15, 41, 75, 0.15);
}

@media (max-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .feature-card {
    padding: 1.5rem; /* Adjust padding */
  }
}

@media (max-width: 576px) {
  .slide-text h2 {
    font-size: 3rem;
  }
  
  .carousel-slide {
    padding: 3rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.reach-out__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.reach-out__content {
  display: grid;
  grid-template-columns: minmax(350px, 1fr) 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Left Side - Title & CTA */
.reach-out__left {
  padding-right: 2rem;
}

.reach-out__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 clamp(1rem, 3vw, 2rem) 0;
  text-align: left;
  font-family: var(--heading-font);
}

.reach-out__title span {
  color: var(--accent-color);
  display: block;
}

.reach-out__cta {
  margin-top: 2rem;
  color: white;
  border-color: var(--accent-color);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.reach-out__cta:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(248, 160, 27, 0.3);
}

/* Right Side - Contact Section */
.reach-out__contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

/* Contact Cards */
.reach-out__contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.reach-out__contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.reach-out__contact-card .contact-link {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.reach-out__contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.reach-out__contact-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  min-width: 24px;
}

.reach-out__contact-card:hover i {
  transform: scale(1.1);
}

.reach-out__contact-card .card-content {
  flex: 1;
}

.reach-out__contact-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.reach-out__contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Compact Map */
.reach-out__compact-map {
  margin-top: 0;
  padding-top: 0;
}

.compact-map__title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  font-family: var(--heading-font);
}

.compact-map__title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.compact-map__container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compact-map__container:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.compact-map__container iframe {
  width: 100%;
  height: clamp(200px, 20vw, 350px);
  border: none;
  border-radius: 8px;
}

/* ========================================
   REACH OUT RESPONSIVE STYLES
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
  .reach-out__content {
    grid-template-columns: minmax(300px, 1fr) 1.8fr;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .reach-out__content {
    grid-template-columns: 1fr;
  }

  .reach-out__left {
    padding-right: 0;
    text-align: center;
  }

  .reach-out__title {
    text-align: center;
  }

  .reach-out__contact-section {
    grid-template-columns: 1fr minmax(280px, 350px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reach-out {
    min-height: 90vh;
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .reach-out__contact-section {
    grid-template-columns: 1fr;
  }

  .reach-out__compact-map {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .reach-out__contact-card {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}

.footer__social {
  display: flex;
    justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  }
  
.social-icon {
  display: inline-flex;
  align-items: center;
    justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: white;
  text-decoration: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #f8a01b, #fbbf24);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(248, 160, 27, 0.4);
  border-color: #f8a01b;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form__content,
  .why-mauritius__content,
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-mauritius__text h3 {
    font-size: 3rem;
  }
  
  .header {
    padding: 1rem;
  }
  
  .header--scrolled {
    padding: 0.75rem 1rem;
  }
  
  .welcome p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__content {
    padding: 0 1rem;
  }
  
  .hero__content h1 {
    font-size: 2rem;
  }
  
  .hero__subheading {
    font-size: 1rem;
  }
  
  .header__nav {
    display: none;
  }
  
}

@media (max-width: 576px) {
  .hero__content h1 {
    font-size: 1.8rem;
  }
  
  .hero__cta {
    flex-direction: column;
  gap: 1rem;
}

  .welcome h2, .services h2, .testimonials h2 {
    font-size: 2rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* Updated Mauritius Advantages Section */
.mauritius-advantages {
  background-color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.mauritius-advantages::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 41, 75, 0.05) 0%, rgba(15, 41, 75, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.mauritius-advantages::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 160, 27, 0.08) 0%, rgba(248, 160, 27, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}
.mauritius-advantages .container {
  position: relative;
  z-index: 2;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.feature-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(145deg, var(--primary-color), var(--primary-light));
  color: white;
  font-size: 1.8rem;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(145deg, var(--accent-color), var(--accent-light));
}
.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent-color);
}

.feature-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.action-row {
  text-align: center;
  margin-top: 2rem;
}

.action-row .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 8px 15px rgba(15, 41, 75, 0.15);
}

@media (max-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .feature-card {
    padding: 1.5rem; /* Adjust padding */
  }
}

@media (max-width: 576px) {
  .slide-text h2 {
    font-size: 3rem;
  }
  
  .carousel-slide {
    padding: 3rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.reach-out {
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.reach-out__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.reach-out__content {
  display: grid;
  grid-template-columns: minmax(350px, 1fr) 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Left Side - Title & CTA */
.reach-out__left {
  padding-right: 2rem;
}

.reach-out__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 clamp(1rem, 3vw, 2rem) 0;
  text-align: left;
  font-family: var(--heading-font);
}

.reach-out__title span {
  color: var(--accent-color);
  display: block;
}

.reach-out__cta {
  margin-top: 2rem;
  color: white;
  border-color: var(--accent-color);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.reach-out__cta:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(248, 160, 27, 0.3);
}

/* Right Side - Contact Section */
.reach-out__contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

/* Contact Cards */
.reach-out__contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.reach-out__contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.reach-out__contact-card .contact-link {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.reach-out__contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.reach-out__contact-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  min-width: 24px;
}

.reach-out__contact-card:hover i {
  transform: scale(1.1);
}

.reach-out__contact-card .card-content {
  flex: 1;
}

.reach-out__contact-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.reach-out__contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Compact Map */
.reach-out__compact-map {
  margin-top: 0;
  padding-top: 0;
}

.compact-map__title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  font-family: var(--heading-font);
}

.compact-map__title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.compact-map__container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compact-map__container:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.compact-map__container iframe {
  width: 100%;
  height: clamp(200px, 20vw, 350px);
  border: none;
  border-radius: 8px;
}

/* ========================================
   REACH OUT RESPONSIVE STYLES
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
  .reach-out__content {
    grid-template-columns: minmax(300px, 1fr) 1.8fr;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .reach-out__content {
    grid-template-columns: 1fr;
  }

  .reach-out__left {
    padding-right: 0;
    text-align: center;
  }

  .reach-out__title {
    text-align: center;
  }

  .reach-out__contact-section {
    grid-template-columns: 1fr minmax(280px, 350px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reach-out {
    min-height: 90vh;
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .reach-out__contact-section {
    grid-template-columns: 1fr;
  }

  .reach-out__compact-map {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .reach-out__contact-card {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}

.footer__social {
  display: flex;
    justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  }
  
.social-icon {
  display: inline-flex;
  align-items: center;
    justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: white;
  text-decoration: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #f8a01b, #fbbf24);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(248, 160, 27, 0.4);
  border-color: #f8a01b;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form__content,
  .why-mauritius__content,
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-mauritius__text h3 {
    font-size: 3rem;
  }
  
  .header {
    padding: 1rem;
  }
  
  .header--scrolled {
    padding: 0.75rem 1rem;
  }
  
  .welcome p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__content {
    padding: 0 1rem;
  }
  
  .hero__content h1 {
    font-size: 2rem;
  }
  
  .hero__subheading {
    font-size: 1rem;
  }
  
  .header__nav {
    display: none;
  }
  
}

@media (max-width: 576px) {
  .hero__content h1 {
    font-size: 1.8rem;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .welcome h2, .services h2, .testimonials h2 {
    font-size: 2rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* Updated Mauritius Advantages Section */
.mauritius-advantages {
  background-color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.mauritius-advantages::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 41, 75, 0.05) 0%, rgba(15, 41, 75, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.mauritius-advantages::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 160, 27, 0.08) 0%, rgba(248, 160, 27, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}
.mauritius-advantages .container {
  position: relative;
  z-index: 2;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.feature-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(145deg, var(--primary-color), var(--primary-light));
  color: white;
  font-size: 1.8rem;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(145deg, var(--accent-color), var(--accent-light));
}
.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent-color);
}

.feature-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.action-row {
  text-align: center;
  margin-top: 2rem;
}

.action-row .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 8px 15px rgba(15, 41, 75, 0.15);
}

@media (max-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .feature-card {
    padding: 1.5rem; /* Adjust padding */
  }
}

@media (max-width: 576px) {
  .slide-text h2 {
    font-size: 3rem;
  }
  
  .carousel-slide {
    padding: 3rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.insights .container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.carousel-container {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 61, 72, 0.8);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-text {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.slide-text h2 {
  width: auto;
  color: #fff;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin-bottom: 12rem;
}

.slide-text .text-content {
  margin-top: 0;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.slide-text p {
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Carousel indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

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

.indicator.active {
  background-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #F8A01B;
  border-color: #F8A01B;
}

.carousel-btn--prev {
  left: 2rem;
}

.carousel-btn--next {
  right: 2rem;
}

@media (max-width: 1200px) {
  .slide-text {
    padding: 0 4rem;
  }
  
  .slide-text h2 {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .slide-text {
    flex-direction: column;
    text-align: center;
    padding: 0 2rem;
    justify-content: center;
  }
  
  .slide-text h2 {
    width: 100%;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 0;
  }
  
  .slide-text .text-content {
    width: 100%;
    max-width: 600px;
  }
  
  .slide-text p {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .carousel-btn {
    top: 25%;
  }
}

@media (max-width: 768px) {
  .services {
    min-height: 90vh;
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .insights {
    height: 90vh;
    min-height: 500px;
  }
  
 .carousel-container {
    height: 90vh;
    min-height: 500px;
  }
  
  .slide-text h2 {
    font-size: 2.8rem;
    margin: 1.5rem;
  }
  
  .slide-text p {
    font-size: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-btn--prev {
    left: 1rem;
  }
  
  .carousel-btn--next {
    right: 1rem;
  }
}

@media (max-width: 576px) {
  .insights {
    height: 85vh;
    min-height: 450px;
  }
  
  .carousel-container {
    height: 85vh;
    min-height: 450px;
  }
  
  .slide-text {
    padding: 0 1.5rem;
  }
  
  .slide-text h2 {
    font-size: 2.3rem;
  }
  
  .slide-text p {
    font-size: 0.95rem;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    top: 20%;
  }
  
  .carousel-indicators {
    bottom: 15px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

.insights-heading {
  display: block;
  color: var(--accent-light);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  font-family: var(--heading-font);
}
@media (max-width: 768px) {
  .insights-heading {
    font-size: 2rem;
  }
  
  .slide-text h2 {
    font-size: 3rem;
    margin: 1.5rem;
  }
}

@media (max-width: 576px) {
  .insights-heading {
    font-size: 1.8rem;
  }
  
  .slide-text h2 {
    font-size: 2.5rem;
    margin: 1rem;
  }
}

/* General typography */
p {
  font-family: var(--body-font);
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* Form elements */
input, 
textarea, 
select, 
button {
  font-family: var(--body-font);
  font-size: 1rem;
}

.hero__welcome-message {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
  color: white;
  padding: 10px 20px;
  background-color: rgba(15, 41, 75, 0.7);
}

.hero__welcome-message p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Dropdown Menu Styles */
.nav__dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  transition: all 0.3s ease !important;
}

.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.nav__dropdown-content {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: white !important;
  min-width: 300px !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  padding: 20px !important;
  z-index: 1000 !important;
  margin-top: 15px !important;
  animation: fadeInDown 0.3s ease !important;
  transition-delay: 0s !important;
}

.nav__dropdown:hover .nav__dropdown-content {
  display: block !important;
  transition-delay: 0.1s !important;
}

.nav__dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.dropdown-services {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

.dropdown-service-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--primary-color);
}

.dropdown-service-item:hover {
  background: rgba(15, 41, 75, 0.05);
  transform: translateY(-3px);
}

.dropdown-service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.dropdown-service-icon img {
  width: 100%;
  height: auto;
}

.dropdown-service-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 992px) {
  .nav__dropdown-content {
    position: static;
    min-width: 100%;
    transform: none;
    box-shadow: none;
    margin-top: 0;
    display: none;
    padding: 0;
    background: transparent;
  }
  
  .nav__dropdown:hover .nav__dropdown-content {
    display: none;
  }
  
  .nav__dropdown.active .nav__dropdown-content {
    display: block;
  }
  
  .dropdown-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .dropdown-service-item {
    padding: 10px;
    border-radius: 0;
    color: white;
  }
  
  .dropdown-service-icon {
    width: 30px;
    height: 30px;
  }
  
  .dropdown-service-text h4 {
    font-size: 0.9rem;
  }
  
  .nav__dropdown-content::before {
    display: none;
  }
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    color: #fff;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.service-hero__main {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.service-hero__logo {
    width: 180px;
    max-width: 180px;
    height: auto;
    margin-bottom: 0;
    filter: brightness(1.1);
}

.service-hero__title {
    margin: 0;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.breadcrumbs {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for hero layout */
@media (max-width: 768px) {
    .service-hero__content {
        padding-bottom: 1.5rem;
        padding-left: 1rem;
        align-items: center;
    }
    
    .service-hero__main {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-hero__logo {
        width: 150px;
        max-width: 150px;
    }
    
    .service-hero__title {
        font-size: 2.5rem;
        font-weight: 800;
    }
    
    .breadcrumbs {
        left: 1rem;
        bottom: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Update dropdown styles to match homepage services */
.nav__dropdown-content {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #fff !important;
    min-width: 300px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 100 !important;
    padding: 1.5rem !important;
    border-radius: 10px !important;
    margin-top: 10px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.nav__dropdown:hover .nav__dropdown-content {
    opacity: 1 !important;
    visibility: visible !important;
    transition-delay: 0.1s !important;
}

.nav__dropdown-content:hover {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.nav__dropdown-content:focus-within {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.dropdown-services {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.dropdown-service-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.dropdown-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-service-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dropdown-service-text h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .nav__dropdown-content {
        min-width: 100%;
        left: 0;
        transform: none;
    }
    
    .dropdown-services {
        grid-template-columns: 1fr;
    }
}

/* Service Content Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.main-content {
    padding-right: 2rem;
}

.main-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.main-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sidebar {
    border-left: 1px solid #eee;
    padding-left: 2rem;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-links a {
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.sidebar-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-content {
        padding-right: 0;
    }

    .sidebar {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 2rem;
    }

    .sidebar-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .content-grid {
        padding: 2rem 0;
    }

    .main-content h2 {
        font-size: 1.75rem;
    }

    .sidebar-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ... existing code ... */
.dropdown-service-text h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Nested dropdown styles */
.nested-dropdown {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.nested-dropdown::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 20px;
    height: 100%;
    background: transparent;
}

.nested-dropdown-content {
    display: none !important;
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    min-width: 350px !important;
    background-color: var(--white) !important;
    box-shadow: var(--shadow-md) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    z-index: 1002 !important;
    opacity: 0 !important;
    transform: translateX(10px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
    margin-left: 10px !important;
    transition-delay: 0s !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.nested-dropdown:hover .nested-dropdown-content {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition-delay: 0.1s !important;
}

.nested-dropdown-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--white);
}

.nested-dropdown-content:hover {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.nested-dropdown-content:focus-within {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

@media (max-width: 992px) {
    .nested-dropdown-content {
        position: static;
        display: none;
        width: 100%;
        padding: 10px 0 10px 20px;
        box-shadow: none;
        transform: none;
    }
    
    .nested-dropdown.active .nested-dropdown-content {
        display: block;
    }
    
    .nested-dropdown-content::before {
        display: none;
    }
}

@keyframes fadeInDown {
/* ... existing code ... */
}

/* New Statistics Section Styles for why-mauritius page */
.stats-section {
    background: linear-gradient(135deg, #002b49 0%, #004d7a 50%, #002b49 100%);
    color: white;
    min-height: 50vh; /* Reduced from 80vh */
    display: flex;
    align-items: center;
  position: relative;
  overflow: hidden;
    margin-top: -50px;
    padding-top: 50px;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 30px; /* Reduced from 60px */
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 2rem; /* Reduced from 2.5rem */
    font-weight: 700;
    margin-bottom: 10px; /* Reduced from 15px */
    background: linear-gradient(45deg, #ffffff, #e0f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle {
    font-size: 1rem; /* Reduced from 1.1rem */
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-container {
    position: relative;
    z-index: 2;
  width: 100%;
    padding: 20px 0; /* Reduced from 40px */
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed to 4 columns */
    gap: 20px; /* Gap between cards */
    margin-bottom: 30px; /* Margin between rows */
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* Reduced from 16px */
    padding: 15px 10px; /* Reduced from 30px 25px */
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-3px); /* Reduced from -5px */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Reduced shadow */
    background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
    width: 40px; /* Reduced from 60px */
    height: 40px; /* Reduced from 60px */
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px; /* Reduced margin from 20px */
    font-size: 16px; /* Reduced from 24px */
    color: white;
    box-shadow: 0 6px 15px rgba(0, 212, 255, 0.3); /* Reduced shadow */
}

.stat-number {
    font-size: 1.6rem; /* Reduced from 2.2rem */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px; /* Reduced from 8px */
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem; /* Reduced from 0.9rem */
  font-weight: 600;
    color: #00d4ff;
    margin-bottom: 4px; /* Reduced from 6px */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 0.65rem; /* Reduced from 0.8rem */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2; /* Reduced from 1.3 */
}

/* Call to Action Section - New Diagonal Design */
.cta-section {
    background: white;
    padding: 0;
  position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.cta-diagonal-container {
    display: flex;
    width: 100%;
    height: 70vh;
  position: relative;
}

/* Left Section: Visual with Person */
.cta-visual-section {
    flex: 1;
    position: relative;
    background: white;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.cta-person-image {
    position: absolute;
  left: 0;
    top: 0;
  width: 100%;
  height: 100%;
    z-index: 1;
}

.cta-person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    border-radius: 0;
    box-shadow: none;
}

.cta-geometric-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  z-index: 2;
}

/* Red Chevron Element */
.chevron-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffc96b 0%, #f8a01b 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 3;
}

/* Teal Square with White Cutout */
.teal-square {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: #0f294b;
    border: 8px solid #203c6b;
    box-shadow: 0 15px 30px rgba(15, 41, 75, 0.3);
    z-index: 3;
}

.white-cutout {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.blurred-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/mauritius-business.jpg') center/cover;
    filter: blur(3px);
    opacity: 0.8;
}

.cta-blurred-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="blur"><feGaussianBlur stdDeviation="3"/></filter></defs><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.6)" filter="url(%23blur)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.4)" filter="url(%23blur)"/><circle cx="40" cy="70" r="2.5" fill="rgba(255,255,255,0.5)" filter="url(%23blur)"/><circle cx="70" cy="80" r="1" fill="rgba(255,255,255,0.3)" filter="url(%23blur)"/></svg>');
    opacity: 0.3;
  z-index: 0;
}

/* Right Section: Content */
.cta-content-section {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
  position: relative;
}

.cta-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    height: 100%;
    background: white;
  z-index: 1;
}

.cta-text-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 50px;
    text-align: left;
}

.cta-text-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0f294b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-text-content p {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 35px;
}

.cta-actions {
    display: flex;
    gap: 20px;
}

.cta-actions .btn--primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 500;
    transition: var(--transition-standard);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    color: white;
    box-shadow: var(--shadow-accent);
}

.cta-actions .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 169, 40, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .cta-person-image {
        width: 100%;
        height: 100%;
    }
    
    .cta-person-image img {
        width: 100%;
        height: 100%;
        opacity: 0.15;
    }
    
    .cta-text-content {
        max-width: 500px;
        padding: 40px;
    }
    
    .cta-text-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cta-text-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .cta-actions .btn--primary {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .cta-diagonal-container {
        flex-direction: column;
        height: auto;
    }
    
    .cta-visual-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .cta-person-image {
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }
    
    .cta-person-image img {
        width: 100%;
        height: 100%;
        opacity: 0.15;
    }
    
    .cta-content-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .cta-content-section::before {
        display: none;
    }
    
    .cta-text-content {
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-text-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-text-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-section {
        min-height: auto;
    }
    
    .cta-diagonal-container {
        height: 50vh;
    }
    
    .cta-visual-section {
        height: 30vh;
        min-height: 250px;
    }
    
    .cta-person-image {
        width: 100%;
        height: 100%;
    }
    
    .cta-person-image img {
        width: 100%;
        height: 100%;
        opacity: 0.15;
    }
    
    .cta-icon-element {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon-element img {
        width: 40px;
        height: 40px;
    }
    
    .teal-square {
        width: 100px;
        height: 100px;
    }
    
    .white-cutout {
        width: 40px;
        height: 40px;
    }
    
    .cta-content-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .cta-text-content {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .cta-text-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-text-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .cta-actions .btn--primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-visual-section {
        height: 35vh;
        min-height: 250px;
    }
    
    .cta-person-image {
        width: 50%;
        height: 100%;
    }
    
    .cta-person-image img {
        width: 100%;
        height: 100%;
        opacity: 0.02;
    }
    
    .cta-content-section {
        height: 65vh;
        min-height: 300px;
    }
    
    .cta-text-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-text-content p {
        font-size: 0.95rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #002b49 0%, #004d7a 50%, #002b49 100%);
    color: white;
    padding: 80px 0;
  text-align: center;
  position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e0f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
    font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-container > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
  font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(248, 160, 27, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-group a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.contact-form .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 500;
    transition: var(--transition-standard);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    color: white;
    box-shadow: var(--shadow-accent);
    text-align: center;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 169, 40, 0.4);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

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

.social-links {
    border-top: 1px solid #e1e5e9;
    padding-top: 30px;
}

.social-links h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    color: #002b49;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: #002b49;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-method {
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
  }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 25px 20px;
    }
    
    .why-choose-us h2 {
        font-size: 2rem;
    }
}

/* ========================================
   NEW FOOTER STYLES
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 60px 0 30px;
  position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

/* Footer Content Layout */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Left Section: Branding & Tagline */
.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 260px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    max-width: 260px;
    display: block;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    opacity: 0.9;
}

.footer-tagline {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-tagline span {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Middle Section: Navigation Links */
.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-nav-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 12px;
}

.footer-nav-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-block;
    padding: 2px 0;
    position: relative;
}

.footer-nav-column ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-nav-column ul li a:hover {
    color: var(--accent-color);
}

.footer-nav-column ul li a:hover::after {
    width: 100%;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Legal Links */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-block;
    padding: 2px 0;
    position: relative;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.legal-links a:hover::after {
    width: 100%;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Social Media */
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-heading {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 6px;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(248, 160, 27, 0.3);
}

.social-icon i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-tagline span {
        font-size: 2rem;
        color: var(--accent-color);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .legal-links {
        gap: 20px;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-tagline span {
        font-size: 1.8rem;
        color: var(--accent-color);
    }
}

@media (max-width: 576px) {
    .footer .container {
        padding: 0 15px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .footer-tagline span {
        font-size: 1.5rem;
        color: var(--accent-color);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-diagonal-container {
        flex-direction: column;
    }
    
    .cta-visual-section {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        min-height: 300px;
    }
    
    .cta-content-section {
        clip-path: none;
        padding: 40px 20px;
    }
    
    .cta-text-content {
        padding: 30px 20px;
  text-align: center;
    }
    
    .cta-text-content h2 {
        font-size: 2rem;
    }
    
    .cta-text-content p {
        font-size: 1.1rem;
    }
    
    .chevron-element {
        width: 120px;
        height: 120px;
    }
}

/* Insights Preview Section */
.insights-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
}

.insights-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.insights-preview__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.insights-preview__header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.insights-preview__header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.insights-preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.insight-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(15, 41, 75, 0.15);
}

.insight-image {
    height: 200px;
    overflow: hidden;
  position: relative;
}

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

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

.insight-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
  font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-content {
    padding: 25px;
}

.insight-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
}

.insight-date i {
    color: var(--accent-color);
}

.insight-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
  line-height: 1.4;
    transition: color 0.3s ease;
}

.insight-card:hover h3 {
    color: var(--accent-color);
}

.insight-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.insights-preview__cta {
    text-align: center;
  position: relative;
  z-index: 2;
}

.insights-preview__cta .btn--primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 500;
    transition: var(--transition-standard);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    color: white;
    box-shadow: var(--shadow-accent);
}

.insights-preview__cta .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 169, 40, 0.4);
}

/* Responsive Design for Insights Preview */
@media (max-width: 768px) {
    .insights-preview {
        padding: 60px 0;
    }
    
    .insights-preview__header h2 {
    font-size: 2.2rem;
  }
  
    .insights-preview__header p {
        font-size: 1.1rem;
    }
    
    .insights-preview__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .insight-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .insights-preview__header h2 {
        font-size: 1.8rem;
    }
    
    .insight-content {
        padding: 20px;
    }
    
    .insight-content h3 {
        font-size: 1.1rem;
    }
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-cta-content {
    color: white;
}

.contact-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.contact-cta-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-cta-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-cta-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    border-radius: 22px;
    z-index: -1;
}

/* Responsive Design for Contact CTA */
@media (max-width: 768px) {
    .contact-cta-section {
        padding: 60px 0;
    }
    
    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .contact-cta-content p {
    font-size: 1.1rem;
    }
    
    .contact-cta-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
}

/* Hawksford-Style Multi-Step Form Section */
.hawksford-form-section {
    background: linear-gradient(135deg, #0f294b 0%, #1a365d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hawksford-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hawksford-form-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.hawksford-form-content {
    color: white;
    position: relative;
}

.red-accent-bar {
    position: absolute;
    left: -20px;
    top: 0;
    width: 8px;
    height: 100%;
    background: var(--accent-color);
    border-radius: 4px;
}

.hawksford-form-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
    margin-left: 20px;
}

.hawksford-form-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 20px;
}

.hawksford-form-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 600px;
    width: 100%;
}

.hawksford-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    border-radius: 22px;
    z-index: -1;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.form-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.4;
}

.form-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hawksford-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.hawksford-form .form-group {
    margin-bottom: 20px;
}

.hawksford-form .form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.hawksford-form .form-group input,
.hawksford-form .form-group select,
.hawksford-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
    min-height: 50px;
}

.hawksford-form .form-group input:focus,
.hawksford-form .form-group select:focus,
.hawksford-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(248, 160, 27, 0.1);
}

.hawksford-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}



.progress-section {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Unified CTA Button System */
.next-btn,
.prev-btn,
.submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 500;
    transition: var(--transition-standard);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.next-btn,
.submit-btn {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    color: white;
    box-shadow: var(--shadow-accent);
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 169, 40, 0.4);
}

.prev-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.prev-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.5;
    margin: 0;
}

.privacy-notice {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.privacy-notice p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 10px;
}

.privacy-notice p:last-child {
    margin-bottom: 0;
}

.privacy-link {
    color: #3182ce;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #2c5aa0;
}

/* Responsive Design for Hawksford Form */
@media (max-width: 992px) {
    .hawksford-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hawksford-form-content h2 {
    font-size: 2.2rem;
  }
    
    .hawksford-form-content p {
        font-size: 1.1rem;
    }
    
    .hawksford-form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .hawksford-form-section {
        padding: 60px 0;
    }
    
    .hawksford-form-content h2 {
        font-size: 1.8rem;
    }
    
    .hawksford-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .next-btn,
    .prev-btn,
    .submit-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hawksford-form-container {
        padding: 25px 20px;
    }
    
    .hawksford-form-content h2 {
        font-size: 1.6rem;
    }
    
    .form-step h3 {
        font-size: 1.1rem;
    }
}
