:root {
  --primary-green: #00a651;
  --primary-orange: #ff6b35;
  --primary-blue: #3b82f6;
  --primary-dark: #1a2332;
  --dark-bg: #0b1120;
  --text-white: #ffffff;
  --text-light-black: #4b5563;
  --text-light-gray: #d1d5db;
  --text-dark-gray: #9ca3af;
  --bg-overlay: rgba(0, 0, 0, 0.4);
  --sl-gradient-from: #00a651;
  --sl-gradient-to: #008040;
  --transition: all 0.15s ease;
  --sl-bg-gradient: linear-gradient(
    to right,
    var(--sl-gradient-from),
    var(--sl-gradient-to)
  );
  --sl-green-shadow: 0 10px 15px -3px #22c55e40, 0 4px 6px -4px #22c55e40;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0f172a;
  color: var(--text-white);
  overflow-x: hidden;
}

/* --- Global Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* --- Top Info Bar --- */
.top-bar {
  background-color: #0c121d;
  padding: 8px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info a {
  color: var(--text-light-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.top-info a:hover {
  color: var(--primary-green);
}

.top-info a svg {
  width: 16px;
  height: 16px;
}

.top-certs {
  color: var(--text-light-gray);
  letter-spacing: 0.5px;
}

/* --- Header --- */
header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background-color: transparent;
}

header.sticky {
  top: 0;
  background-color: #1a2332;
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-box {
  background-color: var(--primary-green);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  border-radius: 6px;
}

.logo-text h1 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  text-transform: uppercase;
}

.logo-text p {
  font-size: 10px;
  color: var(--text-dark-gray);
  letter-spacing: 1px;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
  padding: 10px 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover,
.nav-link.active,
.nav-item:hover .nav-link {
  color: var(--primary-green);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* --- Mega Menu --- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 500px;
  background-color: #1a2332;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1001;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mega-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-title {
  color: var(--primary-green);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.mega-links a {
  color: var(--text-light-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition);
}

.mega-links a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.contact-btn {
  background-image: var(--sl-bg-gradient);
  color: var(--text-white);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.contact-btn:hover {
  color: var(--text-white);
  box-shadow: var(--sl-green-shadow);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* --- Hero Slider --- */
.hero {
  position: relative;
  height: 880px;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: flex-start;
  padding: 0 20px;
  padding-top: 130px !important;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 35, 50, 0.95) 0%,
    rgba(26, 35, 50, 0.7) 50%,
    transparent 100%
  );
}

.hero-content {
  max-width: 768px;
  margin: 0 auto;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge span {
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: block;
}

.hero-content h2 {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p.subtitle {
  font-size: 24px;
  color: var(--text-light-gray);
  line-height: 32px;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-content p.description {
  color: var(--text-dark-gray);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 570px;
}

.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.primary-btn {
  background-image: var(--sl-bg-gradient);
  color: var(--text-white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.secondary-btn svg {
  color: var(--primary-green);
  width: 20px;
  height: 20px;
}

.primary-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.primary-btn:hover {
  box-shadow: var(--sl-green-shadow);
}

.primary-btn:hover svg {
  transform: translateX(5px);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* --- Stats Overlay --- */
.stats-container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  z-index: 20;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-dark-gray);
  font-weight: 500;
}

/* --- Slider Controls --- */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 30;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-nav .nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn svg {
  width: 24px;
  height: 24px;
}

.nav-btn:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-nav .dot:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dot.active {
  width: 32px;
  background: var(--primary-green);
}

/* --- Mobile Navigation --- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu-content {
  background: #1a2332;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-content a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  line-height: 24px;
}

.mobile-menu-content a:hover {
  color: var(--primary-green);
}

.mobile-menu-content .contact-btn {
  text-align: center;
  color: var(--text-white) !important;
  margin-top: 10px;
}

/* Scroll indicator */
.scroll-text {
  position: absolute;
  right: 20px;
  bottom: 100px;
  transform: rotate(90deg);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark-gray);
  font-weight: 700;
}

/* --- SERVICES SECTION STYLES --- */
.services-section {
  background-color: #f9fafb;
  padding: 100px 0;
  color: #1a2332;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

/* Dark Mode Text Colors for Projects Section */
.projects-section .section-title {
  color: #ffffff;
}

.projects-section .section-subtitle {
  color: var(--text-dark-gray);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light-black);
  line-height: 1.6;
}

/* Services Tabs */
.services-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.tab-btn:hover {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.tab-btn.active {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-white);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00a65115;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.tab-btn:nth-child(3) .tab-icon {
  color: var(--primary-orange);
  background-color: #ff6b3520;
}

.tab-btn:nth-child(4) .tab-icon {
  color: var(--primary-blue);
  background-color: #3b82f615;
}

.tab-btn.active .tab-icon {
  background-color: #00a65115;
  color: var(--primary-orange);
}

/* Specific icon colors for active state based on screenshot */
.tab-btn:nth-child(1).active .tab-icon {
  color: var(--primary-green);
}

.tab-btn:nth-child(2).active .tab-icon {
  color: var(--primary-green);
}

.tab-btn:nth-child(3).active .tab-icon {
  background-color: #ff6b3520;
}

.tab-btn:nth-child(4).active .tab-icon {
  color: var(--primary-blue);
  background-color: #3b82f615;
}

.tab-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.tab-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.tab-btn.active .tab-desc {
  color: var(--text-light-gray);
}

/* Content Area */
.service-content-wrapper {
  display: none;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  animation: fadeIn 0.4s ease forwards;
}

.service-content-wrapper.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-image-col {
  position: relative;
  min-height: 400px;
}

.service-image-col:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(26 35 50 / 20%);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Overlay Stats */
.img-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  gap: 16px;
  display: flex;
  justify-content: space-around;
}

.img-stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  width: 100%;
  z-index: 2;
}

.img-stat-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.img-stat-item p {
  font-size: 12px;
  opacity: 0.8;
  text-transform: capitalize;
}

.service-text-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.service-heading-icon {
  width: 48px;
  height: 48px;
  background-color: #fff1eb;
  color: var(--primary-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-heading-icon.green {
  background-color: #00a65115;
  color: var(--primary-green);
}

.service-heading-icon.orange {
  background-color: #ff6b3520;
  color: var(--primary-orange);
}

.service-heading-icon.blue {
  background-color: #3b82f615;
  color: var(--primary-blue);
}

.service-heading h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2332;
}

.service-details {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 32px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #374151;
  font-weight: 400;
}

.check-icon {
  width: 20px;
  height: 20px;
  background-color: #00a6511a;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 12px;
  height: 12px;
}

.service-actions {
  display: flex;
  gap: 16px;
}

.btn-outline {
  border: 2px solid #1a2332;
  color: #1a2332;
  background: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  color: #fff;
  background-color: #1a2332;
  border-color: #1a2332;
}

/* --- PROJECTS SECTION STYLES --- */
.projects-section {
  background-color: var(--dark-bg);
  padding: 100px 0;
  color: #fff;
}

.filters-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--text-light-gray);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: #ffffff33;
}

.filter-btn.active {
  background: var(--primary-green);
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.project-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image-wrap:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(26 35 50 / 20%);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

/* Hover Arrow Button */
.card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2332;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.project-card:hover .card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.card-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  right: 20px;
  z-index: 5;
}

.tag-category {
  background: var(--primary-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: capitalize;
}

.tag-category.orange {
  background: var(--primary-orange);
}

.tag-category.blue {
  background: var(--primary-blue);
}

.tag-budget {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  margin-bottom: 4px;
}

.project-card:hover .card-content h3 {
  color: var(--primary-green);
}

/* When expanded/clicked, title turns green too */
.project-card.expanded .card-content h3 {
  color: var(--primary-green);
}

.card-desc {
  font-size: 14px;
  color: var(--text-dark-gray);
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 14px;
  color: #64748b;
  font-weight: 400;
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item svg {
  width: 14px;
  height: 14px;
}

/* Expansion Logic */
.card-expanded-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.project-card.expanded .card-expanded-content {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
  padding-top: 16px;
}

.expanded-text {
  font-size: 14px;
  color: var(--text-light-gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.view-case-study {
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.view-case-study:hover {
  text-decoration: underline;
}

.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.view-all-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.view-all-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* --- INDUSTRIES SECTION STYLES --- */
.industries-section {
  background-color: #fff;
  padding: 100px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.industry-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}

.industry-card:hover {
  background-color: #1a2332;
}

.industry-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: var(--transition);
}

.industry-icon-box svg {
  width: 28px;
  height: 28px;
  transition: var(--transition);
}

.industry-card:hover svg {
  width: 32px;
  height: 32px;
}

/* Specific Colors for Industry Icons (Normal State) */
.industry-card[data-color='orange'] .industry-icon-box {
  background-color: rgba(255, 107, 53, 0.082);
  color: var(--primary-orange);
}

.industry-card[data-color='green'] .industry-icon-box {
  background-color: rgba(0, 166, 81, 0.082);
  color: var(--primary-green);
}

.industry-card[data-color='blue'] .industry-icon-box {
  background-color: rgba(59, 130, 246, 0.082);
  color: var(--primary-blue);
}

.industry-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #1a2332;
  transition: var(--transition);
}

.industry-card:hover .industry-title {
  color: #fff;
}

.industry-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  transition: var(--transition);
}

.industry-card:hover .industry-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* CTA Banner */
.industry-cta-banner {
  background: linear-gradient(90deg, #1a2332 0%, #2d3a4f 100%);
  padding: 48px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.industry-cta-banner .banner-overlay-grad {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  left: 0;
}

.banner-overlay-grad .left-grad {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 99999px;
  filter: blur(64px);
  -webkit-filter: blur(64px);
  background-color: #ff6b35;
  left: 0;
  bottom: 0;
}

.banner-overlay-grad .right-grad {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 99999px;
  filter: blur(64px);
  -webkit-filter: blur(64px);
  background-color: #00a651;
  right: 0;
  top: 0;
  z-index: 1;
}

.banner-overlay-grad .cta-left-grad {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 99999px;
  filter: blur(64px);
  -webkit-filter: blur(64px);
  background-color: rgba(255, 107, 53, 0.1);
  right: 20%;
  bottom: 0;
}

.banner-overlay-grad .cta-right-grad {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 99999px;
  filter: blur(64px);
  -webkit-filter: blur(64px);
  background-color: rgba(0, 166, 80, 0.1);
  left: 20%;
  top: 0;
  z-index: 1;
}

.banner-overlay-grad .right-grad.grad-stat {
  width: 256px;
  height: 256px;
  background-color: #00a65133;
}

.banner-content {
  z-index: 2;
}

.banner-content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light-gray);
  max-width: 600px;
}

.banner-btn {
  background-color: #fff;
  color: #1a2332;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  z-index: 2;
}

.banner-btn:hover {
  background-color: #f3f4f6;
  cursor: pointer;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  background-color: #ffffff;
  padding: 20px 0 100px 0;
}

.testimonial-card-container {
  position: relative;
  background: #f9fafb;
  border-radius: 20px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.testimonial-slide {
  display: none;
  animation: fadeTestimonial 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeTestimonial {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-icon {
  color: var(--primary-green);
  margin-bottom: 16px;
  height: 48px;
  width: 48px;
  background-color: #e0f2e9;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.quote-icon svg {
  width: 24px;
  height: 24px;
  opacity: 1;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: #fbbf24;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}

.testimonial-text {
  font-size: 24px;
  line-height: 32px;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 32px;
}

.author-info h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
}

.testimonial-nav {
  position: absolute;
  bottom: 90px;
  right: 48px;
  display: flex;
  gap: 12px;
}

.t-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: #1a2332;
}

.t-nav-btn:hover {
  background: #1a2332;
  color: #fff;
  border-color: #1a2332;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.t-dot {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--primary-green);
  width: 24px;
  border-radius: 10px;
}

.logo-strip-title {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin-bottom: 30px;
  font-weight: 400;
}

.logo-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 1;
  margin: 0 auto;
}

.client-logo {
  font-size: 18px;
  font-weight: 800;
  color: #cbd5e1;
  text-transform: uppercase;
  font-family: sans-serif;
  cursor: default;
  transition: var(--transition);
}

.client-logo:hover {
  color: #1a2332;
}

/* --- ABOUT US SECTION --- */
.about-section {
  background-color: #f9fafb;
  padding: 100px 0;
  color: #1a2332;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}

.about-text-content h4 {
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.about-text-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-text-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 24px;
}

.certifications-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.cert-cont h3 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--primary-dark);
}

.cert-item .cert-cont p {
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0px 1px 2px 0px #0000000d;
}

.cert-item svg {
  color: var(--primary-green);
  width: 20px;
  height: 20px;
}

.about-stats-card {
  position: relative;
  background-color: #111827;
  border-radius: 16px;
  padding: 48px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-grid-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #ffffff1a;
  z-index: 2;
}

.about-stat {
  text-align: center;
}

.about-stat h3 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-stat p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #9ca3af;
}

.about-partner-btn {
  background-color: var(--primary-green);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: block;
  z-index: 2;
}

.about-partner-btn:hover {
  background-color: #009c50;
  cursor: pointer;
}

/* Core Values */
.core-values-header {
  text-align: center;
  margin-bottom: 50px;
}

.core-values-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.core-values-header p {
  color: #4b5563;
  line-height: 1.5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 100px;
}

.value-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0px 1px 2px 0px #0000000d;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  background-color: #ecfdf5;
  color: var(--primary-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  height: 28px;
  width: 28px;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a2332;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

/* Leadership Team */
.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.team-header p {
  color: #4b5563;
  max-width: 600px;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px #0000000d;
}

.team-card:hover {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.team-image-wrap {
  position: relative;
  height: 256px;
  overflow: hidden;
}

/* Image Zoom Effect */
.team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .team-image-wrap img {
  transform: scale(1.05);
}

/* Gradient Overlay */
.team-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1a2332, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-card:hover .team-image-wrap::after {
  opacity: 0.8;
}

/* Team Social Hover Effect */
.team-social-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  z-index: 2;
}

.team-card:hover .team-social-overlay {
  opacity: 1;
  transform: translateY(0);
}

.social-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2332;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-btn svg {
  height: 18px;
  width: 18px;
}

.social-btn:hover {
  background: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
}

.team-info {
  padding: 24px;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 12px;
  display: block;
}

.team-bio {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

/* --- CTA BOTTOM SECTION --- */
.cta-section {
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to bottom right, #1a2332, #1a2332, #0f1621);
}

.cta-header {
  text-align: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-label {
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.cta-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-header p {
  font-size: 18px;
  color: var(--text-dark-gray);
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  padding-bottom: 60px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-card {
  background-color: #ffffff0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition);
}

.cta-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.cta-card .cta-icon-box svg {
  width: 28px;
  height: 28px;
  transition: var(--transition);
}

.cta-card:hover .cta-icon-box svg {
  width: 31px;
  height: 31px;
}

.cta-card:hover .cta-link {
  gap: 10px;
}

.cta-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-bottom: 24px;
}

/* Specific styles for each card type */
.cta-card.request .cta-icon-box {
  background: rgba(0, 166, 81, 0.2);
  color: var(--primary-green);
}

.cta-card.brochure .cta-icon-box {
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary-orange);
}

.cta-card.schedule .cta-icon-box {
  background: rgba(59, 130, 246, 0.2);
  color: var(--primary-blue);
}

.cta-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-dark-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}

.cta-card.request .cta-link {
  color: var(--primary-green);
}

.cta-card.brochure .cta-link {
  color: var(--primary-orange);
}

.cta-card.schedule .cta-link {
  color: var(--primary-blue);
}

.cta-footer-certs {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  z-index: 2;
}

.cta-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-cert-item h4 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cta-cert-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  header nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .top-bar {
    display: none;
  }

  .hero {
    height: 830px;
  }

  header {
    top: 0;
  }

  .hero-content {
    max-width: 650px;
    margin: unset;
  }

  .nav-item:hover .mega-menu {
    display: none;
  }

  .section-header {
    margin-bottom: 50px;
  }

  /* Services Responsive */
  .services-section {
    padding: 80px 0;
  }

  .projects-section {
    padding: 80px 0;
  }

  .service-content-wrapper {
    border-radius: 16px;
  }

  .services-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .service-content-wrapper.active {
    grid-template-columns: 1fr;
  }

  .service-image-col {
    max-height: 260px;
    min-height: unset;
  }

  .service-text-col {
    padding: 32px 32px;
  }

  /* Projects Responsive */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Industries Responsive */
  .industries-section {
    padding: 80px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px;
  }

  /* Testimonial Responsive */
  .testimonials-section {
    padding-bottom: 80px;
  }

  .testimonial-card-container {
    padding: 40px;
    margin-bottom: 40px;
  }

  .logo-strip {
    gap: 30px;
  }

  /* About Us Responsive */
  .about-section {
    padding: 80px 0;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA Section Responsive */
  .cta-section {
    padding: 80px 0;
  }

  .cta-grid {
    padding-bottom: 40px;
    gap: 24px;
  }

  .cta-card {
    padding: 24px;
  }

  .cta-footer-certs {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .cta-group {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .stat-item h3 {
    font-size: 32px;
  }

  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    bottom: 100px;
  }

  .stat-item {
    text-align: center;
  }

  .hero {
    height: 1050px;
  }

  .hero-content h2 {
    font-size: 33px;
    line-height: 1.2;
  }

  .hero-content p.subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .scroll-text {
    display: none;
  }

  /* Services Mobile */
  .services-tabs {
    gap: 12px;
  }

  .service-text-col {
    padding: 24px;
  }

  .service-image-col {
    max-height: 230px;
    height: 230px;
  }

  .img-stats {
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 12px;
  }

  .img-stat-item h4 {
    font-size: 16px;
  }

  .tab-btn {
    padding: 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .service-actions {
    flex-direction: column;
  }

  .btn-outline,
  .primary-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Projects Mobile */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Industries Mobile */
  .industries-grid {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  /* Testimonial Mobile */
  .testimonial-card-container {
    padding: 30px 24px;
  }

  .author-info {
    max-width: 190px;
  }

  .testimonial-text {
    font-size: 20px;
  }

  .testimonial-nav {
    bottom: 70px;
    right: 24px;
  }

  .logo-strip {
    gap: 24px;
  }

  .client-logo {
    font-size: 16px;
  }

  /* About Us Mobile */
  .about-stats-card {
    padding: 24px;
  }

  .stats-grid-about {
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .about-stat h3 {
    font-size: 36px;
  }

  .about-stat p {
    font-size: 14px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Section Mobile */
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-card:last-child {
    grid-column: span 1;
  }

  .cta-footer-certs {
    gap: 30px;
  }

  .cta-cert-item h4 {
    font-size: 28px;
    line-height: 32px;
  }
}

/* --- MODAL STYLES (THE POPUP) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #fff;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  max-width: 900px;
  border-radius: 20px;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

/* Sidebar */
.modal-sidebar {
  background-color: #1a2332;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-header p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 166, 81, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.info-text span {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.4;
  transition: var(--transition);
}

.info-text a {
  text-decoration: none;
}

.info-text a span:hover {
  color: var(--primary-green);
}

.global-offices-tags {
  margin-top: auto;
}

.global-offices-tags h4 {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 16px;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-wrap .tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  color: #d1d5db;
}

/* Form Content */
.modal-form-content {
  padding: 40px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
  border: none;
  z-index: 3;
}

.close-modal:hover {
  background: #e2e8f0;
  color: #1a2332;
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 24px;
  color: #1a2332;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-header p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  color: #1a2332;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
}

.submit-btn {
  grid-column: span 2;
  background-color: var(--primary-green);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  transition: background 0.2s;
}

.submit-btn:hover {
  background-color: #008f45;
}

.form-footer-text {
  grid-column: span 2;
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
}

@media (max-width: 850px) {
  .modal-container {
    grid-template-columns: 1fr;
    max-height: 80vh;
    overflow-y: auto;
  }

  .modal-sidebar {
    padding: 40px 24px;
  }

  .modal-form-content {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .contact-form {
    display: flex;
    flex-direction: column;
  }

  .form-group {
    grid-column: span 1;
  }
}

/* --- FOOTER STYLES --- */
.site-footer {
  background-color: #0f1621;
  color: #94a3b8;
  font-size: 14px;
}

/* Newsletter Bar */
.newsletter-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.newsletter-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.newsletter-text p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 500px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px 20px;
  color: #94a3b8;
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form input:focus {
  border-color: var(--primary-green);
}

.newsletter-form button {
  background-color: var(--primary-green);
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: #009c50;
}

.newsletter-form button svg {
  width: 16px;
  height: 16px;
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 80px 0;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-green);
}

/* Brand Column */
.brand-col {
  padding-right: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1.5;
  font-size: 16px;
  gap: 10px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary-green);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #94a3b8;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary-green);
  color: #fff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Global Offices List */
.office-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.office-list svg {
  color: var(--primary-green);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.office-list div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.office-list strong {
  color: #e2e8f0;
  font-weight: 600;
}

.office-list span {
  font-size: 13px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--primary-green);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .brand-col {
    grid-column: span 2;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .newsletter-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 60px 0;
    gap: 40px;
  }

  .brand-col,
  .offices-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
  }
}
