/* Nexora Consulting - CSS Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #070f7a;
  --secondary-color: #990100;
  --accent-color: #313131;
  --light-gray: #98989a;
  --light-bg: #ffffff;
  --lighter-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --text-dark: #313131;
  --text-medium: #98989a;
  --text-light: #98989a;
  --gradient-primary: linear-gradient(135deg, #f50e0e 0%, #990100 100%);
  --gradient-secondary: linear-gradient(135deg, #313131 0%, #98989a 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: var(--lighter-bg);
  color: var(--text-dark);
  line-height: 1.6;
  width: 100%;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  height: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  height:90px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 0.5rem;
}

.logo:hover {
  transform: translateX(-50%) translateY(-50%) scale(1.05);
}

/* Disable logo hover on touch devices */
@media (hover: none) and (pointer: coarse) {
  .logo:hover {
    transform: translateX(-50%) translateY(-50%);
  }
}

.logo-img {
  width: 130px;
  border-radius: 15px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu.left {
  order: 1;
}

.nav-menu.right {
  order: 3;
}

/* Mobile Navigation Menu - Hidden by default */
.nav-menu.mobile-nav {
  display: none;
}

.nav-menu a {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  letter-spacing: 0.2px;
  display: block;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
  background: rgba(7, 15, 122, 0.1);
  transform: translateY(-2px);
}

.nav-menu a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-menu a.active {
  color: var(--primary-color);
  background: rgba(7, 15, 122, 0.15);
}

.nav-menu a.active::before {
  transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle - Force visibility */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  order: 4;
  z-index: 1002;
  background: rgba(7, 15, 122, 0.05);
  border: 2px solid rgba(7, 15, 122, 0.2);
  min-width: 48px;
  min-height: 48px;
}

.mobile-menu-toggle:hover {
  background: rgba(7, 15, 122, 0.15);
  border-color: rgba(7, 15, 122, 0.4);
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Slider Section */
.hero-slider-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 85px;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lighter-bg) 0%, #e0f2fe 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.hero-slide:hover::after {
  opacity: 0.7;
}

.hero-slide.slide-1 {
  background-image: linear-gradient(rgba(7, 15, 122, 0.7), rgba(153, 1, 0, 0.6)), 
                    url('slider5.jpg');
}

.hero-slide.slide-2 {
  background-image: linear-gradient(rgba(31, 41, 55, 0.7), rgba(55, 65, 81, 0.6)), 
                    url('slider2.jpg');
}

.hero-slide.slide-3 {
  background-image: linear-gradient(rgba(91, 33, 182, 0.7), rgba(147, 51, 234, 0.6)), 
                    url('slider3.jpg');
}

.hero-slide.slide-4 {
  background-image: linear-gradient(rgba(5, 150, 105, 0.7), rgba(16, 185, 129, 0.6)), 
                    url('slider4.jpg');
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: slideInUp 1s ease-out;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
  background: rgba(255, 255, 255, 0.9);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 600;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7) !important;
  width: 12px !important;
  height: 12px !important;
  border: 2px solid var(--primary-color);
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  transform: scale(1.2);
}

/* Animation for slide content */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating elements for visual appeal */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(7, 15, 122, 0.1), rgba(153, 1, 0, 0.1));
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.btn {
  font-family: 'Inter', system-ui, sans-serif;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  color: var(--light-bg);
  border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: white;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-title p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Clean Professional Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.card h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.card p {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-light);
  line-height: 1.6;
}

/* About Section - Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 2rem;
}

/* Services Section - Modern Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* Consulting Section - Process Cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.process-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--lighter-bg);
}

.process-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.process-number {
  position: absolute;
  top: -12px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.process-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Industries Section - Minimal Cards */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.industry-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Careers Section - Modern Cards */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.career-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.career-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 0 0 20px 20px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.career-card:hover::after {
  transform: scaleX(1);
}

.career-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #d97706;
  font-size: 1.5rem;
}

/* Statistics */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-number i {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.stat:hover .stat-number i {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-top: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.stat:hover .stat-label {
  color: var(--primary-color);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.contact-item {
  background: var(--lighter-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-item:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
}

.contact-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-color);
}

/* Contact Form - Modern & Professional */
.contact-form {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-header p {
  color: var(--text-medium);
  font-size: 1rem;
  margin: 0;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  position: relative;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

/* Modern Input Styling */
.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 1.25rem 1rem 0.75rem;
  background: var(--lighter-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
}

.input-wrapper label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-medium);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  pointer-events: none;
  background: var(--lighter-bg);
  padding: 0 0.25rem;
}

.input-wrapper input:focus,
.input-wrapper input:not(:placeholder-shown) {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(7, 15, 122, 0.1);
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  background: white;
}

.required-mark {
  color: var(--secondary-color);
  font-weight: bold;
  margin-left: 0.25rem;
}

/* Select Styling */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 1.25rem 3rem 0.75rem 1rem;
  background: var(--lighter-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.select-wrapper label {
  position: absolute;
  left: 1rem;
  top: 0;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--lighter-bg);
  padding: 0 0.25rem;
  pointer-events: none;
}

.select-wrapper select:focus {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(7, 15, 122, 0.1);
}

.select-wrapper select:focus + label {
  background: white;
}

.select-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-medium);
  pointer-events: none;
  transition: all 0.3s ease;
}

.select-wrapper select:focus ~ .select-icon {
  color: var(--primary-color);
}

/* Textarea Styling */
.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  width: 100%;
  min-height: 120px;
  padding: 1.25rem 1rem 0.75rem;
  background: var(--lighter-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
  resize: vertical;
}

.textarea-wrapper label {
  position: absolute;
  left: 1rem;
  top: 0;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--lighter-bg);
  padding: 0 0.25rem;
  pointer-events: none;
}

.textarea-wrapper textarea:focus {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(7, 15, 122, 0.1);
}

.textarea-wrapper textarea:focus + label {
  background: white;
}

.textarea-helper {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Submit Button */
.form-submit {
  margin-top: 1rem;
}

.submit-btn {
  width: 100%;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-content {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form Validation States */
.input-wrapper input:valid:not(:focus):not(:placeholder-shown) {
  border-color: #10b981;
}

.input-wrapper input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
}

.textarea-wrapper textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: #10b981;
}

.textarea-wrapper textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
}

/* Form Messages */
.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  display: none;
  animation: slideDown 0.3s ease-out;
  text-align: center;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.form-message.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Form Styles */
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem;
    border-radius: 16px;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .modern-form {
    gap: 1rem;
  }
  
  .input-wrapper input,
  .select-wrapper select,
  .textarea-wrapper textarea {
    padding: 1rem 0.875rem 0.5rem;
    font-size: 0.95rem;
  }
  
  .input-wrapper label,
  .select-wrapper label,
  .textarea-wrapper label {
    font-size: 0.7rem;
  }
  
  .submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-header {
    margin-bottom: 2rem;
  }
  
  .input-wrapper input,
  .select-wrapper select,
  .textarea-wrapper textarea {
    border-radius: 8px;
  }
  
  .submit-btn {
    border-radius: 12px;
  }
}

/* Button Loading State */
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn:disabled:hover {
  background: var(--primary-color);
  transform: none;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Form Validation */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Footer - Light & Professional */
.footer {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  padding: 3px;
  background: white;
  box-shadow: var(--shadow-md);
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.6;
}

.footer-links {
  text-align: left;
}

.footer-links h4 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 1.5rem;
}

.footer-links a:hover::before {
  width: 8px;
  height: 8px;
}

.footer-contact {
  text-align: left;
}

.footer-contact h4 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  background: white;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: var(--lighter-bg);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.footer-contact-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.footer-contact-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-contact-item a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  color: var(--text-light);
  font-size: 0.95rem;
  background: white;
  margin: 0 -2rem -2rem;
  padding: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

/* Scroll to Top Button - Light Theme */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.scroll-to-top i {
  color: white;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Mobile responsive for scroll button */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top i {
    font-size: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  .nav-menu {
    gap: 0.3rem;
  }

  .nav-menu a {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .logo-img {
    height: 50px;
    width: 50px;
  }
}

/* Force mobile menu visibility on tablet and mobile */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex !important;
    order: 4;
    z-index: 1002;
  }

  .nav-menu.left,
  .nav-menu.right {
    display: none;
  }

  .nav-menu.mobile-nav {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    font-size: 1.5rem;
    padding: 0.5rem;
    flex-shrink: 0;
    order: 1;
  }

  /* Remove hover effects on mobile */
  .logo:hover {
    transform: none !important;
  }

  .logo-img {
    height: 40px;
    width: 40px;
    flex-shrink: 0;
  }

  .mobile-menu-toggle {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    display: flex !important;
    order: 2;
    flex-shrink: 0;
    z-index: 1002;
  }

  .nav-menu.left,
  .nav-menu.right {
    display: none !important;
  }

  .nav-menu.mobile-nav {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
    margin: 0;
    transform: translateY(-100vh);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    max-height: calc(100vh - 75px);
    overflow: hidden;
    display: flex !important;
  }

  .nav-menu.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-menu.mobile-nav li {
    width: 100%;
    list-style: none;
    flex-shrink: 0;
  }

  .nav-menu.mobile-nav a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(7, 15, 122, 0.1);
    width: 100%;
    max-width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-menu.mobile-nav a:last-child {
    border-bottom: none;
  }

  .nav-menu.mobile-nav a::before {
    display: none;
  }

  .nav-menu.mobile-nav a:hover,
  .nav-menu.mobile-nav a:active {
    background: rgba(7, 15, 122, 0.15);
    transform: none;
    padding-left: 1.5rem;
    color: var(--primary-color);
  }

  .logo {
    font-size: 1.5rem;
    gap: 1rem;
    order: 1;
  }

  .logo-img {
    height: 45px;
    width: 45px;
  }

  .hero-slider-container {
    height: 90vh;
    margin-top: 75px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-content {
    margin-top: 2rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
  }

  .hero-content h1 {
    font-size: 2.5rem;
    word-wrap: break-word;
    hyphens: auto;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .hero-subtitle {
    font-size: 1.1rem;
    word-wrap: break-word;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }

  .hero-description {
    font-size: 1rem;
    word-wrap: break-word;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  /* Swiper mobile adjustments */
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px !important;
  }

  .floating-element {
    display: none;
  }

  .section {
    padding: 4rem 1rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .section-title h2 {
    font-size: 2rem;
    word-wrap: break-word;
  }

  .section-title p {
    font-size: 1rem;
    word-wrap: break-word;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-links {
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo-img {
    height: 50px;
    width: 50px;
  }

  .footer-logo-text {
    font-size: 1.8rem;
  }

  .footer-contact-item {
    justify-content: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 320px) {
  .nav-container {
    padding: 0.8rem;
  }

  .logo {
    font-size: 1.2rem;
    gap: 0.6rem;
  }

  .logo-img {
    height: 35px;
    width: 35px;
  }

  .nav-menu a {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Desktop - Ensure mobile nav is hidden */
@media (min-width: 901px) {
  .nav-menu.mobile-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Image Slider Section */
.slider-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--lighter-bg) 0%, #f1f8ff 100%);
  position: relative;
  overflow: hidden;
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.slider-title {
  text-align: center;
  margin-bottom: 3rem;
}

.slider-title h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.slider-title p {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.image-slider {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--card-bg);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide:hover img {
  transform: scale(1.05);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.slide-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.slide-content p {
  font-size: 1rem;
  opacity: 0.9;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.slider-nav:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(7, 15, 122, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Mobile responsiveness for slider */
@media (max-width: 768px) {
  .slider-section {
    padding: 2rem 0;
  }

  .slider-container {
    padding: 0 1rem;
  }

  .slider-title h2 {
    font-size: 2rem;
  }

  .image-slider {
    height: 300px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  .slide-content {
    padding: 2rem 1rem 1rem;
  }

  .slide-content h3 {
    font-size: 1.25rem;
  }
}

/* Image optimization and loading */
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.hero-slide:hover::after {
  opacity: 0.7;
}

/* Parallax effect for desktop */
@media (min-width: 769px) {
  .hero-slide {
    background-attachment: fixed;
  }
}

/* Image loading animation */
.hero-slide.loading {
  background-color: #f0f0f0;
  background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Consulting Highlights */
.consulting-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.highlight-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.highlight-card:hover::before {
  transform: scaleY(1);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.highlight-content {
  flex: 1;
}

.highlight-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.highlight-card:hover .highlight-content h4 {
  color: var(--primary-color);
}

.highlight-content p {
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Mobile responsiveness for highlights */
@media (max-width: 768px) {
  .consulting-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .highlight-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
}
