/* ============================================
   ABP Global - Main Stylesheet
   Primary Colors: #17a2a2, #1e5c6e
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #17a2a2;
  --primary-dark: #1e5c6e;
  --primary-light: #20b2b2;
  --secondary-color: #1e5c6e;
  --accent-color: #17a2a2;
  --accent-light: rgba(23, 162, 162, 0.1);
  --text-dark: #1a1a2e;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes slideInUnderline {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Stagger animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ============================================
   Header & Navigation
   ============================================ */
header {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(30, 92, 110, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  animation: fadeInDown 0.6s ease-out;
}

/* Control header height */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;          /* Header height */
  padding: 0 20px;      /* Left/right spacing */
}

/* Bigger logo without breaking header */
.logo img {
  height: 150px;         /* Logo size */
  max-height: 100%;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}


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

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn:hover span {
  background-color: var(--primary-color);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--white);
  padding: 150px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  animation: fadeInLeft 1s ease-out;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-text h1 span {
  color: #a8e6cf;
  position: relative;
}

.hero-text h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(168, 230, 207, 0.3);
  z-index: -1;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-image {
  flex: 1;
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

.hero-image img {
  max-width: 400px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) brightness(1.1);
  animation: float 4s ease-in-out infinite;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #a8e6cf 0%, #88d4ab 100%);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(168, 230, 207, 0.5);
}

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

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

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  margin: 20px auto 0;
  border-radius: 2px;
  animation: slideInUnderline 0.8s ease-out forwards;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(30, 92, 110, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(30, 92, 110, 0.15);
}

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

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(23, 162, 162, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(23, 162, 162, 0.4);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

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

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(30, 92, 110, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(30, 92, 110, 0.2);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.why-choose .section-header h2 {
  color: var(--white);
}

.why-choose .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.why-choose .underline {
  background: linear-gradient(90deg, #a8e6cf, #88d4ab);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  position: relative;
  padding-bottom: 8px;
}

/* underline directly under title */
.feature-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #a8e6cf, #88d4ab);
  border-radius: 3px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Industries Section
   ============================================ */
.industries {
  background-color: var(--light-bg);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 25px;
}

.industry-card {
  background-color: var(--white);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(23, 162, 162, 0.05) 0%, rgba(30, 92, 110, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(23, 162, 162, 0.15);
}

.industry-card:hover::after {
  opacity: 1;
}

.industry-card svg {
  width: 55px;
  height: 55px;
  fill: var(--primary-color);
  margin-bottom: 18px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.industry-card:hover svg {
  fill: var(--primary-dark);
  transform: scale(1.15);
}

.industry-card h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.industry-card:hover h3 {
  color: var(--primary-color);
}

/* ============================================
   Global Presence Section
   ============================================ */
.global-presence {
  text-align: center;
  position: relative;
}

.global-presence .tagline {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 30px;
}

.countries {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.country-badge {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(30, 92, 110, 0.08);
}

.country-badge:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(23, 162, 162, 0.3);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background-color: var(--accent-light);
  transform: translateX(10px);
}

.contact-item svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-form {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(30, 92, 110, 0.1);
  border: 1px solid rgba(23, 162, 162, 0.1);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(23, 162, 162, 0.1);
}

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

/* ============================================
   Footer
   ============================================ */
footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #153a47 100%);
  color: var(--white);
  padding: 70px 0 25px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 150px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-brand:hover img {
  transform: scale(1.05);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.8;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 1.15rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: #a8e6cf;
  position: relative;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 14px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #a8e6cf;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--white);
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-header h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============================================
   Services Page Specific
   ============================================ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.service-detail-content.reverse {
  flex-direction: row-reverse;
}

.service-detail-text {
  flex: 1;
}

.service-detail-text h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
}

.service-detail-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

.service-detail-text p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.service-detail-text ul {
  list-style: none;
}

.service-detail-text ul li {
  padding: 10px 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.service-detail-text ul li:hover {
  color: var(--primary-dark);
  transform: translateX(8px);
}

.service-detail-text ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  flex-shrink: 0;
}

.service-detail-image {
  flex: 1;
}

.service-detail-image .service-icon-large {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(23, 162, 162, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-detail-image .service-icon-large:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 25px 60px rgba(23, 162, 162, 0.4);
}

.service-detail-image .service-icon-large svg {
  width: 100px;
  height: 100px;
  fill: var(--white);
}

/* ============================================
   About Page Specific
   ============================================ */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card,
.vision-card {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 45px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(30, 92, 110, 0.08);
  border: 1px solid rgba(23, 162, 162, 0.1);
  transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(23, 162, 162, 0.15);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.mission-card p,
.vision-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 35px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(30, 92, 110, 0.06);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(23, 162, 162, 0.12);
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Scroll Reveal Animation Support
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-content,
  .service-detail-content.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-detail-text ul {
    text-align: left;
  }

  .service-detail-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(30, 92, 110, 0.15);
    gap: 0;
  }

  .nav-links.active {
    display: flex;
    animation: fadeInDown 0.3s ease-out;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 130px 0 70px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links h4::after,
  .footer-services h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .countries {
    flex-direction: column;
    align-items: center;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .service-icon-large {
    width: 180px !important;
    height: 180px !important;
  }

  .service-icon-large svg {
    width: 80px !important;
    height: 80px !important;
  }
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.social-icons a {
  color:var(--text-dark);
  font-size: 28px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}