:root {
  --primary: #0052cc;
  --primary-dark: #003d99;
  --accent: #00c48c;
  --accent-dark: #00a87a;
  --dark: #0b1220;
  --muted: #6b7280;
  --light: #f8fafc;
  --bg: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0052cc 0%, #00c48c 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;

  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
       HEADER / NAVIGATION
       ===================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* =====================================================
       HERO SECTION
       ===================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(0, 82, 204, 0.9) 0%,
      rgba(0, 196, 140, 0.8) 100%
    ),
    url("https://images.unsplash.com/photo-1504307651254-35680f0b8736?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeDown 0.8s forwards;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s forwards;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  animation: fadeUp 1.2s forwards;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.4s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll i {
  font-size: 1.5rem;
  opacity: 0.7;
}

/* =====================================================
       TRUST BAR
       ===================================================== */
.trust-bar {
  background: white;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* =====================================================
       SECTION STYLES
       ===================================================== */
.section {
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-alt {
  background: var(--light);
}

.section-dark {
  background: var(--gradient-dark);
  color: white;
}

/* =====================================================
       GRID LAYOUTS
       ===================================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* =====================================================
       STATISTICS
       ===================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* =====================================================
       SERVICE CARDS
       ===================================================== */
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
  transform: translateY(30px);
  opacity: 0;
}

.service-card.show {
  transform: translateY(0);
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-body {
  padding: 2rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: var(--dark);
  font-size: 0.95rem;
}

.service-list li i {
  color: var(--accent);
  font-size: 0.8rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 0.8rem;
}

/* =====================================================
       PROJECT CARDS
       ===================================================== */
.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  transform: translateY(30px);
  opacity: 0;
}

.project-card.show {
  transform: translateY(0);
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-tag {
  background: var(--accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.project-body {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.project-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* =====================================================
       ABOUT SECTION
       ===================================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-image-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: var(--accent);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature i {
  color: var(--accent);
  font-size: 1.2rem;
}

.about-feature span {
  font-weight: 500;
}

/* =====================================================
       TESTIMONIALS
       ===================================================== */
.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: serif;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  color: var(--muted);
  font-size: 0.9rem;
}

/* =====================================================
       INDUSTRIES
       ===================================================== */
.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--primary);
}

.industry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.industry-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* =====================================================
       CONTACT SECTION
       ===================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 600;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* =====================================================
       FOOTER
       ===================================================== */
footer {
  background: #0a0e17;
  color: #a0aec0;
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-desc {
  color: #718096;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  padding: 0.4rem 0;
  color: #a0aec0;
  transition:
    color 0.3s,
    padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
}

.footer-certifications {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-cert {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

/* =====================================================
       FLOATING ELEMENTS
       ===================================================== */
.float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--accent);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.float:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

.top-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  z-index: 900;
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
}

.top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* =====================================================
       ANIMATIONS
       ===================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* =====================================================
       RESPONSIVE
       ===================================================== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
  }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    margin: 0;
  }

  .timeline-dot {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

#about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  background-attachment: fixed;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.08;
  animation: moveBg 20s linear infinite;
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 2;
}

@keyframes moveBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 400px;
  }
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.mvv-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  text-align: left;
  border-top: 4px solid var(--accent);
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.mvv-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.mvv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.mvv-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.trust-bar {
  background: white;
  padding: 1.8rem 0;
  border-bottom: 1px solid #eee;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: all 0.3s;
}

.trust-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.trust-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.service-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-box {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-box h3 i {
  color: var(--accent);
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-box ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-box ul li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
}

.service-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-category-box {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: 0.3s;
}

.service-category-box:hover {
  transform: translateY(-6px);
}

.service-category-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-category-header h3 {
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  color: var(--primary);
  border-bottom: 1px solid #eee;
}

.service-category-box ul {
  padding: 1rem 1.5rem;
  list-style: none;
}

.service-category-box ul li {
  padding: 0.4rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.service-category-box ul li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.service-sub {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #eee;
}

.service-sub h4 {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  font-size: 0.75rem;
  background: rgba(0, 82, 204, 0.08);
  color: var(--primary);
  padding: 0.4rem 0.7rem;
  border-radius: 50px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: white;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-header i {
  transition: 0.3s;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
  padding-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}

.service-list img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
}

.tag-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-box span {
  font-size: 0.75rem;
  background: rgba(0, 82, 204, 0.08);
  color: var(--primary);
  padding: 0.4rem 0.7rem;
  border-radius: 50px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.img-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: 0.3s;
}

.img-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.img-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.img-card span {
  display: block;
  padding: 0.6rem;
  font-size: 0.8rem;
  color: var(--dark);
}

.project-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  color: var(--dark);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.project-card.hide {
  display: none;
}

/* ===== ACCORDION BASE ===== */
.accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
}

/* featured highlight */
.accordion-item.featured {
  border: 2px solid #1e5eff;
  box-shadow: 0 10px 30px rgba(30, 94, 255, 0.1);
}

/* header */
.accordion-header {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.acc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.acc-title i {
  color: #1e5eff;
}

/* badge */
.badge {
  background: #1e5eff;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: 10px;
}

/* arrow animation */
.arrow {
  transition: transform 0.3s ease;
}

/* content animation (smooth slide + fade) */
.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  padding: 0 20px;
}

/* active state */
.accordion-item.active .accordion-content {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  padding: 20px;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

/* image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.img-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.img-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.img-card:hover img {
  transform: scale(1.05);
}

.img-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  padding: 6px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .accordion-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .img-card img {
    height: 140px;
  }
}

/* ===== PRINT READY BROCHURE ===== */
@media print {
  .accordion-content {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
  }

  .accordion-header .arrow {
    display: none;
  }

  .badge {
    display: none;
  }

  .accordion-item {
    page-break-inside: avoid;
  }
}

/* Layout */
.service-list-clean {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Row */
.service-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* Alternate layout */
.service-item.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-item.reverse .service-img {
  order: 2;
}

/* Image */
.service-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

/* Content */
.service-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #111827;
}

.service-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

.service-content p {
  color: #4b5563;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Bullets */
.service-content ul {
  padding-left: 18px;
}

.service-content ul li {
  margin-bottom: 6px;
  color: #374151;
  font-size: 14px;
}

/* Section */
.section-alt {
  background: #f9fafb;
}

/* Responsive */
@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
  }

  .service-img img {
    height: 200px;
  }
}

.contact-map iframe {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.timeline-section {
  padding: 80px 0;
  position: relative;
}

.section-header.center {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 14px;
  font-size: 30px;
  letter-spacing: 1px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  color: #0052cc;
  font-size: 32px;
  font-weight: 600;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.timeline-card {
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
}

.timeline-year {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.timeline-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.timeline-card p {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

/* SERVICES SECTION BACKGROUND */
#services {
  position: relative;
  background: url("services.png") center/cover no-repeat;
}

/* Soft overlay for readability (NOT glass) */
#services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92); /* light clean overlay */
}

/* Keep content above overlay */
#services .container {
  position: relative;
  z-index: 1;
}

/* Section background */
.industries-section {
  position: relative;
  background: #f9fafb;
}

/* subtle grid pattern */
.industries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#e5e7eb 1px, transparent 1px),
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.industries-section .container {
  position: relative;
  z-index: 1;
}

/* Grid */
/* Desktop: 4 per row */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.industry-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  transition: 0.2s ease;
}

/* Hover */
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Icon */
.industry-card i {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Title */
.industry-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #111827;
}

/* Text */
.industry-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 400;
  color: #0052cc;
  letter-spacing: 0.5px;
}
