/* =====================
   EVERGROUP - STYLE.CSS (ACI Inspired)
   ===================== */

:root {
  --primary: #0077B6;        /* ACI Blue */
  --primary-dark: #005A8C;   /* Darker Blue */
  --primary-light: #00B4D8;  /* Light Cyan Blue */
  --accent: #F4A261;         /* Warm accent (optional, ACI uses gold/amber) */
  --white: #ffffff;
  --text: #1a1a1a;           /* Dark text */
  --gray: #6b7280;
  --light-gray: #f0f4f8;     /* Very light blue-gray */
  --border: #d1d5db;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); overflow-x: hidden; background: #f8fafc; }
h1,h2,h3,h4,h5 { font-family: 'Nunito', sans-serif; }

/* ===== NAVBAR ===== */
nav {
  background: var(--primary);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,119,182,0.25);
}
.logo {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-phone {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone i { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 5% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border: 65px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  bottom: -120px; left: -90px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border: 50px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -60px; left: 40%;
}
.hero-left { max-width: 500px; z-index: 1; }
.hero-badge {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  color: white;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-rating {
  margin-top: 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-rating .stars { color: var(--accent); font-size: 0.95rem; }

.hero-right { display: flex; gap: 18px; z-index: 1; padding-bottom: 0; }
.hex-img {
  width: 220px; height: 290px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
  border-radius: 14px 14px 0 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 3.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hex-img p { font-size: 0.78rem; margin-top: 8px; color: rgba(255,255,255,0.7); font-weight: 600; }
.hex-img2 {
  width: 165px; height: 210px;
  margin-top: 65px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border-radius: 14px 14px 0 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.hex-img2 p { font-size: 0.72rem; margin-top: 6px; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ===== FEATURED ===== */
.featured {
  background: white;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.featured-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.featured-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.featured-logos span {
  font-weight: 800;
  font-size: 1rem;
  color: #9ca3af;
  letter-spacing: -0.5px;
  font-family: 'Nunito', sans-serif;
}

/* ===== SECTION COMMON ===== */
.section { padding: 80px 5%; }
.section-label {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.section-title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-subtitle {
  color: var(--gray);
  text-align: center;
  font-size: 0.9rem;
  max-width: 520px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,182,0.35); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 11px 24px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.15); }

.btn-purple {
  background: var(--primary);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
}
.btn-purple:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,182,0.35); }

/* ===== SERVICES ===== */
.services { background: white; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}
.service-card.active, .service-card:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,119,182,0.3);
}
.service-card .icon {
  width: 48px; height: 48px;
  background: var(--light-gray);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.service-card.active .icon, .service-card:hover .icon { background: rgba(255,255,255,0.25); }
.service-card h4 { font-size: 0.97rem; font-weight: 800; margin-bottom: 10px; line-height: 1.4; }
.service-card p { font-size: 0.8rem; line-height: 1.7; color: var(--gray); margin-bottom: 14px; }
.service-card.active p, .service-card:hover p { color: rgba(255,255,255,0.9); }
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}
.learn-more:hover { gap: 8px; }
.service-card.active .learn-more, .service-card:hover .learn-more { color: rgba(255,255,255,0.95); }

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}
.stat {
  text-align: center;
  padding: 50px 20px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat h3 { font-size: 2.4rem; font-weight: 900; color: var(--primary); }
.stat p { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 6px; }

/* ===== ABOUT ===== */
.about {
  background: white;
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 80px 5%;
}
.about-left { flex: 1; }
.about-left .section-label { text-align: left; }
.about-left .section-title { text-align: left; font-size: 1.85rem; }
.about-left > p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 28px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; }
.check-list li i { color: var(--primary); margin-top: 4px; font-size: 1rem; }
.check-list li strong { font-weight: 800; color: var(--text); display: block; margin-bottom: 2px; }
.check-list li span { color: var(--gray); font-size: 0.82rem; line-height: 1.5; }
.about-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-img {
  border-radius: 12px;
  height: 185px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--primary);
}
.about-img.tall { grid-row: span 2; height: 100%; }
.about-img span { font-size: 0.78rem; color: var(--primary-dark); font-weight: 700; margin-top: 8px; font-family: 'Nunito',sans-serif; }

/* ===== SUCCESS / CONSULTATION ===== */
.success-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 5%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.success-section::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border: 85px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -120px; right: -100px;
}
.success-section::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border: 40px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -60px; left: 40%;
}
.consult-form {
  background: white;
  border-radius: 14px;
  padding: 32px 28px;
  min-width: 300px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.consult-form h4 { font-size: 1.15rem; font-weight: 900; margin-bottom: 6px; color: var(--primary-dark); }
.consult-form > p { color: var(--gray); font-size: 0.82rem; margin-bottom: 22px; line-height: 1.5; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fafafa;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  background: white;
}
.btn-send {
  background: var(--primary);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.5px;
}
.btn-send:hover { background: var(--primary-dark); }

.success-right { flex: 1; z-index: 1; }
.success-right .section-label { color: rgba(255,255,255,0.8); text-align: left; }
.success-right .section-title { color: white; text-align: left; font-size: 1.85rem; }
.success-right > p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 10px 0 32px; line-height: 1.7; }
.progress-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.progress-item { display: flex; align-items: center; gap: 16px; }
.circle-progress {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) var(--p), rgba(255,255,255,0.2) 0);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  position: relative;
}
.circle-progress::before {
  content: '';
  position: absolute;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
}
.circle-progress span { position: relative; z-index: 1; }
.progress-info p { color: rgba(255,255,255,0.8); font-size: 0.8rem; line-height: 1.5; margin-top: 3px; }
.progress-info strong { color: white; font-size: 0.9rem; font-family: 'Nunito', sans-serif; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light-gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 30px 26px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.quote-icon { color: var(--primary); font-size: 2rem; margin-bottom: 14px; line-height: 1; }
.testimonial-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.75; margin-bottom: 20px; }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.88rem;
  font-family: 'Nunito', sans-serif;
  flex-shrink: 0;
}
.reviewer-info strong { font-size: 0.9rem; display: block; font-family: 'Nunito', sans-serif; }
.reviewer-info span { color: var(--gray); font-size: 0.78rem; }

/* ===== PROJECTS ===== */
.projects-section {
  background: white;
  padding: 80px 5%;
  display: flex;
  gap: 70px;
  align-items: center;
}
.project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex: 1;
}
.proj-img {
  border-radius: 12px;
  height: 165px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
}
.proj-img span { font-size: 0.75rem; color: var(--primary-dark); font-weight: 700; margin-top: 8px; font-family: 'Nunito',sans-serif; }
.proj-img.tall { grid-row: span 2; height: 100%; }
.projects-right { flex: 1; }
.projects-right .section-label { text-align: left; }
.projects-right .section-title { text-align: left; font-size: 1.85rem; }
.projects-right > p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 28px; }

/* ===== EXPERTISE ===== */
.expertise { background: var(--light-gray); padding: 80px 5%; display: flex; gap: 70px; }
.expertise-left { flex: 1; }
.expertise-left .section-label,
.expertise-left .section-title { text-align: left; }
.expertise-left > p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 30px; }
.skill-bar-wrap { margin-bottom: 20px; }
.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: 'Nunito', sans-serif;
}
.skill-bar-bg { height: 7px; background: var(--border); border-radius: 10px; overflow: hidden; }
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  width: 0;
  transition: width 1.2s ease;
}
.expertise-right { flex: 1; }
.expertise-right > p { font-size: 0.82rem; color: var(--gray); margin-bottom: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'Nunito', sans-serif;
}
.faq-a {
  color: var(--gray);
  font-size: 0.84rem;
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.3s; color: var(--primary); flex-shrink: 0; }

/* ===== TEAM ===== */
.team { background: white; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-img {
  width: 120px; height: 145px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe, #7dd3fc);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: var(--primary);
}
.team-card h4 { font-size: 1rem; font-weight: 800; }
.team-card span { color: var(--gray); font-size: 0.8rem; }
.social-links { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.social-links a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--primary); color: var(--primary); background: #e0f2fe; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 44px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border: 50px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  right: 300px; top: -80px;
}
.cta-banner h3 { color: white; font-size: 1.4rem; font-weight: 900; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 0.86rem; margin-top: 4px; }
.cta-banner .btn-primary { background: var(--accent); padding: 14px 30px; font-size: 0.9rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  padding: 60px 5% 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border: 65px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -90px; right: 8%;
}
footer::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border: 40px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -50px; left: 30%;
}
.footer-top {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 26px;
  margin-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-right: 28px;
}
.footer-contact i { color: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 50px;
}
.footer-col h5 {
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: 'Nunito', sans-serif;
}
.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.84rem; line-height: 1.8; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before { content: '›'; color: var(--accent); font-size: 1rem; }
.footer-col ul a:hover { color: white; }
.newsletter-wrap { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-wrap input {
  flex: 1;
  padding: 11px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  color: white;
  font-size: 0.83rem;
  outline: none;
  font-family: inherit;
}
.newsletter-wrap input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-wrap button {
  background: var(--accent);
  border: none;
  padding: 11px 16px;
  border-radius: 7px;
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.newsletter-wrap button:hover { background: #e08a3a; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .about { flex-direction: column; }
  .success-section { flex-direction: column; }
  .projects-section { flex-direction: column; }
  .expertise { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; padding-bottom: 40px; }
  .hero-right { margin-top: 20px; }
}
@media (max-width: 600px) {
  .services-grid,
  .stats-row,
  .testimonials-grid,
  .team-grid,
  .progress-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 1.85rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ===== ACI-STYLE CARDS ===== */
.card-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hex-img3 { width: 190px; height: 100px; position: relative; }
.hex-img  { width: 190px; height: 260px; position: relative; }
.hex-img4 { width: 165px; height: 140px; position: relative; }
.hex-img2 { width: 165px; height: 180px; position: relative; margin-top: 0 !important; }

.hex-img, .hex-img2, .hex-img3, .hex-img4 {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
}

.hex-img img, .hex-img2 img, .hex-img3 img, .hex-img4 img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}