/* Divine Tech Equipment - Premium Modern Design System */

:root {
  --primary: #0a4b7c;
  --primary-dark: #062b49;
  --primary-light: #1e70b3;
  --accent: #00d2ff;
  --accent-secondary: #3a7bd5;
  --accent-glow: rgba(0, 210, 255, 0.3);
  --secondary: #0f172a;
  --gold: #fbbf24;
  --gold-glow: rgba(251, 191, 36, 0.2);
  --success: #10b981;

  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0b1329;
  --bg-glass: rgba(255, 255, 255, 0.85);

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --border-color: #e2e8f0;
  --border-radius-sm: 10px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;

  --shadow-sm: 0 4px 12px rgba(10, 75, 124, 0.04);
  --shadow-md: 0 10px 30px rgba(10, 75, 124, 0.08);
  --shadow-lg: 0 22px 50px rgba(6, 43, 73, 0.14);
  --shadow-glow: 0 0 30px rgba(0, 210, 255, 0.35);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
  letter-spacing: 0;
}

p {
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section-title {
  font-size: 2.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: rgba(30, 112, 179, 0.06);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(30, 112, 179, 0.12);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.text-center {
  text-align: center;
}

/* Button Base & Variant Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(10, 75, 124, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(10, 75, 124, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-secondary), var(--primary));
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.2);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 75, 124, 0.35);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.page-banner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.page-banner .container {
  z-index: 1;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 41, 0.35);
  z-index: 0;
}

.page-banner>.container {
  position: relative;
  z-index: 1;
}

.page-banner span {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 0.9rem;
}

.page-banner h1 {
  font-size: clamp(2.75rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.page-banner p {
  color: #d8e2f3;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 760px;
  margin-top: 0.5rem;
}

.page-banner .btn {
  margin-top: 1.75rem;
}

/* Sticky Header Wrapper */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top Bar (Clean Blue Theme) */
.top-bar {
  background: #091a2b;
  color: #ffffff;
  font-size: 0.88rem;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.top-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 0;
  transition: color 0.2s ease;
}

.top-phone:hover {
  color: var(--accent);
}

.top-phone i {
  font-size: 1.1rem;
  color: var(--accent);
}

.top-socials {
  display: flex;
  align-items: center;
  height: 100%;
}

.social-icon {
  width: 42px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 0.85;
}

.social-icon.fb {
  background: #3b5998;
}

.social-icon.in {
  background: #0077b5;
}

.social-icon.ig {
  background: #e1306c;
}

.social-icon.wa {
  background: #25d366;
}

/* Main Navigation Header (Blue Theme) */
.header-main {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(10, 75, 124, 0.08);
  border-bottom: 1px solid #e2e8f0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--accent-secondary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

/* Navbar Links & Dropdown (Blue Theme) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1.25rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  display: none;
}

/* Catalogue Blue Button */
.btn-catalogue {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  border: none;
  box-shadow: 0 4px 15px rgba(10, 75, 124, 0.25);
  transition: var(--transition);
}

.btn-catalogue:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 75, 124, 0.4);
}

/* Mega Dropdown & Submenu Flyout (Blue Theme) */
.nav-item.dropdown:hover .mega-dropdown-wrapper {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(10, 75, 124, 0.15);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1100;
}

.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.dropdown-submenu:hover>a {
  background: var(--primary);
  color: #ffffff;
}

.dropdown-submenu>a i {
  font-size: 0.75rem;
}

/* Submenu Flyout to the Right */
.submenu-list {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(10, 75, 124, 0.15);
  border: 1px solid #e2e8f0;
  border-radius: 0 8px 8px 0;
  min-width: 270px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  max-height: 480px;
  overflow-y: auto;
}

.dropdown-submenu:hover .submenu-list {
  display: block;
}

.submenu-list li a {
  display: block;
  padding: 0.7rem 1.25rem;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.2s ease;
}

.submenu-list li a:hover {
  background: #f1f5f9;
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Hero Carousel Slider (Blue Theme) */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0b1329;
}

.carousel-container {
  position: relative;
  width: 100%;
  min-height: 540px;
  aspect-ratio: 16 / 7;
  max-height: 720px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-content {
  max-width: 650px;
  color: #ffffff;
}

.slide-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.btn-slider-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  border: none;
  box-shadow: 0 6px 20px rgba(10, 75, 124, 0.4);
  transition: var(--transition);
}

.btn-slider-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 75, 124, 0.55);
}

/* Carousel Controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.carousel-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active,
.carousel-dots .dot:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #0c365a 0%, #061a2d 60%, #070e1b 100%);
  color: #ffffff;
  padding: 6rem 0 7rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #38bdf8, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.45rem 1.15rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge i {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media:hover img {
  transform: scale(1.04);
}

/* Feature Grid Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 112, 179, 0.4);
}

.product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.product-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--secondary);
}

.product-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-color);
}

.product-count {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

/* Stats Counter Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), #091a2b);
  color: #ffffff;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.25rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.stat-item p {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
}

/* Filter Bar for Products Page */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  background: #f1f5f9;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 75, 124, 0.25);
}

.search-box {
  position: relative;
  min-width: 280px;
}

.search-box input {
  width: 100%;
  padding: 0.7rem 1.25rem 0.7rem 2.75rem;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 75, 124, 0.12);
}

.search-box i {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Lightbox & Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 270px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 41, 0.9), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: #ffffff;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Contact & Quote Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
}

.contact-info-box {
  background: linear-gradient(135deg, var(--primary-dark), #091a2b);
  color: #ffffff;
  padding: 2.75rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-item i {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  background: #ffffff;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 75, 124, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Footer - Clean, Simple & Attractive */
footer {
  background: #080f1e;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  position: relative;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary)) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin: 1.2rem 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--accent);
  color: #080f1e;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 210, 255, 0.3);
  border-color: var(--accent);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Comprehensive Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-links {
    gap: 1.35rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .hero {
    padding: 4rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badges,
  .hero-actions {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  /* Top Bar Mobile Optimization */
  .top-bar {
    padding: 0.4rem 0;
    font-size: 0.78rem;
  }

  .top-bar-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
  }

  .top-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .top-info-item span,
  .badge-trust {
    font-size: 0.75rem;
  }

  /* Sticky Navbar Mobile */
  .navbar {
    padding: 0.65rem 0;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-main);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--primary-dark);
    font-size: 1.25rem;
  }

  .nav-links {
    position: fixed;
    top: 62px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 62px);
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
  }

  .nav-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Hero Carousel Mobile */
  .carousel-container {
    height: 420px;
  }

  .slide-content h1 {
    font-size: 2.1rem;
    margin-bottom: 0.85rem;
  }

  .slide-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .mega-dropdown-wrapper {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
  }

  .nav-item.dropdown:hover .mega-dropdown-wrapper {
    display: block;
  }

  .submenu-list {
    position: static;
    box-shadow: none;
    border: none;
    width: 100%;
  }

  /* Grids & Cards Phone */
  .category-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    width: 100%;
    min-width: unset;
  }

  /* Footer Phone */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand,
  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Floating WhatsApp Phone */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.65rem;
  }
}

@media (max-width: 480px) {
  .top-info {
    flex-direction: column;
    gap: 0.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stat-item h3 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* ========================
   WHY CHOOSE US SECTION 
   ======================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 75, 124, 0.15);
}

.why-card .why-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========================
   INDUSTRIES SECTION
   ======================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(10, 75, 124, 0.12);
  border-color: var(--primary);
}

.industry-card .ind-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.industry-card:hover .ind-icon {
  transform: scale(1.15);
}

.industry-card h4 {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ========================
   CTA BANNER SECTION
   ======================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1565a8 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e2e8f0;
  font-size: 1rem;
}

.cta-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ========================
   OWNER / PROPRIETOR SECTION
   ======================== */
.owner-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
}

.owner-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.owner-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #fff;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 75, 124, 0.25);
}

.owner-avatar::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  border: 2px solid rgba(0, 210, 255, 0.3);
}

.owner-info h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.owner-info .owner-title {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(10, 75, 124, 0.08);
  border-radius: 20px;
}

.owner-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.owner-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.owner-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 500;
}

.owner-highlight-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ========================
   CORE VALUES SECTION
   ======================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 75, 124, 0.12);
}

.value-card .value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ========================
   PROCESS TIMELINE SECTION
   ======================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.process-step .step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(10, 75, 124, 0.3);
  transition: var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(10, 75, 124, 0.4);
}

.process-step h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ========================
   SERVICE PROCESS SECTION
   ======================== */
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.service-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  z-index: 0;
}

.service-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}

.service-step .s-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(10, 75, 124, 0.25);
}

.service-step h4 {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.service-step p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ========================
   RESPONSIVE FOR NEW SECTIONS
   ======================== */
@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .owner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .owner-avatar {
    width: 200px;
    margin: 0 auto;
    font-size: 4rem;
  }

  .owner-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-grid::before {
    display: none;
  }

  .service-process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-card {
    padding: 2rem 1.5rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  .cta-contact-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .owner-grid {
    gap: 2rem;
  }

  .owner-avatar {
    width: 160px;
    font-size: 3.5rem;
  }

  .owner-info h3 {
    font-size: 1.6rem;
  }

  .owner-highlights {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .industry-card {
    padding: 1.25rem 0.75rem;
  }

  .cta-banner {
    padding: 3rem 0;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    padding: 0 1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .owner-avatar {
    width: 140px;
    font-size: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== Gallery Styles ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(11, 19, 41, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== Our Trusted Clients Section ==================== */
.clients-section {
  background: #f8fafc;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.client-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 1.5rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 135px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(10, 75, 124, 0.12);
  border-color: rgba(10, 75, 124, 0.3);
}

.client-logo-wrapper {
  height: 55px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.client-logo-wrapper img {
  max-height: 100%;
  max-width: 85%;
  object-fit: contain;
  filter: contrast(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-card:hover .client-logo-wrapper img {
  transform: scale(1.05);
}

.client-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: auto;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .client-card {
    padding: 1.25rem 0.75rem 1rem;
    min-height: 120px;
  }
  .client-logo-wrapper {
    height: 48px;
  }
}

@media (max-width: 520px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

/* ==================== Vision Section ==================== */
.vision-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf3f8 100%);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(10, 75, 124, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision-highlight-card {
  background: linear-gradient(135deg, #062b49 0%, #0a4b7c 100%);
  border-radius: var(--border-radius-lg);
  padding: 3.25rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(6, 43, 73, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2.5rem;
}

.vision-highlight-card::after {
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 2.5rem;
  bottom: 0.75rem;
  font-size: 7.5rem;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  line-height: 1;
}

.vision-quote-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.vision-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.85rem;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.25);
}

.vision-quote-text {
  font-size: 1.35rem;
  line-height: 1.75;
  color: #f1f5f9;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
}

.vision-quote-text strong {
  color: #ffffff;
  font-weight: 700;
}

.vision-quote-text span.highlight {
  color: var(--accent);
  font-weight: 700;
}

.vision-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.vision-pillar-card {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(10, 75, 124, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.vision-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(10, 75, 124, 0.12);
  border-color: rgba(10, 75, 124, 0.25);
}

.vision-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.vision-pillar-card:hover .vision-pillar-icon {
  transform: scale(1.1);
}

.vision-pillar-card h4 {
  font-size: 1.12rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.vision-pillar-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .vision-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .vision-highlight-card {
    padding: 2.25rem 1.5rem;
  }

  .vision-quote-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .vision-quote-text {
    font-size: 1.15rem;
    line-height: 1.65;
  }
}

@media (max-width: 540px) {
  .vision-pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== Mission Section ==================== */
.mission-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eef2f6;
}

.mission-highlight-card {
  background: linear-gradient(135deg, #0b1e33 0%, #103b63 100%);
  border-radius: var(--border-radius-lg);
  padding: 3.25rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(11, 30, 51, 0.16);
  border: 1px solid rgba(0, 210, 255, 0.2);
  margin-bottom: 2.5rem;
}

.mission-highlight-card::after {
  content: '\f05b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 2.5rem;
  bottom: 0.5rem;
  font-size: 7.5rem;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  line-height: 1;
}

.mission-quote-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.mission-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.85rem;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.mission-quote-text {
  font-size: 1.35rem;
  line-height: 1.75;
  color: #f1f5f9;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
}

.mission-quote-text strong {
  color: #ffffff;
  font-weight: 700;
}

.mission-quote-text span.highlight {
  color: #38bdf8;
  font-weight: 700;
}

.mission-quote-text span.highlight-green {
  color: #34d399;
  font-weight: 700;
}

.mission-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.mission-pillar-card {
  background: #f8fafc;
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(10, 75, 124, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mission-pillar-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(10, 75, 124, 0.12);
  border-color: rgba(10, 75, 124, 0.25);
}

.mission-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.mission-pillar-card:hover .mission-pillar-icon {
  transform: scale(1.1);
}

.mission-pillar-card h4 {
  font-size: 1.12rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.mission-pillar-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .mission-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .mission-highlight-card {
    padding: 2.25rem 1.5rem;
  }

  .mission-quote-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .mission-quote-text {
    font-size: 1.15rem;
    line-height: 1.65;
  }
}

@media (max-width: 540px) {
  .mission-pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== Industries We Serve Section ==================== */
.industries-section {
  background: #ffffff;
  position: relative;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.industry-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(10, 75, 124, 0.06);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.75rem;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 75, 124, 0.14);
  border-color: rgba(0, 210, 255, 0.4);
}

.industry-img-box {
  width: 100%;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.industry-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .industry-img-box img {
  transform: scale(1.06);
}

.industry-content {
  text-align: center;
  padding: 1.25rem 0.5rem 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.industry-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.2px;
}

.industry-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .industry-img-box {
    height: 190px;
  }
}