/* =======================================================
   VARIABLES & THEMES
   ======================================================= */
:root {
  /* Primary Theme */
  --primary-bg: #231B3B;
  --primary-accent: #DEFF00;
  --primary-highlight: #C77939;

  /* Secondary Theme */
  --secondary-bg: #6F658C;
  --secondary-accent: #0A0219;
  --secondary-highlight: #69B623;

  /* Tertiary Theme */
  --tertiary-bg: #8B0000;
  --tertiary-accent: #1D67CD;
  --tertiary-highlight: #414141;

  /* Active Theme (default to primary) */
  --bg-color: var(--primary-bg);
  --accent-color: var(--primary-accent);
  --highlight-color: var(--primary-highlight);
  --text-color: #ffffff;

  /* Utility */
  --accent-rgb: 222, 255, 0; /* for rgba filters */
  --radius: 8px;
  --gap: 20px;
  --container-max: 1200px;
}

/* Theme helpers (apply to body) */
.theme-primary {
  --bg-color: var(--primary-bg);
  --accent-color: var(--primary-accent);
  --highlight-color: var(--primary-highlight);
}
.theme-secondary {
  --bg-color: var(--secondary-bg);
  --accent-color: var(--secondary-accent);
  --highlight-color: var(--secondary-highlight);
}
.theme-tertiary {
  --bg-color: var(--tertiary-bg);
  --accent-color: var(--tertiary-accent);
  --highlight-color: var(--tertiary-highlight);
}

/* =======================================================
   BASE
   ======================================================= */
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =======================================================
   UTILITIES
   ======================================================= */
.flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.hidden { display: none !important; }
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: 1fr 1fr; }

/* =======================================================
   HEADER & TOP BAR
   ======================================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.strip { width: 100%; padding: 10px 0; }

/* Top bar */
.top-bar {
  background-color: var(--bg-color);
  color: #ffffff;
  font-size: 0.7rem;
  height: auto;
  padding: 2px 0;
  line-height: 1.2;
  min-height: 20px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar .left, .top-bar .right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.top-bar .right { justify-content: flex-end; }
.top-bar .flag { width: 24px; }

/* Social icons (global) */
.social-icons { display: flex; justify-content: center; gap: 15px; }
.social-icons img { width: 20px; height: auto; margin-left: 10px; }
.social-icons a { color: var(--primary-bg); font-size: 24px; transition: color 0.3s ease; }
.social-icons a:hover { color: var(--accent-color); }

/* Branding bar */
.branding-bar {
  background-color: #ffffff;
  color: #000000;
  padding: 8px 0;
  line-height: 1rem;
}
.branding-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.branding { display: flex; align-items: center; gap: 15px; }
.logo { width: 60px; height: auto; }
.company-name {
  display: flex; flex-direction: column; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1.2;
}
.company-name .line1 { font-size: 18px; display: flex; gap: 5px; }
.company-name .line2 { font-size: 18px; color: var(--highlight-color); text-align: left; margin-top: -4px; }
.baulplex { color: var(--accent-color); }
.energy { color: var(--highlight-color); }

/* Contact info (branding bar right) */
.contact { display: flex; gap: 30px; align-items: center; justify-content: center; }
.contact-item { display: flex; align-items: center; gap: 10px; }
.contact-item i { font-size: 1.3rem; color: #000000; }
.contact-text { display: flex; flex-direction: column; justify-content: center; }
.contact-text .label { font-size: 13px; font-weight: bold; }
.contact-text .value { font-size: 10px; color: #333; }

/* =======================================================
   NAVIGATION
   ======================================================= */
.nav-bar {
  position: absolute;
  top: 80px; /* Adjust based on branding bar height */
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 4; /* Above video and overlay */
  padding: 10px 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-wrapper {
  background-color: rgba(35, 27, 59, 0.6);
  padding: 10px 20px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-bar .container, .nav-bar .nav-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-bar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.nav-bar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-bar a:hover,
.nav-bar a.active {
  background-color: var(--highlight-color);
  color: var(--bg-color);
}
.nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

/* Fixed nav state if needed (optional) */
.nav-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(35, 27, 59, 0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--accent-color);
  padding: 0;
  z-index: 10;
}

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  /* Top bar social links */
  .top-bar .social-icons { gap: 0.4rem; margin-right: 2rem; }
  .top-bar .social-icons a img { width: 18px; height: 18px; }

  /* Branding bar company name */
  .branding-bar .company-name { margin-left: auto; margin-right: auto; text-align: center; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Top bar social links */
  .top-bar .social-icons { gap: 0.3rem; margin-left: -6px; }
  .top-bar .social-icons a img { width: 16px; height: 16px; }

  /* Branding bar company name */
  .branding-bar .company-name { margin-left: auto; margin-right: auto; text-align: center; font-size: 1.2rem; }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  /* Top bar social links */
  .top-bar .social-icons { gap: 0.25rem; margin-left: -4px; }
  .top-bar .social-icons a img { width: 14px; height: 14px; }

  /* Branding bar company name */
  .branding-bar .company-name { margin-left: auto; margin-right: auto; text-align: center; font-size: 1rem; }
}


/* =======================================================
   HERO
   ======================================================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  animation: floatIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.main-text { font-size: 3rem; font-weight: bold; line-height: 1.3; margin-bottom: 20px; }
.main-text .highlight { color: #df7410; }
.sub-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  margin-bottom: 30px;
}

/* Buttons unified */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.btn--primary { background-color: var(--primary-bg); color: #ffffff; }
.btn--accent { background-color: var(--accent-color); color: var(--bg-color); }
.btn--gradient { background: linear-gradient(135deg, var(--accent-color), var(--primary-bg)); color: #fff; }
.btn--wiggle { transform-origin: center; will-change: transform; animation: wiggle 1.5s ease-in-out infinite; position: relative; }
.btn { background: linear-gradient(135deg, var(--accent-color), var(--primary-bg)); color: #fff; padding: 15px 40px; border: none; border-radius: 8px; cursor: pointer; font-size: 1.1rem; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
/* Animations */
@keyframes floatIn {
  from { transform: translateX(-500px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =======================================================
   ABOUT (Home section)
   ======================================================= */
.about-us { padding: 80px 0; background-color: #f9f9f9; }
.about-us .container { display: flex; gap: 40px; align-items: center; }
.about-content { flex: 1; max-width: 50%; }
.about-content .subheading {
  color: var(--highlight-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
  font-size: 3rem;
}
.about-content h2 { font-size: 2.2rem; color: var(--primary-bg); margin: 0 0 20px; }
.about-content p { line-height: 1.6; margin-bottom: 15px; }
.about-content ul { list-style: none; padding: 0; margin: 20px 0; }
.about-content ul li { display: flex; align-items: center; margin-bottom: 10px; font-weight: 500; color: #555; }
.about-content ul li i { color: var(--accent-color); margin-right: 10px; }
.about-image { flex: 1; max-width: 50%; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.btn.primary-btn { background-color: var(--primary-bg); color: #ffffff; padding: 12px 25px; border-radius: var(--radius); font-weight: 600; margin-top: 15px; transition: background-color 0.3s ease; }
.btn.primary-btn:hover { background-color: var(--secondary-bg); }

/* =======================================================
   ABOUT PAGE (scoped)
   ======================================================= */
main { padding-top: 0px; }
.intro-banner {
  position: relative; height: 200px; overflow: hidden; background-color: var(--secondary-bg); margin-top: 5rem;
}
.intro-banner::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
  background-color: #000;
  clip-path: polygon(0% 100%, 100% 100%, 100% 30%, 80% 40%, 60% 30%, 40% 40%, 20% 30%, 0% 40%);
}
.banner-text {
  position: absolute; top: 70%; left: 50%; transform: translate(-50%, -50%);
  color: #ffffff; font-size: 3rem; font-weight: bold; text-transform: uppercase; letter-spacing: 3px; z-index: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.about-section { padding: 40px 0; background-color: #fff; }
.about-section .container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.about-section h1, .about-section h2 { color: var(--primary-bg); text-align: center; margin-bottom: 40px; font-size: 2.5rem; }
.about-section h2 { font-size: 2rem; }

/* Shared subheading circle component */
.subheading-unique {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: var(--highlight-color);
  box-shadow: 0 0 0 10px rgba(0, 163, 136, 0.4);
  line-height: 1.2;
  text-align: center;
  font-size: 1rem;
  margin: 0 auto 25px auto;
}

/* Who we are grid */
.who-we-are { display: grid; grid-template-columns: 1fr 1fr; gap: 0; height: auto; }
.left-column, .right-column { display: flex; justify-content: center; align-items: center; }
.text {
  width: 408px; min-height: 288px; font-size: 16px;
  display: flex; flex-direction: column; justify-content: center; text-align: left;
  padding-left: 15rem; letter-spacing: -0.01rem; line-height: 1.5; font-weight: 500;
}
.image {
  width: 267px; height: 279px; display: flex; justify-content: center; align-items: center; padding-right: 5rem;
}
.image img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =======================================================
   MISSION & CORE VALUES
   ======================================================= */
.hero-image { padding: 40px 0; background-color: #f9f9f9; }
.hero-image img { width: 100%; height: auto; display: block; }

.mission {
  position: relative; padding: 20px 0; color: #fff; overflow: hidden;
}
.mission-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://static.wixstatic.com/media/11062b_219c166fc6d04b7aa60f59100e1a6ea5~mv2.jpg/v1/fill/w_980,h_970,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/11062b_219c166fc6d04b7aa60f59100e1a6ea5~mv2.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  transform: perspective(1000px) rotateX(0deg) scale(1);
  z-index: -0.4;
}
.mission::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.8); z-index: 1; }
.mission-title-box {
  position: relative; z-index: 2; background: var(--primary-bg); color: #fff;
  padding: 5px 20px; display: inline-block; margin: 0 0 10px 9rem; font-size: 1.5rem; font-weight: bold;
  text-align: center; border-radius: 5px; box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.mission-text-container {
  width: 790px; height: 419px; position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px; padding-left: 20px; padding-top: 4rem;
}
.mission-para-1 {
  font-size: 25px; line-height: 1.5; color: #fff; text-align: left; margin-left: 9rem; letter-spacing: -0.01rem;
}
.mission-para-2 {
  width: 675px; font-size: 16px; line-height: 1.5; color: #fff; text-align: left; margin-left: 9rem; letter-spacing: -0.01rem;
}

.core-values {
  width: 100%; height: auto; position: relative; background-color: transparent; margin-top: 6rem;
  display: flex; flex-direction: column; justify-content: flex-start; padding-top: 20px; z-index: 1;
}
.core-values-title {
  width: 258px; height: 39px; background: var(--highlight-color); color: #ffffff; font-size: 1.5rem; font-weight: bold;
  display: flex; align-items: center; justify-content: center; margin-left: 9rem; margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.values-grid { display: flex; gap: 11px; justify-content: center; }
.value-item {
  width: 326px; min-height: 181px; background-color: #250022; color: #fff; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: flex-start; text-align: left; padding: 10px; gap: 10px;
  animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transform: translateY(20px);
}
.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.border-bar { width: 11px; height: 58px; background-color: var(--accent-color); border-radius: 5px; margin-bottom: 10px; margin-left: 1rem; }
.left { display: flex; flex-direction: row; align-items: center; gap: 3rem; }
.value-item h3 { font-size: 18px; margin: 0; }
.value-item p {
  width: 238px; min-height: 100px; font-size: 16px; font-weight: 500; color: var(--accent-color);
  margin: 0; text-align: left; display: block; padding-left: 4rem;
}

/* =======================================================
   SERVICES (Accordion)
   ======================================================= */
.services { position: relative; padding: 80px 0; color: #ffffff; overflow: hidden; }
.services-background-wrapper { position: absolute; inset: 0; z-index: 1; }
.services-video { width: 100%; height: 100%; object-fit: cover; }
.services-overlay { position: absolute; inset: 0; background-color: rgba(35,27,59,0.7); z-index: 2; }
.services-accordion-content { position: relative; z-index: 3; max-width: 950px; text-align: center; margin: 0 auto; }
.services-header { margin-bottom: 50px; }
.services-header h2 { color: var(--accent-color); font-size: 2.5rem; margin-top: 10px; }

.accordion-container { width: 100%; margin-top: 30px; text-align: left; }
.accordion-item {
  background-color: rgba(255,255,255,0.98); color: var(--primary-bg); margin-bottom: 20px; border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2); overflow: hidden;
}
.accordion-header {
  display: flex; align-items: center; padding: 20px 25px; cursor: pointer; font-size: 1.3rem; font-weight: 700; transition: background-color 0.3s ease;
}
.accordion-header:hover { background-color: rgba(245,245,245,0.9); }
.accordion-item.active .accordion-header { background-color: #f0f0f0; border-left-color: var(--accent-color); }
.accordion-header h4 { flex-grow: 1; color: var(--primary-bg); margin: 0 15px; }
.icon-left { color: var(--tertiary-bg); font-size: 1.5rem; }
.icon-right { color: var(--accent-color); transition: transform 0.3s ease; }
.accordion-item.active .icon-right { transform: rotate(180deg); }

.accordion-body {
  background-color: #fcfcfc; padding: 0 30px; max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}
.accordion-item.active .accordion-body { max-height: 600px; padding: 30px; }
.accordion-body-content { display: flex; gap: 30px; align-items: flex-start; }
.body-image { flex: 0 0 40%; max-width: 40%; border-radius: var(--radius); overflow: hidden; }
.body-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.body-text { flex: 1; color: #555; }
.body-text p { margin-bottom: 20px; line-height: 1.6; }

/* =======================================================
   WHY CHOOSE US
   ======================================================= */
.why-us-section { padding: 60px 0; background-color: #1f2937; color: #ffffff; }
.why-us-flex-container { display: flex; align-items: center; min-height: 550px; padding: 0; }
.content-column { flex: 0 0 60%; padding: 0 30px 0 40px; }
.section-header { margin-bottom: 20px; }
.section-header h2 { font-size: 2.5rem; color: var(--accent-color); }
.subheading { color: #cccccc; }
.feature-content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 30px; }
.feature-detail-block {
  background-color: rgba(255,255,255,0.05); padding: 15px; border-radius: 6px; transition: background-color 0.3s;
}
.feature-detail-block:hover { background-color: rgba(255,255,255,0.1); }
.detail-icon { font-size: 1.8rem; color: var(--accent-color); margin-bottom: 8px; }
.feature-detail-block h3 { font-size: 1.3rem; color: #ffffff; margin-bottom: 5px; }
.feature-detail-block p { line-height: 1.5; font-size: 0.95rem; color: #b0b0b0; }
.final-feature { grid-column: 1 / -1; text-align: center; padding: 20px; }

.fixed-image-col { flex: 0 0 40%; max-width: 40%; display: flex; align-items: center; justify-content: center; }
.fixed-image-col .why-us-image { max-width: 100%; height: auto; display: block; object-fit: contain; padding: 10px; }

/* =======================================================
   TESTIMONIALS
   ======================================================= */
.testimonials-section {
  padding: 80px 0;
  background-color: #f0f0f5;
  background-image: radial-gradient(#dcdce4 1px, transparent 0);
  background-size: 20px 20px;
}
.testimonial-carousel-wrapper {
  position: relative; max-width: 900px; margin: 0 auto; text-align: center; padding: 0 40px 50px 40px; overflow: visible;
}
.testimonial-card {
  background-color: #ffffff; border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: relative; height: auto; padding: 0;
}
.testimonial-card::after {
  content: ''; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
  background: radial-gradient(circle at top left, var(--accent-color) 0%, transparent 40%);
  opacity: 0.08; border-radius: 16px; z-index: 0;
}
.quote-icon {
  font-size: 3.5rem; color: var(--accent-color);
  filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), 0.7));
  margin-bottom: 20px;
}
blockquote {
  font-size: 1.4rem; line-height: 1.7; color: #1f2937; font-style: italic; margin: 0 0 30px; position: relative; z-index: 1;
}
.client-info {
  display: flex; align-items: center; justify-content: center; margin-top: 30px; padding-top: 15px;
  border-top: 1px solid var(--accent-color, #ddd);
}
.client-avatar { width: 70px; height: 70px; border-radius: 50%; margin-right: 20px; border: 4px solid var(--accent-color); object-fit: cover; }
.client-name { font-weight: 700; color: var(--primary-bg); margin-bottom: 2px; }
.client-title { font-size: 0.95rem; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; }
.swiper-button-prev, .swiper-button-next {
  color: #ffffff !important; background-color: var(--primary-bg); border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  width: 50px !important; height: 50px !important; transition: all 0.2s ease; top: 50%; transform: translateY(-50%);
}
.swiper-button-prev:hover, .swiper-button-next:hover { background-color: var(--accent-color); transform: translateY(-50%) scale(1.1); }
.swiper-pagination-bullet-active { background-color: var(--accent-color) !important; }
/* =======================================================
   RESPONSIVE OPTIMIZATION — Additional Rules Only
   ======================================================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  body, html { overflow-x: hidden; }
  /* Hero */
  .main-text { font-size: 2.2rem; }
  .sub-text { font-size: 0.95rem; }
}
  /* About Us */
  .about-us .container { flex-direction: column; gap: 20px; }
  .about-content, .about-image { max-width: 100%; }

/* SERVICES FIX */
@media (max-width: 992px) {
  .services-accordion-content { display: flex; flex-direction: column; align-items: center; }
  .services-header { order: 1; margin-bottom: 1rem; }
  .accordion-container { order: 2; width: 90%; max-width: 600px; margin: 0 auto; }
  .accordion-item { width: 90%;}
  .accordion-body-content { flex-direction: column; gap: 1rem; }
  .body-image { max-width: 100%; }
  .body-image img { width: 100%; height: auto; max-height: 180px; object-fit: cover; border-radius: var(--radius); }
  .body-text { font-size: 0.95rem; }
}

  /* Why Us */
  .why-us-flex-container { flex-direction: column; text-align: center; }
  .content-column, .fixed-image-col { flex: 1 1 100%; max-width: 100%; padding: 10px; }
  .feature-content-grid { grid-template-columns: 1fr; }

/* TESTIMONIALS FIX */
@media (max-width: 992px) {
  /* Layout alignment */
  .testimonials-section .container {
    display: flex; flex-direction: column; align-items: center;
  }

  .testimonials-section .section-header {
    margin-bottom: 1rem;
    text-align: center;
  }

  /* IMPORTANT: let Swiper control slides */
  .swiper {
    width: 100%;
    overflow: hidden;
  }

  .swiper-wrapper {
    width: 100%;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Constrain the CARD (not the slide) */
  .testimonial-card {
    width: 92%;
    max-width: 420px;
    padding: 1rem;
    box-sizing: border-box;
    font-size: 0.9rem;
  }

  /* Text scaling */
  .testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.4;
    overflow-wrap: break-word;
  }

  .quote-icon {
    font-size: 2rem;
  }

  /* Avatar scaling */
  .client-avatar {
    width: 45px;
    height: 45px;
  }

  /* Hide arrows, keep dots */
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .swiper-pagination {
    margin-top: 0.8rem;
  }

}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Hero */
  .hero { height: 80vh; }
  .main-text { font-size: 1.8rem; line-height: 1.2; }
  .sub-text { font-size: 0.9rem; padding: 8px 15px; }
  .btn { padding: 8px 16px; font-size: 0.9rem; }

  /* About Us */
  .about-content .subheading { font-size: 1.5rem; }
  .about-content h2 { font-size: 1.6rem; }
  .about-content p { font-size: 0.95rem; }

  /* Services */
  .services-header h2 { font-size: 1.8rem; }
  .accordion-header { font-size: 1rem; padding: 15px; }
  .accordion-body { padding: 20px; }
  .body-text p { font-size: 0.95rem; }

  /* Why Us */
  .section-header h2 { font-size: 1.8rem; }
  .feature-detail-block h3 { font-size: 1.1rem; }
  .feature-detail-block p { font-size: 0.9rem; }

  /* Testimonials */
  .quote-icon { font-size: 2.5rem; }
  blockquote { font-size: 1rem; line-height: 1.5; }
  .client-avatar { width: 50px; height: 50px; }
  .client-name { font-size: 0.95rem; }
  .client-title { font-size: 0.8rem; }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  /* Hero */
  .hero { height: 70vh; }
  .main-text { font-size: 1.4rem; }
  .sub-text { font-size: 0.85rem; }
  .btn { font-size: 0.8rem; padding: 6px 12px; }

  /* About Us */
  .about-content .subheading { font-size: 1.2rem; }
  .about-content h2 { font-size: 1.4rem; }
  .about-content p { font-size: 0.85rem; }

  /* Services */
  .services-header h2 { font-size: 1.5rem; }
  .accordion-header h4 { font-size: 0.95rem; }
  .body-text p { font-size: 0.85rem; }

  /* Why Us */
  .section-header h2 { font-size: 1.5rem; }
  .feature-detail-block h3 { font-size: 1rem; }
  .feature-detail-block p { font-size: 0.85rem; }

  /* Testimonials */
  blockquote { font-size: 0.9rem; }
  .client-avatar { width: 40px; height: 40px; }
  .client-name { font-size: 0.85rem; }
  .client-title { font-size: 0.75rem; }
}


/* =======================================================
   ABOUT PAGE (scoped subset with own variables)
   ======================================================= */
.about-page a { color: var(--about-accent); text-decoration: none; }
.about-page a:hover { text-decoration: underline; }
.about-hero {
  position: relative; isolation: isolate; overflow: hidden; padding: 6rem 0 3.5rem;
  background: linear-gradient(135deg, var(--about-secondary-bg) 0%, var(--about-bg) 62%); color: var(--about-accent);
}
.about-hero::before {
  content: ""; position: absolute; inset: -12% -20% auto -20%; height: 60%;
  background: linear-gradient(90deg, var(--about-highlight), var(--about-tertiary-highlight));
  transform: skewY(-7deg); opacity: 0.25; z-index: -1;
}
.about-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 160px; background: var(--about-bg);
  clip-path: path("M0,70 C220,10 440,130 660,50 C880,-20 1100,110 1280,40 L1280,180 L0,180 Z");
  z-index: -1;
}
.about-hero-title { margin: 0 0 0.5rem; font-size: clamp(2rem, 3.6vw, 2.8rem); letter-spacing: 0.4px; }
.about-hero-tagline { margin: 0.25rem 0 0; color: #eaeaea; max-width: 62ch; }

.about-section .about-section-header { margin-bottom: 1rem; }
.about-section .about-section-title { margin: 0; font-size: clamp(1.375rem, 2.6vw, 1.75rem); color: var(--about-accent); }
.about-section .about-section-bar { width: 72px; height: 3px; background: var(--about-highlight); margin-top: 0.5rem; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: var(--about-gap); }
.about-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--about-radius); padding: 1rem 1.25rem; backdrop-filter: blur(6px);
}
.about-values-list { list-style: none; padding: 0; margin: 0.25rem 0 0; }
.about-values-item { display: grid; grid-template-columns: 20px auto; gap: 0.75rem; align-items: start; padding: 0.5rem 0; }
.about-values-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--about-highlight); margin-top: 4px; }
.about-contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--about-gap); }
.about-contact-item-title { margin: 0 0 0.35rem; font-size: 1rem; color: var(--about-accent); }
.about-contact-item p { margin: 0.25rem 0; }
.about-social { margin-top: 1rem; }
.about-social-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.about-social-link {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; color: var(--about-text);
  background: rgba(255,255,255,0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.about-social-link:hover { transform: translateY(-1px); background: rgba(255,255,255,0.12); border-color: var(--about-accent); }
.about-page-spacer { height: 2rem; }

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  /* Intro Banner */
  .banner-text { font-size: clamp(1.8rem, 4vw, 2.2rem); }

  /* Who We Are */
  .who-we-are { flex-direction: column; gap: 2rem; }
  .left-column, .right-column { width: 100%; justify-content: center; }
  .text { width: 100%; padding: 0 1rem; font-size: 0.95rem; line-height: 1.5; }
  .image { width: 100%; max-width: 500px; margin: 0 auto; }

  /* Mission */
  .mission-title-box { margin: 0 auto 1rem auto; font-size: 1.2rem; }
  .mission-text-container { width: 100%; padding: 1rem; }
  .mission-para-1, .mission-para-2 { margin: 0; font-size: 0.95rem; line-height: 1.5; }

  /* Core Values */
.values-grid { flex-direction: column; gap: 0.75rem; } 
.value-item { width: 100%; max-width: 480px; margin: 0 auto; padding: 0.75rem; gap: 0.5rem; min-height: auto; } 
.value-item h3 { font-size: 1rem; margin: 0; } .value-item p { font-size: 0.85rem; line-height: 1.4; width: auto; padding-left: 2rem; } 
.border-bar { width: 8px; height: 40px; margin-left: 0.5rem; } .left { gap: 1rem; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Intro Banner */
  .banner-text { font-size: clamp(1.5rem, 5vw, 1.8rem); }

  /* Who We Are */
  .text { font-size: 0.9rem; padding: 0 0.75rem; }
  .image img { max-height: 220px; object-fit: cover; }

  /* Mission */
  .mission-title-box { font-size: 1rem; padding: 0.5rem 1rem; }
  .mission-para-1, .mission-para-2 { font-size: 0.9rem; }

  /* Core Values */
  .core-values-title { font-size: 1.2rem; margin: 0 auto 1rem auto; }
  .value-item h3 { font-size: 1rem; }
  .value-item p { font-size: 0.85rem; }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  /* Intro Banner */
  .banner-text { font-size: 1.3rem; text-align: center; }

  /* Who We Are */
  .text { font-size: 0.85rem; line-height: 1.4; }
  .image img { max-height: 180px; }

  /* Mission */
  .mission-title-box { font-size: 0.9rem; }
  .mission-para-1, .mission-para-2 { font-size: 0.85rem; line-height: 1.4; }

  /* Core Values */
.value-item { max-width: 100%; padding: 0.6rem; } 
.value-item h3 { font-size: 0.95rem; } 
.value-item p { font-size: 0.8rem; line-height: 1.35; padding-left: 1.5rem; } 
.border-bar { height: 30px; }
}

/* =======================================================
   CONTACT PAGE — Full Modern Redesign
   ======================================================= */

/* Hero Section */
.contact-hero {
  display: flex; align-items: center; justify-content: center; text-align: center; height: 60vh;
  background: linear-gradient(135deg, var(--primary-bg), var(--accent-color)); color: #fff; position: relative;
}
.contact-hero .hero-content { max-width: 700px; padding: 0 1rem; }
.contact-hero h1 { font-size: clamp(5rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.contact-hero p { font-size: 1.2rem; line-height: 1.6; color: rgba(255,255,255,0.9); }

/* Let's Chat Section */
.lets-chat-section {
  margin-top: 4rem; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 1200px; margin-left: auto; margin-right: auto; overflow: hidden;
}
.lets-chat-header { background: var(--primary-bg); padding: 1.5rem; text-align: center; }
.lets-chat-header h2 { font-size: 2rem; color: #fff; margin: 0; }

/* Two Columns */
.chat-columns { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; padding: 2rem; }
.column-1 {
  display: flex; align-items: center; justify-content: center;
  background: #3d036d6b; border-radius: var(--radius); padding: 1.5rem;
}
.info-card {
  background: #fff; border-radius: var(--radius); box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 1.5rem; width: 100%; max-width: 320px;
  display: flex; flex-direction: column; gap: 1.2rem; text-align: left;
}
.info-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.info-item i { font-size: 1.3rem; color: var(--accent-color); flex-shrink: 0; }
.info-item h3 { font-size: 1rem; color: var(--primary-bg); margin: 0 0 0.3rem 0; }
.info-item p { color: #555; margin: 0; font-size: 0.9rem; }
.social-links { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.social-links a {
  font-size: 0.9rem; color: var(--primary-bg); background: #fff; border-radius: 50%;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); transition: all 0.3s ease;
}
.social-links a:hover { background: var(--accent-color); color: var(--primary-bg); transform: translateY(-2px); }

.column-2 {
  position: relative; background-image: url('../imgs/image.png'); background-size: cover; background-position: center;
  border-radius: var(--radius); min-height: 500px; display: flex; align-items: center; justify-content: center;
}
.column-2::before { content: ""; position: absolute; inset: 0; background: rgba(35,27,59,0.7); border-radius: var(--radius); }
.form-overlay {
  position: relative; z-index: 1; width: 90%; max-width: 380px; padding: 3.0rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Modern Form Styling */
.contact-form .form-group { position: relative; margin-bottom: 1.2rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.5rem; border: 3px solid rgb(143, 151, 21); border-radius: var(--radius);
  background: rgba(255,255,255,0.2); color: #fff; font-size: 0.95rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: transparent; }
.contact-form label {
  position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); color: rgba(255,255,255,0.7);
  pointer-events: none; transition: 0.3s ease;
}
.contact-form input:focus + label, .contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label, .contact-form textarea:not(:placeholder-shown) + label {
  top: -8px; left: 8px; font-size: 0.8rem; color: var(--accent-color);
  background: rgba(35,27,59,0.9); padding: 0 4px; border-radius: 4px;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-bg)); color: #fff;
  padding: 0.8rem 1.5rem; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }

/* Map Section */
.map-section { padding: 4rem 2rem; background: #f9f9f9; display: flex; justify-content: center; }
.map-card {
  background: #fff; border-radius: var(--radius); box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden; max-width: 900px; width: 100%; position: relative;
}
.map-card h3 { background: var(--primary-bg); color: #fff; padding: 1rem; margin: 0; }
.map-container iframe { width: 100%; height: 400px; border: none; }
.map-overlay {
  position: absolute; bottom: 20px; left: 20px; background: rgba(35,27,59,0.85); color: #fff;
  padding: 1rem; border-radius: var(--radius); box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .chat-columns { grid-template-columns: 1fr; }
  .column-2 { min-height: 300px; }
}

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  /* Stack columns */
  .chat-columns { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .column-1 { justify-content: center; }   
  .column-2 { min-height: 300px; }

  /* Hero text */
  .contact-hero { margin-top: 5rem;}
  .contact-hero h1 { font-size: clamp(2rem, 4vw, 2.5rem); }
  .contact-hero p { font-size: 1rem; }

  /* Info card */
  .info-card { max-width: 260px; /* narrower card */ margin: 0 auto; /* center horizontally */ text-align: center; /* center text inside */ align-items: center; }  .info-item h3 { font-size: 0.95rem; }
  .info-item { flex-direction: column; align-items: center; gap: 0.5rem; } 
  .info-item h3 { font-size: 0.95rem; } 
  .info-item p { font-size: 0.85rem; } 
  .social-links { justify-content: center; }
  /* Form overlay */
  .form-overlay { max-width: 100%; padding: 2rem; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Hero */
  .contact-hero { height: 40vh; }
  .contact-hero h1 { font-size: 1.8rem; }
  .contact-hero p { font-size: 0.9rem; line-height: 1.4; }

  /* Chat section */
  .lets-chat-header h2 { font-size: 1.5rem; }
  .chat-columns { padding: 1rem; gap: 1rem; }

  /* Info card */
  .info-card { padding: 0.8rem; }
  .info-item i { font-size: 1rem; }
  .info-item h3 { font-size: 0.9rem; }
  .info-item p { font-size: 0.8rem; }

  /* Form */
  .form-overlay { padding: 1.5rem; }
  .contact-form input, .contact-form textarea { font-size: 0.85rem; }
  .contact-form button { font-size: 0.9rem; padding: 0.6rem 1.2rem; }

  /* Map */
  .map-card h3 { font-size: 1.2rem; }
  .map-container iframe { height: 280px; }
  .map-overlay { font-size: 0.85rem; padding: 0.6rem; }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  /* Hero */
  .contact-hero { height: 35vh; }
  .contact-hero h1 { font-size: 1.5rem; }
  .contact-hero p { font-size: 0.8rem; }

  /* Info card */
  .info-card { padding: 0.6rem; gap: 0.8rem; }
  .info-item h3 { font-size: 0.85rem; }
  .info-item p { font-size: 0.75rem; }

  /* Form */
  .form-overlay { padding: 1rem; }
  .contact-form input, .contact-form textarea { font-size: 0.8rem; }
  .contact-form button { font-size: 0.85rem; padding: 0.5rem 1rem; }

  /* Map */
  .map-container iframe { height: 220px; }
  .map-overlay { font-size: 0.75rem; padding: 0.5rem; }
}

/* =======================================================
   PROJECTS PAGE PLACEHOLDER
   ======================================================= */
.projects-placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100vh; background: linear-gradient(135deg, var(--primary-bg), var(--accent-color));
  color: #fff; text-align: center;
}
.placeholder-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  padding: 2rem 3rem; border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); max-width: 600px;
}
.placeholder-card h1 {
  font-size: 2rem; margin-bottom: 1rem; color: #fff;
}
.placeholder-card p {
  font-size: 1.2rem; color: rgba(255,255,255,0.9);
}


/* =======================================================
   PROJECTS PAGE
   ======================================================= */

/* Projects Hero */
.projects-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(35, 27, 59, 0.9) 100%);
  color: white;
  text-align: center;
}

.projects-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.projects-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 700;
}

.projects-hero p {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Projects Section */
.projects-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Project Cards */
.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
  position: relative;
  overflow: hidden;
  background-color: #e0e0e0;
  aspect-ratio: 4 / 3;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(35, 27, 59, 0.7) 0%, rgba(222, 255, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-badge {
  background-color: var(--accent-color);
  color: var(--primary-bg);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-info h3 {
  font-size: 1.4rem;
  color: var(--primary-bg);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.project-type {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.project-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.project-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #888;
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-meta i {
  color: var(--accent-color);
  font-size: 1rem;
}

/* Project Stats Section */
.project-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(35, 27, 59, 0.95) 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-card {
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(222, 255, 0, 0.1);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--accent-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Projects CTA Section */
.projects-cta-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.projects-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary-bg);
  margin-bottom: 15px;
  font-weight: 700;
}

.projects-cta-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =======================================================
   RESPONSIVE PROJECTS
   ======================================================= */

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .projects-hero h1 {
    font-size: 3rem;
  }
  
  .project-info h3 {
    font-size: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .projects-hero {
    padding: 120px 0;
  }
  
  .projects-section {
    padding: 100px 0;
  }
  
  .project-stats-section {
    padding: 100px 0;
  }
  
  .projects-cta-section {
    padding: 100px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  
  .project-card {
    border: 1px solid #f0f0f0;
  }
  
  .project-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .projects-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .projects-grid {
    gap: 35px;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .projects-hero {
    padding: 60px 0;
  }
  
  .projects-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .projects-hero p {
    font-size: 1rem;
  }
  
  .projects-section {
    padding: 50px 15px;
  }
  
  .project-image {
    aspect-ratio: 16 / 9;
  }
  
  .project-info {
    padding: 20px;
  }
  
  .project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  
  .project-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .project-meta {
    gap: 10px;
    font-size: 0.85rem;
    padding-top: 12px;
  }
  
  .project-stats-section {
    padding: 60px 15px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    padding: 20px;
  }
  
  .stat-card h3 {
    font-size: 2rem;
  }
  
  .stat-card p {
    font-size: 0.95rem;
  }
  
  .projects-cta-section {
    padding: 60px 15px;
  }
  
  .projects-cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .projects-cta-section p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* Extra Small Mobile (< 480px) */
@media (max-width: 479px) {
  .projects-hero h1 {
    font-size: 1.6rem;
  }
  
  .projects-hero p {
    font-size: 0.9rem;
  }
  
  .projects-section {
    padding: 40px 12px;
  }
  
  .project-image {
    aspect-ratio: 1;
  }
  
  .project-info h3 {
    font-size: 1.1rem;
  }
  
  .project-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .stat-card h3 {
    font-size: 1.8rem;
  }
  
  .projects-cta-section h2 {
    font-size: 1.5rem;
  }
}


/* =======================================================
   FOOTER
   ======================================================= */
.main-footer {
  background-color: #1f2937; color: #f0f0f5; padding-top: 60px; font-size: 1rem;
}
.footer-content-grid {
  display: flex; justify-content: space-between; gap: 30px; padding-bottom: 40px;
}
.footer-col { flex: 1; min-width: 200px; }
.footer-logo-img {
  max-height: 120px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); display: block;
}
.footer-about p { margin-top: 15px; }
.footer-col h3 { font-size: 1.5rem; color: var(--accent-color); margin-bottom: 20px; font-weight: 600; }
.footer-col p { color: #a0a0a0; line-height: 1.6; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #a0a0a0; text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--accent-color); }
.social-links { margin-top: 20px; display: flex; gap: 15px; }
.social-links a { color: #a0a0a0; font-size: 1.25rem; transition: color 0.3s, transform 0.3s; }
.social-links a:hover { color: var(--accent-color); transform: translateY(-3px); }

.footer-form input, .footer-form textarea {
  width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #444; background-color: #2d3848; color: #f0f0f5;
  border-radius: 4px; font-size: 0.95rem; resize: vertical;
}
.footer-form input::placeholder, .footer-form textarea::placeholder { color: #888; }
.footer-form input:focus, .footer-form textarea:focus {
  border-color: var(--accent-color); outline: none; box-shadow: 0 0 5px rgba(var(--accent-rgb), 0.5);
}
.footer-form textarea { min-height: 80px; }
.btn-accent {
  background-color: var(--accent-color); color: #fff; border: none; padding: 12px 20px; border-radius: 4px; cursor: pointer; font-weight: 600;
  width: 100%; transition: background-color 0.3s, transform 0.2s;
}
.btn-accent:hover { background-color: var(--primary-bg); transform: translateY(-2px); }

.footer-copyright {
  background-color: #161e27; padding: 20px 0; margin-top: 40px;
}
.footer-copyright p { text-align: center; color: #888888; margin: 0; font-size: 0.9rem; }

/* Tablets and below (≤ 992px) */
@media (max-width: 992px) {
  .footer-content-grid {
    flex-direction: column;      /* stack columns */
    align-items: center;         /* center horizontally */
    justify-content: center;
    text-align: center;
    padding: 0.1rem;             /* balanced padding */
    gap: 1.5rem;
    margin-left: -1rem;              /* center the grid */
  }

  .footer-col {
    flex: none;                  /* remove flex growth */
    width: 100%;                 /* full width */
    max-width: 320px;            /* cap width so it doesn’t stretch */
    margin: 0 auto;              /* center each column */
  }

  .social-links {
    justify-content: center;     /* center icons */
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .footer-col h3 { font-size: 1.1rem; margin-bottom: 12px; }
  .footer-col p, .footer-col ul li a { font-size: 0.9rem; }
  .social-links a { font-size: 1.1rem; }
  .footer-form input, .footer-form textarea { font-size: 0.85rem; }
  .btn-accent { font-size: 0.9rem; padding: 10px 16px; }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .footer-col { max-width: 100%; }
  .footer-logo-img { max-height: 80px; margin: 0 auto 10px; }
  .footer-col h3 { font-size: 1rem; }
  .footer-col p, .footer-col ul li a { font-size: 0.8rem; }
  .social-links { gap: 10px; }
  .social-links a { font-size: 1rem; }
  .footer-form input, .footer-form textarea { font-size: 0.8rem; }
  .btn-accent { font-size: 0.85rem; padding: 8px 14px; }
  .footer-copyright p { font-size: 0.75rem; }
}

/* =======================================================
   RESPONSIVE (grouped)
   ======================================================= */

/* Max 1024px (tablet and smaller desktop) */
@media (max-width: 1024px) {
  .about-us .container { flex-direction: column; }
  .about-content, .about-image { max-width: 100%; }
  .about-image { order: 1; margin-bottom: 30px; }
  .about-content { order: 2; }

  .services { padding: 60px 0; }
  .services-header h2 { font-size: 2.2rem; }
  .accordion-header { font-size: 1.2rem; }

  .feature-content-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Max 992px (mobile nav activation, stack columns) */
@media (max-width: 992px) {
  .container { width: 95%; }
  .top-bar .location, .contact-item:not(:first-child) { display: none; }

  .branding-bar .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .contact { justify-content: flex-start; }

  .nav-bar { position: static; top: auto; padding: 0; background-color: var(--primary-bg); }
  .nav-bar .container { width: 100%; }
  .menu-toggle { display: block; margin-left: auto; color: white; }
  .nav-wrapper {
    display: flex; justify-content: flex-end; align-items: center; width: 100%;
    background-color: var(--primary-bg); padding: 10px 5%; border-radius: 0; flex-wrap: wrap;
  }
  .nav-bar nav { width: 100%; display: none; }
  .nav-bar nav.nav-open { display: block; }
  .nav-bar nav ul {
    display: flex; flex-direction: column; width: 100%; text-align: center; margin-top: 10px; background-color: var(--primary-bg); padding-bottom: 10px;
  }
  .branding-bar .contact { display: none; }

  .fixed-image-col { order: -1; height: 300px; margin-bottom: 30px; }
  .fixed-image-col .why-us-image { max-height: 300px; width: auto; }
}

/* Max 768px (phones) */
@media (max-width: 768px) {
  .container { padding-left: 15px; padding-right: 15px; width: 100%; }

  .subheading-unique { height: 100px; width: 100px; font-size: 0.9rem; }

  .about-us .container { flex-direction: column; }
  .about-content, .about-image { max-width: 100%; flex-basis: auto; }
  .about-content { order: 1; }
  .about-image { order: 2; margin-bottom: 30px; }

  .who-we-are { grid-template-columns: 1fr; gap: 20px; }
  .text { width: 100%; min-height: 200px; font-size: 14px; padding-left: 0; }
  .image { width: 200px; height: 210px; padding-right: 0; }

  .mission-para-1, .mission-para-2 { width: 90%; margin-left: 0; }
  .mission-para-1 { font-size: 20px; }
  .mission-para-2 { font-size: 14px; }
  .values-grid { flex-direction: column; gap: 10px; padding: 0 10px; }
  .value-item { width: 100%; min-height: 150px; height: auto; }
  .core-values-title { position: static; margin-bottom: 20px; clip-path: none; background: var(--primary-bg); margin-left: 0; }

  .accordion-body-content { flex-direction: column; gap: 20px; }
  .body-image { max-width: 100%; flex: 0 0 100%; order: 1; }
  .body-text { order: 2; }
  .accordion-header { font-size: 1rem; padding: 15px 20px; }
  .accordion-item.active .accordion-body { padding: 20px; }

  .testimonial-card { padding: 40px 20px; }
  blockquote { font-size: 1.2rem; }
  .swiper-button-prev, .swiper-button-next { display: none !important; }
  .testimonial-carousel-wrapper { padding: 0 10px 40px 10px; }

  .contact-hero h1 { font-size: 2rem; }
  .paragraph-box { width: 100%; height: auto; }
  .contact-hero p { font-size: 1rem; }
  .form-row { flex-direction: column; gap: 0; }
  .contact-form { padding: 20px; }
  .lets-chat-section { height: auto; }
  .chat-columns { flex-direction: column; height: auto; }
  .column-1, .column-2, .column-3 { width: 100%; height: auto; }
  .lets-chat-header { height: auto; padding: 20px 0; }
}

/* Max 480px (smallest phones) */
@media (max-width: 480px) {
  .text { font-size: 13px; min-height: 150px; }
  .image { width: 150px; height: 160px; }
}

/* About page internal grids */
@media (min-width: 860px) {
  .about-grid--two-col { grid-template-columns: 1.25fr 1fr; }
}
@media (min-width: 680px) {
  .about-contact-grid { grid-template-columns: repeat(3, 1fr); }
}
