/* ============================================
   SOUDA TECHNICAL - MAIN STYLESHEET
   Construction & Technical Services
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1e3a5f;
  --primary-dark: #152a45;
  --primary-light: #2a4a73;
  --accent: #e67e22;
  --accent-dark: #d35400;
  --accent-light: #f39c12;
  --secondary: #2c3e50;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --text: #333333;
  --text-light: #666666;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --font-sans:
    "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    Arial, sans-serif;
  --container: 1280px;
  --header-height: 80px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  visibility: hidden;
}

html.components-loaded {
  visibility: visible;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;

  /* img {
  max-width: 100%; */
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  /* font-weight: 700; */
  font-weight: 600;
  /* font-size: 0.875rem; */
  font-size: 1.275rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.875rem;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;

  /* background: rgba(255, 255, 255, 0.2); */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(
    2px
  ); /* Optional: Adds a blur effect to the background */
  border-radius: 0px 0px 10px 10px; /* Optional: Rounds the corners of the header */
  color: var(--text-color);
  font-weight: bolder;
  padding: 58px;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
  height: 70px;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Logo */
/* .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    background: var(--accent);
    transform: rotate(5deg);
} */

/* =========================================
   COMPANY LOGO
========================================= */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 280px;
  height: 280px;
  /* width: 65px;
    height: 65px; */

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
} */

/* =========================================
   LOGO TEXT
========================================= */

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-size: 20px;
  font-weight: 800;
  color: #1c2733;
  white-space: nowrap;
}

.logo-tagline {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  color: #e67e22;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(30, 58, 95, 0.04);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Dropdown */
.dropdown-toggle {
  cursor: pointer;
}

.dropdown-icon {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.nav-item.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 100;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 2rem;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 1.25rem;
}

.dropdown-link i {
  width: 32px;
  height: 32px;
  background: rgba(30, 58, 95, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-style: normal;
  flex-shrink: 0;
}

.dropdown-link:hover i {
  background: var(--accent);
  color: var(--white);
}

/* CTA Button in Nav */
.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  z-index: 1001;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== HERO SECTION ===== */
/* .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(30, 58, 95, 0.7) 50%, rgba(30, 58, 95, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    padding-top: var(--header-height);
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-subtitle::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
} */

/* =========================================
   HERO SECTION
========================================= */

.hero {
  /* position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: #1e3a5f; */
  position: relative;
  width: 100%;
  /* Full browser height minus navbar */
  height: calc(100vh - 10px);
  /* Prevent hero from becoming too short */
  min-height: 650px;
  overflow: hidden;
  background: #1e3a5f;
}

/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

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

/* Hero Images */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 6s ease;
}

/* Zoom Effect */
.hero-slide.active img {
  transform: scale(1.05);
}

/* =========================================
   DARK OVERLAY
========================================= */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(6, 29, 46, 0.85) 0%,
    rgba(10, 25, 40, 0.65) 15%,
    rgba(13, 70, 128, 0.35) 60%
      /* rgba(10, 25, 40, 0.85) 0%,
            rgba(10, 25, 40, 0.65) 45%,
            rgba(10, 25, 40, 0.35) 100% */
  );
}

/* =========================================
   HERO CONTENT
========================================= */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  width: 92%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 80px;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  margin-bottom: 15px;
  color: #e67e22;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-subtitle::before {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.hero-subtitle::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.hero-title {
  max-width: 750px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 800;
}

.hero-title span {
  color: #e67e22;
}

.hero-desc {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

/* =========================================
   HERO BUTTONS
========================================= */

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

.hero-buttons .btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #e67e22;
  color: #ffffff;
  border: 2px solid #e67e22;
}

.btn-primary:hover {
  background: #c9630f;
  border-color: #c9630f;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: #ffffff;
  color: #1e3a5f;
  transform: translateY(-2px);
}

/* =========================================
   SLIDER CONTROLS
========================================= */
.slider-controls {
  /* position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    transform: translateY(-50%);
    pointer-events: none; */
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-btn {
  /* width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease; */

  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

/* =========================================
   ARROW HOVER
========================================= */

.slider-btn:hover {
  background: #e67e22;
  border-color: #e67e22;
  transform: scale(1.1);
}

/* =========================================
   LEFT ARROW
========================================= */

.slider-btn.prev {
  margin-left: 0;
}

/* =========================================
   RIGHT ARROW
========================================= */

.slider-btn.next {
  margin-right: 0;
}

/* =========================================
   SLIDER DOTS
========================================= */

.slider-dots {
  position: absolute;
  bottom: 150px;
  left: 50%;
  z-index: 10;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 30px;
  background: #e67e22;
  border-radius: 10px;
}

/* =========================================
   HERO STATS
========================================= */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(15, 30, 45, 0.9);
  backdrop-filter: blur(5px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  color: #ff6c22;
  font-size: 30px;
  font-weight: 800;
}

.stat-label {
  margin-top: 5px;
  color: rgba(255, 115, 8, 0.7);
  /* color: rgba(255, 255, 255, 0.7); */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 3rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.25rem;
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.slider-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: var(--radius-full);
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(248, 248, 248, 0.7);
  font-size: 0.975rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--light);
}

.service-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--accent-dark);
} */

/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* =========================================
   SERVICE CARD
========================================= */

.service-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================================
   SERVICE IMAGE
========================================= */

.service-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* =========================================
   IMAGE OVERLAY
========================================= */

.service-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 45px 25px 20px;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

.service-category {
  display: block;
  margin-bottom: 5px;
  color: #e67e22;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.service-image-overlay h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

/* =========================================
   SERVICE CONTENT
========================================= */

.service-content {
  padding: 25px;
}

.service-title {
  margin: 0 0 10px;
  color: #1c2733;
  font-size: 21px;
  font-weight: 700;
}

.service-desc {
  margin: 0 0 20px;
  color: #68737d;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================
   VIEW DETAILS BUTTON
========================================= */

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #e67e22;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.service-link span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.service-link:hover span {
  transform: translateX(5px);
}

/* =========================================
   SERVICE MODAL
========================================= */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.service-modal.active {
  display: flex;
}

/* =========================================
   MODAL BACKGROUND
========================================= */
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 25, 0.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

/* =========================================
   MODAL BOX
========================================= */

.modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: modalOpen 0.35s ease;
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================================
   MODAL IMAGE
========================================= */
.modal-image {
  min-height: 500px;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   MODAL BODY
========================================= */
.modal-body {
  padding: 45px;
  overflow-y: auto;
}

.modal-category {
  color: #e67e22;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.modal-body h2 {
  margin: 8px 0 15px;
  color: #1c2733;
  font-size: 32px;
}

.modal-body p {
  color: #68737d;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}

/* =========================================
   FEATURES
========================================= */

.modal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 25px 0;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #34404b;
  font-size: 14px;
  font-weight: 600;
}

.modal-feature::before {
  content: "✓";
  color: #e67e22;
  font-weight: 800;
}

/* =========================================
   CLOSE BUTTON
========================================= */

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c2733;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #ffffff;
  background: #e67e22;
  transform: rotate(90deg);
}

/* =========================================
   MODAL CTA
========================================= */

.modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  color: #ffffff;
  background: #e67e22;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.modal-cta:hover {
  background: #c9630f;
  transform: translateY(-2px);
}

/* ===== ABOUT SECTION ===== */
/* =========================================
   INNER PAGE HERO
========================================= */

.inner-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  /* background-image:url("assets/img/slider.jpg"); */
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.inner-page-hero-overlay {
  position: absolute;
  inset: 0;
  /* background:linear-gradient(90deg,rgba(15, 30, 45, 0.92),rgba(15, 30, 45, 0.55)); */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92),
    rgba(15, 30, 45, 0.55)
  );
}

.inner-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 70px;
}

.inner-page-hero h1 {
  margin: 15px 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
}

.inner-page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  font-size: 14px;
}

.breadcrumb a {
  color: #e67e22;
  text-decoration: none;
}

/* =========================================
   ABOUT INTRO
========================================= */
/*
.about-grid {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-image {

    position: relative;

}
.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;

}


.about-image-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    padding: 20px 25px;
    background: #e67e22;
    color: #ffffff;
    border-radius: 5px;
    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.2);

} */

.about-image-badge strong {
  display: block;
  font-size: 30px;
}

.about-image-badge span {
  font-size: 12px;
}

.about-content p {
  margin-bottom: 18px;
  color: #68737d;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  background: var(--accent);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-img-badge .badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-badge .badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-content .section-header {
  text-align: left;
  margin: 0 0 1.5rem 0;
}

.about-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature i {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-style: normal;
}

.about-feature span {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* =========================================
   CAPABILITIES
========================================= */

.capabilities-section {
  background: #f6f8fa;
}

.capabilities-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  width: 100%;

  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.capability-card {
  /* padding: 35px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease; */

  position: relative;
  min-width: 0;
  min-height: 155px;
  padding: 38px 35px 60px;
  background: #ededed;
  border-radius: 18px;
  overflow: hidden;
  box-sizing: border-box;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  background: #f5a53c;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   7. BOTTOM-RIGHT WHITE CURVE
   ========================================================= */

/*
   This creates the white curved area behind
   the floating arrow.

   The arrow itself does NOT touch the card.
*/
.capability-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 498px;
  height: 118px;
  background: #1e3a5f;
  /* background: #ffffff; */
  border-radius: 100% 0 0 0;
  z-index: 1;
  pointer-events: none;
}

.capability-number {
  margin-bottom: 15px;
  color: #e67e22;
  font-size: 14px;
  font-weight: 800;
}

.capability-card h3 {
  margin-bottom: 12px;
  color: #1c2733;
}

.capability-card p {
  color: #68737d;
  line-height: 1.7;
}

/* =====================================================
   CAPABILITY CARD
===================================================== */

/* =====================================================
   CAPABILITY ICON
===================================================== */

/* =========================================
   MISSION & VISION
========================================= */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-card,
.vision-card {
  padding: 55px;
  border-radius: 18px;
}

.mission-card {
  background: #1e3a5f;
  color: #ffffff;
}

.vision-card {
  background: #e67e22;
  color: #ffffff;
}

.mission-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mission-card h2,
.vision-card h2 {
  margin: 15px 0;
  font-size: 32px;
}

.mission-card p,
.vision-card p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   CORE VALUES
========================================= */

.values-section {
  background: #f6f8fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.value-card {
  padding: 35px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  /* background: #ffffff; */
  border-radius: 28px;
}

.value-icon {
  /* margin-bottom: 20px;
  color: #e67e22;
  font-size: 14px;
  font-weight: 800; */
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d87912;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 22px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.value-card:hover .value-icon {
  background: #c56508;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(216, 121, 18, 0.25);
}

.value-card h3 {
  margin-bottom: 12px;
  color: #1c2733;
}

.value-card p {
  color: #68737d;
  line-height: 1.7;
}

/* =========================================
   ABOUT CTA
========================================= */

.about-cta {
  position: relative;
  padding: 100px 0;
  /* background-image:url("../images/about/about-cta.jpg"); */
  background-image: url("assets/images/about-cta.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 45, 0.82);
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.about-cta h2 {
  margin: 15px 0;
  font-size: 46px;
}

.about-cta p {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

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

/* ===== PROJECTS SECTION ===== */
.projects-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: var(--transition);
  border: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 58, 95, 0.95) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-category {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.project-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.project-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.project-card:hover .project-view {
  transform: translate(-50%, -50%) scale(1);
}
/*Projects Section NEW CODE Editid on 09 Aug 2026 */

/* =========================================
   PROJECT FILTER
========================================= */

.projects-filter {
  display: flex;

  justify-content: center;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  margin: 40px 0 45px;
}

.filter-btn {
  padding: 12px 24px;

  background: #ffffff;

  color: #1e3a5f;

  border: 1px solid #dfe4e8;

  border-radius: 4px;

  font-family: inherit;

  font-size: 14px;

  font-weight: 600;

  cursor: pointer;

  transition: all 0.3s ease;
}
*/ .filter-btn:hover {
  background: #1e3a5f;

  color: #ffffff;

  border-color: #1e3a5f;
}

.filter-btn.active {
  background: #1e3a5f;

  color: #ffffff;

  border-color: #1e3a5f;
}

/* PROJECT CARD ANIMATION */

/* .project-page-card {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
} */

/* MOBILE */

@media (max-width: 600px) {
  .projects-filter {
    justify-content: flex-start;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 10px;

    scrollbar-width: none;
  }

  .projects-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;

    white-space: nowrap;

    padding: 10px 18px;
  }
}

/* =========================================
   PROJECT MODAL
========================================= */

.project-modal {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 30px;

  visibility: hidden;

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.project-modal.active {
  visibility: visible;

  opacity: 1;

  pointer-events: auto;
}

/* DARK BACKGROUND */

.project-modal-overlay {
  position: absolute;

  inset: 0;

  background: rgba(7, 16, 27, 0.88);

  backdrop-filter: blur(6px);
}

/* =========================================
   INFORMATION
========================================= */

.project-modal-info {
  padding: 55px 40px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.project-modal-category {
  color: #e67e22;

  font-size: 14px;

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  margin-bottom: 12px;
}

.project-modal-info h2 {
  margin: 0 0 20px;

  color: #1e3a5f;

  font-size: 20px;

  line-height: 1.2;
}

/* META */

.project-modal-meta {
  display: flex;

  flex-direction: column;

  gap: 12px;

  padding: 20px 0;

  margin-bottom: 20px;

  border-top: 1px solid #eeeeee;

  border-bottom: 1px solid #eeeeee;
}

.project-modal-meta span {
  color: #5f6b75;

  font-size: 14px;
}

.project-modal-info p {
  color: #69757f;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

/* =========================================
   CLOSE BUTTON
========================================= */

.project-modal-close {
  position: absolute;

  top: 15px;

  right: 15px;

  z-index: 10;

  width: 42px;

  height: 42px;

  border: none;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.65);

  color: #ffffff;

  font-size: 28px;

  line-height: 1;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.project-modal-close:hover {
  background: #e67e22;

  transform: rotate(90deg);
}

/* =========================================
   PREVIOUS / NEXT
========================================= */

.project-modal-nav {
  position: absolute;

  top: 50%;

  z-index: 10;

  transform: translateY(-50%);

  width: 46px;

  height: 46px;

  border: none;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.65);

  color: #ffffff;

  font-size: 22px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.project-modal-prev {
  left: 15px;
}

.project-modal-next {
  right: 15px;
}

.project-modal-nav:hover {
  background: #e67e22;
}

.project-modal-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.project-modal-next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {
  .project-modal {
    padding: 15px;
  }

  .project-modal-box {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }
  .project-modal-image {
    height: 400px;
  }
  .project-modal-info {
    padding: 30px;
  }
  .project-modal-info h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .project-modal-image {
    height: 280px;
  }
  .project-modal-info {
    padding: 25px 20px;
  }
  .project-modal-info h2 {
    font-size: 24px;
  }
  .project-modal-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* =========================================
   PROJECT LIGHTBOX
========================================= */

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
}

.lightbox-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--primary);
  color: var(--white);
}

.why-us .section-label {
  color: var(--accent);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.why-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}

.contact-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  height: 100%;
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  font-style: normal;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.contact-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  background: var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  gap: 1rem;
}

.map-placeholder i {
  font-size: 3rem;
  font-style: normal;
}

/* ===== FOOTER ===== */

/* ==================================================
   MODERN FOOTER
================================================== */

.footer {
  background: #101d2d;
  color: #ffffff;
  /* padding: 45px 0 0; */
  width: 100%;
}

/* ==================================================
   FOOTER GRID
================================================== */

.footer-grid {
  display: grid;
  grid-template-columns:
    1.5fr
    0.8fr
    1fr
    1.35fr;
  gap: 55px;
  padding: 45px 0 38px;
  align-items: start;
}

/* ==================================================
   COMPANY
================================================== */

.footer-company {
  max-width: 330px;
}

/* ==================================================
   LOGO
================================================== */

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-logo img {
  display: block;
  width: 255px;
  height: auto;
  max-height: 108px;
  object-fit: contain;
}

/* ==================================================
   DESCRIPTION
================================================== */

.footer-desc {
  margin: 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ==================================================
   SOCIAL
================================================== */

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #e58a25;
  border-color: #e58a25;
  transform: translateY(-2px);
}

/* ==================================================
   FOOTER COLUMNS
================================================== */

.footer-column {
  min-width: 0;
}

.footer-title {
  position: relative;
  margin: 3px 0 19px;
  padding-bottom: 9px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #e58a25;
}

/* ==================================================
   LINKS
================================================== */

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  /* color: #ffffff; */
  color: #ff9d00;
}

/* ==================================================
   CONTACT
================================================== */

.footer-contact .footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact-icon {
  width: 17px;
  flex: 0 0 17px;
  color: #e58a25;
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}

/* ==================================================
   BOTTOM
================================================== */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11.5px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 11.5px;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.2);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {
  .footer-grid {
    grid-template-columns:
      1.4fr
      1fr
      1fr;
    gap: 35px;
  }

  .footer-contact {
    grid-column: span 1;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0 30px;
  }

  .footer-company {
    max-width: 100%;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-desc {
    max-width: 500px;
  }

  .footer-bottom {
    min-height: auto;
    padding: 17px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {
  .footer-grid {
    gap: 25px;
  }

  .footer-logo img {
    width: 140px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
  }
}

/* .footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-brand {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-brand .logo-tagline {
    color: var(--gray-500);
}

.footer-brand .logo-icon {
    background: var(rgba(255,255,255,0.1));

}

.footer-desc {
    color: var(--gray-500);
    margin: 1.5rem 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
    font-style: normal;
}

.footer-newsletter p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: var(--gray-600);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-btn {
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    border: none;
}

.newsletter-btn:hover {
    background: var(--accent-dark);
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
} */

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--primary);
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 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.03'%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");
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.page-breadcrumb a:hover {
  color: var(--accent);
}

.page-breadcrumb .separator {
  color: var(--accent);
}

/* ===== SERVICES PAGE ===== */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-page-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-page-img {
  height: 220px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.service-page-img::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(30, 58, 95, 0.9) 0%,
    rgba(30, 58, 95, 0.7) 100%
  ); */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(15, 30, 45, 0.55) 20%,
    rgba(255, 255, 255, 0) 50%
  );
}

.service-page-img span {
  position: relative;
  z-index: 1;
}

.service-page-body {
  padding: 2rem;
}

.service-page-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-page-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.service-page-list {
  margin-bottom: 1.5rem;
}

.service-page-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.service-page-list li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
}

/* ===== ABOUT PAGE ===== */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-page-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--accent);
  transform: scale(1.1);
}

.value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.value-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-img {
  height: 280px;
  background: linear-gradient(135deg, var(--primary) 0%, #2a4a73 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===== PROJECTS PAGE ===== */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
}

.project-page-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: justify;

  /* transition:
    opacity 0.25s ease,
    transform 0.25s ease; */
}

.project-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-page-img {
  height: 260px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.project-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-page-card:hover .project-page-img img {
  transform: scale(1.1);
}

.project-page-body {
  padding: 1rem;
}

.project-page-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.project-page-meta span {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.project-page-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.project-page-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =========================================
   OUR CLIENTS SECTION
========================================= */

.clients-section {
  /* background: #ffffff; */
  background: #f7f9fb;
  overflow: hidden;
}

/* ==================================================
   CLIENT SLIDER
================================================== */
.clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 35px;
  /*
       Fade effect on both sides
    */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 7%,
    black 93%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 7%,
    black 93%,
    transparent 100%
  );
}

/* ==================================================
   TRACK
================================================== */
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 25px;
  animation: clientLogoScroll 28s linear infinite;
}

/* CLIENT GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 45px;
}

/* ==================================================
   CLIENT LOGO BOX
================================================== */
.client-logo {
  width: 155px;
  height: 90px;
  flex: 0 0 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  overflow: hidden;
  /* NO MOVEMENT */
  transform: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
/* ==================================================
   CLIENT LOGO
================================================== */
.client-logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 105px;
  max-height: 45px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
/* ==================================================
   HOVER - BORDER STAYS FIXED
================================================== */
.client-logo:hover {
  /* NO translateY */
  transform: none;
  border-color: #d8dee6;
  box-shadow: 0 6px 18px rgba(15, 35, 55, 0.08);
}
/* ==================================================
   LOGO HOVER
================================================= */
.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.03);
}

/* ==================================================
   CLIENT LOGO BOX
================================================== */
/* .client-logo {
    width: 155px;
    height: 90px;
    flex: 0 0 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;

} */

/* ==================================================
   LOGO IMAGE
================================================== */

/* .client-logo img {
    width: auto;
    height: 48px;
    max-width: 115px;
    object-fit: contain;
    filter:
        grayscale(100%)
        opacity(0.55);
    transition:
        filter 0.35s ease,
        transform 0.35s ease;

} */

/* ==================================================
   HOVER
================================================== */
/* .client-logo:hover {
    transform:
       translateY(-5px);
    border-color:
        rgba(30, 58, 95, 0.18);
    box-shadow:
        0 12px 30px
        rgba(15, 35, 55, 0.10);
    background:
        #ffffff;

} */

/* ==================================================
   PAUSE ON HOVER
================================================== */
.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

/* ==================================================
   INFINITE ANIMATION
================================================== */
@keyframes clientLogoScroll {
  from {
    transform: translateX(0);
  }
  to {
    /*
           Move exactly one complete
           logo group
        */
    transform: translateX(-50%);
  }
}

/* ==================================================
   TABLET
================================================== */
@media (max-width: 900px) {
  .clients-track {
    gap: 20px;
    animation-duration: 25s;
  }
  .client-logo {
    width: 140px;
    height: 82px;
    flex-basis: 140px;
    padding: 12px 16px;
  }
  .client-logo img {
    height: 43px;
    max-width: 105px;
  }
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 600px) {
  .clients-slider {
    margin-top: 25px;
  }
  .clients-track {
    gap: 15px;
    animation-duration: 22s;
  }
  .client-logo {
    width: 125px;
    height: 75px;
    flex-basis: 125px;
    padding: 10px 14px;
    border-radius: 6px;
  }
  .client-logo img {
    height: 38px;
    max-width: 95px;
  }
}

/* ==================================================
   REDUCE MOTION
================================================== */
@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
    transform: translateX(0);
  }
}

/* ==================================================
   MULTI IMAGE PROJECT GALLERY
================================================== */

.project-modal-box {
  position: relative;

  width: min(1100px, 95%);

  max-height: 92vh;

  background: #ffffff;

  border-radius: 10px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 1.4fr 0.6fr;

  grid-template-rows: auto auto;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* Main Gallery */

.project-gallery {
  position: relative;

  height: 570px;

  background: #111820;

  overflow: hidden;

  grid-row: 1;
}

.project-gallery img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: opacity 0.25s ease;
}

/* Modal Information */

.project-modal-info {
  padding: 45px 35px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

/* Counter */

.project-image-counter {
  position: absolute;

  left: 20px;

  top: 20px;

  z-index: 10;

  background: rgba(0, 0, 0, 0.7);

  color: #ffffff;

  padding: 8px 13px;

  border-radius: 4px;

  font-size: 12px;

  font-weight: 600;
}

/* Navigation */

.project-modal-nav {
  position: absolute;

  top: 285px;

  z-index: 20;

  width: 48px;

  height: 48px;

  border: none;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.65);

  color: #ffffff;

  font-size: 22px;

  cursor: pointer;

  transition: 0.3s;
}

.project-modal-nav:hover {
  background: #e67e22;
}

.project-modal-prev {
  left: 18px;
}

.project-modal-next {
  left: calc(70% - 55px);
}

/* Close */

.project-modal-close {
  position: absolute;

  right: 15px;

  top: 15px;

  z-index: 50;

  width: 42px;

  height: 42px;

  border: none;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.75);

  color: #ffffff;

  font-size: 26px;

  cursor: pointer;

  transition: 0.3s;
}

.project-modal-close:hover {
  background: #e67e22;

  transform: rotate(90deg);
}

/* ==================================================
   THUMBNAILS
================================================== */

.project-thumbnails {
  grid-column: 1 / -1;

  display: flex;

  gap: 10px;

  padding: 15px 20px;

  overflow-x: auto;

  background: #f5f7f8;

  border-top: 1px solid #e5e9ec;
}

.project-thumbnail {
  width: 85px;

  height: 60px;

  flex-shrink: 0;

  object-fit: cover;

  border-radius: 4px;

  cursor: pointer;

  opacity: 0.55;

  border: 2px solid transparent;

  transition:
    opacity 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.project-thumbnail:hover {
  opacity: 1;

  transform: translateY(-2px);
}

.project-thumbnail.active {
  opacity: 1;

  border-color: #e67e22;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 800px) {
  .project-modal-box {
    display: block;

    width: 96%;

    max-height: 94vh;

    overflow-y: auto;
  }

  .project-gallery {
    height: 330px;
  }

  .project-modal-info {
    padding: 25px 20px;
  }

  .project-modal-nav {
    top: 145px;

    width: 42px;

    height: 42px;
  }

  .project-modal-prev {
    left: 12px;
  }

  .project-modal-next {
    right: 12px;

    left: auto;
  }

  .project-thumbnail {
    width: 75px;

    height: 55px;
  }
}

/* ==================================================
   MOBILE CLIENT IMAGE ROLLING CODE NEW 12 Aug 2026
================================================== */
/* ==================================================
   FLOATING SOCIAL MEDIA
================================================== */

.floating-social {
  /* position: fixed;
  left: 0;
  top: 50%; */

  /* position: fixed;
  right: 24px;
  bottom: 25px;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column; */
  position: fixed;
  left: 24px;
  bottom: 25px;
  display: flex;
  gap: 7px;
  z-index: 9998;
}

/* SOCIAL BUTTON */

/* .floating-social {
  position: fixed;
  left: 24px;
  bottom: 25px;

  display: flex;
  gap: 7px;

  z-index: 9998;
} */

/* .floating-social a {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #fff;
  text-decoration: none;

  font-size: 12px;
  font-weight: 600;

  opacity: 0.9;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
} */

/* Normal state */

.floating-social a {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  /* Transparent background */
  /* background: rgba(255, 255, 255, 0.08); */
  /* Brighter normal icon */
  /* color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2); */

  /* Light transparent background */
  background: rgba(30, 58, 95, 0.06);

  /* Dark icon */
  color: rgba(118, 126, 139, 0.75);

  /* Subtle dark border */
  border: 1px solid rgba(79, 87, 99, 0.15);

  /*
  background: rgba(30, 58, 95, 0.08);
  color: rgba(30, 58, 95, 0.55);
  border: 1px solid rgba(30, 58, 95, 0.15); */

  text-decoration: none;

  font-size: 12px;
  font-weight: 600;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

/* Facebook */

.social-facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

/* LinkedIn */

.social-linkedin:hover {
  background: #0a66c2;
  color: #ffffff;
  border-color: #0a66c2;
}

/* Instagram */

.social-instagram:hover {
  background: #e4405f;
  color: #ffffff;
  border-color: #e4405f;
}

/* X */

.social-x:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

#floating-social-container {
  /* position: fixed; */
  width: 0;
  height: 0;
}

#footer-container {
  width: 100%;
  max-width: 100%;
}

/* Hover movement */

/* .floating-social a:hover {
  transform: translateY(-3px);

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
} */

/* .floating-social a:hover {
  transform: translateY(-3px);
  opacity: 1;
} */

/* .floating-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    width 0.25s ease,
    padding 0.25s ease,
    background 0.25s ease;
} */

/* INDIVIDUAL SOCIAL COLORS */

.social-facebook {
  background: #1877f2;
}

.social-linkedin {
  background: #0a66c2;
}

.social-instagram {
  background: #d62976;
}

.social-x {
  background: #111111;
}

/* HOVER */
/*
.floating-social a:hover {
  width: 48px;
} */

/* ==================================================
   WHATSAPP
================================================== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  /* border-radius: 30px; */
  border-radius: 60%;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  font-size: 15px;
  /* font-weight: 600; */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* WHATSAPP ICON */

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* WHATSAPP TEXT */

.whatsapp-text {
  white-space: nowrap;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {
  /* Social bar */

  .floating-social {
    /* left: 0; */
    display: none;
  }

  .floating-social a {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .floating-social a:hover {
    width: 38px;
  }

  /* WhatsApp */

  .whatsapp-float {
    right: 15px;
    bottom: 70px;
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    font-size: 23px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon {
    font-size: 19px;
  }
}

/* ==================================================
   CLIENT SLIDE LOG  - 17 Aug 2026
================================================== */
.form-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-help {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #777;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-message {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 8px;
  display: none;
}
.form-message.success {
  display: block;
  color: #166534;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}
.form-message.error {
  display: block;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

/* =========================================
   MOBILE HEADER LOGO
========================================= */

/* =========================================
   MOBILE NAVBAR LOGO - FORCE SIZE
========================================= */

@media screen and (max-width: 768px) {
  .navbar .nav-container .logo {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .navbar .nav-container .logo-icon {
    width: 260px !important;
    min-width: 260px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
  }

  .navbar .nav-container .logo-icon img {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
  }
}
@media screen and (max-width: 480px) {
  .navbar .nav-container .logo {
    width: 195px !important;
    min-width: 195px !important;
  }

  .navbar .nav-container .logo-icon {
    width: 195px !important;
    min-width: 195px !important;
  }

  .navbar .nav-container .logo-icon img {
    width: 195px !important;
    min-width: 195px !important;
    max-width: 195px !important;
  }
}

/* =========================================
   CONTACT US  19 Aug 2026
========================================= */

/* =========================================
   GOOGLE MAP
========================================= */

.map-container {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  background: #f5f5f5;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .map-container {
    border-radius: 18px;
  }

  .map-container iframe {
    height: 350px;
  }
}
