
/* =========================================
   GLOBAL TYPOGRAPHY SYSTEM
========================================= */

:root {
  --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Body text */
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #e6e8ec; /* or your main text color */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px; /* makes it look expensive */
  margin: 0;
}


/* =========================================
   GLOBAL BASE STYLES
========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-main: #016ab8;
  --yellow-main: #fcbd01;
  --bg-dark: #020b18;
  --bg-section: #031426;
  --text-main: #e8f5ff;
  --text-muted: #9fb4cc;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.35);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.25s ease;
  --transition-med: 0.35s ease;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #000035 10%, #1466ad 70%, #000052 100%);
  color: var(--text-main);
  line-height: 1.5;
}

/* Each page body can have its own class for easy targeting */
.home-body {
  background: linear-gradient(to bottom, #000035 10%, #1466ad 70%, #000052 100%);
  color: #ffffff;
}

/* =========================================
   GLOBAL CONTAINERS & UTILITIES
========================================= */

.nav-container,
.home-hero-inner,
.home-brief-section,
.home-services-section,
.home-why-inner,
.home-projects-section,
.home-packages-section,
.home-blog-section,
.home-final-cta-section,
.site-footer .footer-inner {
  width: min(1200px, 100% - 40px);
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Section spacing */
section {
  padding: 80px 0;
}

.home-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.home-section-header h2 {
  font-size: 32px;
  color: #fafafa;
  margin-bottom: 10px;
}

.home-section-header p {
  color: #fafafa;
  font-size: 16px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-main), #ffe484);
  color: #1d1300;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
  background: rgba(1, 106, 184, 0.25);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(1, 106, 184, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fafafa;
  border-color: #fafafa;
}

.btn-outline:hover {
  background: #166bb5;
}

/* =========================================
   GLOBAL HEADER / NAVBAR
========================================= */

/* ==========================
   NAV DROPDOWN
========================== */

.dropdown {
  position: relative;
}

.dropdown-menu,
.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 18px 35px rgba(0,0,0,0.45);
  z-index: 99;
  pointer-events: auto;
  transition: opacity 0.20s ease;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-link {
  padding: 10px 18px;
  width: 100%;
  font-size: 14px;
  text-decoration: none;
  color: #2a2a2a;
  display: block;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(1,106,184,0.08);
  color: var(--blue-main);
}

/* Keep menu open while hovering inside */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: flex;
}


/* ===================== MOBILE DROPDOWN FIX ===================== */
@media (max-width: 850px) {

  /* Fix dropdown container */
  .dropdown-menu {
    display: none;
    background: #001a2d;
    box-shadow: none !important;
    width: 85%;
    margin: 0 auto;
    padding: 10px 15px;
    padding: 10px 15px;
    display: none;                 /* keep closed by default */
  }

  /* Show dropdown on tap */
  .dropdown:hover .dropdown-menu,
  .dropdown.menu-open .dropdown-menu {
    display: block !important;
  }

  /* Fix dropdown links */
  .dropdown-menu li {
    text-align: center;
    padding: 8px 0;
  }

  .dropdown-menu li a {
    font-size: 17px;
    color: #ffffff !important;               /* matching color */
    opacity: 0.9;
  }

  .dropdown-menu li a:hover {
    color: var(--accent-yellow) !important;
    opacity: 1;
  }

  /* Prevent dropdown from floating over logo */
  .dropdown {
    width: 100%;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px; /* optional clean padding */
  width: 100% !important;
  max-width: 100% !important;
}

.site-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: none;
}

/* Desktop nav */
.main-nav {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  text-decoration: none;
  color: #2a2a2a; /* dark gray */
  font-size: 14px;
  padding: 6px 10px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--yellow-main);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--blue-main); /* your brand blue */
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-active {
  color: var(--blue-main);
  font-weight: 600;
}

.nav-link-active::after {
  width: 100%;
}

.nav-link-cta {
  border-radius: 999px;
  border: 1px solid var(--blue-main);
  padding-inline: 14px;
  transition: all 0.28s ease;
  color: var(--blue-main);
}

/* Remove underline hover for CTA button */
.nav-link-cta::after {
  display: none !important;
  width: 0 !important;
}

.nav-link-cta:hover {
  background: var(--blue-main);
  color: #ffffff;
  border-color: var(--yellow-main);
  box-shadow: 0 0 14px rgba(1,106,184,0.4);
}

/* Mobile nav button */
.nav-toggle {
  display: none; /* hidden by default */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #002544;
  border-radius: 3px;
}

/* =========================================
   HOME – HERO SECTION
========================================= */

/* ===================== HERO VIDEO BACKGROUND ===================== */

.home-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
}

.home-hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.home-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.home-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #02223d 0%, #003d6b 100%);
  opacity: 0.2;
}

/* Ensure hero content stays above video */
.home-hero-inner,
.home-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero-section {
  padding: 90px 0 70px;
}

.home-hero-inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.home-hero-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.home-hero-content h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.home-hero-text {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 24px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  justify-content: center;
}

.home-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  justify-content: center;
}

/* Right side hero cards */
.home-hero-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-hero-card {
  background: radial-gradient(circle at top left, rgba(252, 189, 1, 0.15), rgba(1, 9, 24, 0.95));
  border-radius: var(--radius-xl);
  padding: 18px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.home-hero-card-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.home-hero-card-value {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.home-hero-card-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================
   HOME – BUSINESS BRIEF
========================================= */

.home-brief-section {
  padding-top: 40px;
}

.home-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.home-brief-card {
  background: #ffffff; /* white card */
  border-radius: var(--radius-lg);
  padding: 20px 18px;

  border: 2px solid #fcbd01; /* SOLAR YELLOW BORDER */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);

  transition: 
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.home-brief-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #111;
}

.home-brief-card p {
  font-size: 14px;
  color: #444;
}

.home-brief-card:hover {
  transform: translateY(-4px);
  background: #808080; /* grey hover */
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Text color on hover */
.home-brief-card:hover h3,
.home-brief-card:hover p {
  color: #ffffff;
}

/* =========================================
   HOME – SERVICES OVERVIEW
========================================= */

.home-services-section {
  padding-top: 70px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-service-card {
  background: #ffffff; /* WHITE */
  border-radius: var(--radius-lg);
  padding: 20px 18px;

  border: 2px solid #fcbd01; /* YELLOW BORDER */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.home-service-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
}

.home-service-card p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 12px;
  color: #111;
}

.home-card-link {
  font-size: 13px;
  text-decoration: none;
  color: #016ab8; /* brand blue */
  font-weight: 500;
}

.home-service-card:hover {
  transform: translateY(-4px);
  background: #808080; /* GREY hover */
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

/* Text & link on hover */
.home-service-card:hover h3,
.home-service-card:hover p,
.home-service-card:hover .home-card-link {
  color: #ffffff;
}

/* =========================================
   HOME – WHY CHOOSE US
========================================= */

.home-why-section {
  padding-top: 80px;
}

.home-why-inner {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.home-why-text h2 {
  font-size: 28px;
  color: #fafafa;
  margin-bottom: 14px;
}

.home-why-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #fafafa;
  font-size: 14px;
}

.home-why-list li::before {
  content: "✓ ";
  color: #fafafa;
}

.home-why-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-why-stat-card {
  background: #ffffff;            /* WHITE */
  border-radius: var(--radius-lg);
  border: 2px solid #fcbd01;      /* YELLOW BORDER */
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);

}

.home-why-stat-number {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.home-why-stat-label {
  font-size: 13px;
  color: #444;
}

.home-why-stat-card:hover {
  transform: translateY(-3px);
  background: #808080;      /* GREY hover */
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.home-why-stat-card:hover .home-why-stat-number,
.home-why-stat-card:hover .home-why-stat-label {
  color: #ffffff;
}
/* =========================================
   HOME – FEATURED PROJECTS PREVIEW
========================================= */

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.home-project-card {
  background: #ffffff; /* WHITE */
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;

  border: 2px solid #fcbd01; /* YELLOW BORDER */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.home-project-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111;
}

.home-project-card p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #444;
}

.home-project-card:hover {
  transform: translateY(-4px);
  background: #808080; /* GREY hover */
  border-color: #fcbd01; /* keep yellow */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

/* Make all text readable on grey */
.home-project-card:hover h3,
.home-project-card:hover p,
.home-project-card:hover .home-card-link {
  color: #ffffff;
}

.home-projects-cta {
  text-align: center;
  color: #fafafa;
  margin-top: 26px;
}

@media (min-width: 993px) {
  .home-projects-grid .home-project-card:nth-child(4) {
    grid-column: 2;
  }
}

/* =========================================
   HOME – FEATURED PROJECTS PREVIEW (FIX)
========================================= */

/* 1) Tablet: 2 columns */
@media (max-width: 992px) {
  .home-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  @media (min-width: 993px) {
  .home-projects-grid .home-project-card:nth-child(4) {
    grid-column: 2;
  }
}

}

/* 2) Mobile: 1 column (best look + fixes skinny cards) */
@media (max-width: 600px) {
  .home-projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-project-card {
    width: 100%;
    padding: 16px;
  }

  .home-project-card h3 {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .home-project-card p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;

    /* prevent the ugly narrow-word stacking */
    overflow-wrap: anywhere;
    word-break: normal;
  }

  /* optional: keep link neat */
  .home-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
  text-decoration: none;
  color: #016ab8; /* brand blue */
  font-weight: 500;
  }
}


/* =========================================
   HOME – PACKAGES & ROI PREVIEW
========================================= */

.home-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.home-package-card {
  background: #ffffff; /* WHITE */
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;

  border: 2px solid #fcbd01; /* YELLOW BORDER */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.home-package-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
}

.home-package-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.home-package-card ul li::before {
  content: "• ";
  color: #fcbd01; /* yellow bullet looks premium */
}

.home-package-card:hover {
  transform: translateY(-4px);
  background: #808080; /* GREY hover */
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

/* Make all text readable on grey */
.home-package-card:hover h3,
.home-package-card:hover ul,
.home-package-card:hover .home-card-link {
  color: #ffffff;
}

/* Bullet color on hover */
.home-package-card:hover ul li::before {
  color: #ffffff;
}
/* =========================================
/* Trusted Partners */
/* =========================================*/
.trusted-partners{
  padding-bottom: 120px;
  padding: 70px 16px 130px;  /* ⬅️ bottom space increased */
  background:#fff;
}

.tp-inner{
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.trusted-partners h2{
  font-size: 34px;
  margin: 0 0 26px;
  color:#1f5bd6; /* your screenshot vibe */
  font-weight: 700;
}

.tp-subtext{
  max-width: 720px;
  margin: 20px auto 0;
  color:#6b7280;
  line-height: 1.6;
  font-size: 14.5px;
}

.tp-marquee{
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  /* nice fade on left/right edges like premium sliders */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.tp-track{
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: scrollLoop 28s linear infinite;
}

@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tp-marquee:hover .tp-track{
  animation-play-state: paused;
}

.tp-card{
  width: 210px;
  height: 90px;
  background: #fff;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 14px 18px;  /* ⬅️ more breathing room */
  flex: 0 0 auto;
}

.tp-card img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px){
  .tp-card{
    width: 155px;
    height: 68px;
  }
}

@media (max-width: 768px){
  .trusted-partners{ padding: 50px 14px; }
  .trusted-partners h2{ font-size: 26px; }
  .tp-card{ width: 130px; height: 54px; }
  .tp-track{ gap: 18px; }
}

@keyframes tp-scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}



/* =========================================
   HOME – BLOG PREVIEW
========================================= */

.home-blog-section{
  padding-top: 120px;   /* ⬅️ gap from Trusted Partners */
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.home-blog-card {
  background: #ffffff; /* WHITE */
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;

  border: 2px solid #fcbd01; /* YELLOW BORDER */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.home-blog-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111;
}

.home-blog-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.home-blog-card:hover {
  transform: translateY(-4px);
  background: #808080; /* GREY hover */
  border-color: #fcbd01; /* keep yellow */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.home-blog-card:hover h3,
.home-blog-card:hover p,
.home-blog-card:hover .home-card-link {
  color: #ffffff;
}

/* =========================================
   HOME – FINAL CTA
========================================= */

.home-final-cta-section {
  padding-top: 60px 20px;
}

.home-final-cta-inner {
  text-align: center;
  background: radial-gradient(circle at top, #016ab84d, #000000f2);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  max-width: 1100px;   /* controls box width */
  margin: 0 auto;      /* centers the box */
}

.home-final-cta-inner h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.home-final-cta-inner p {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 16px;
}

.home-final-cta-inner .btn-primary {
  display: inline-block;   /* prevents full-width */
  width: auto;             /* force it to fit content */
  padding: 12px 26px;       /* smaller button */
  font-size: 14px;
  border-radius: 999px;     /* nice pill shape */
}

/* =========================================
   GLOBAL FOOTER (PRO LOOK + SPACING FIX)
========================================= */

.site-footer {
  background: #020713;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 22px; /* more breathing */
}

/* Constrains content + adds proper side padding */
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  column-gap: 70px;
  row-gap: 34px;
  align-items: start;
}

/* Headings */
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;   /* spacing under title */
  letter-spacing: 0.2px;
  color: #ffffff;
}

/* Body text */
.footer-col p {
  margin: 0 0 10px;   /* ✅ this fixes the “collided” feeling */
  font-size: 13px;
  line-height: 1.6;   /* ✅ readable */
  color: var(--text-muted);
}

/* Lists */
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;           /* ✅ consistent spacing */
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: var(--yellow-main);
  transform: translateX(2px);
}

/* Bottom bar */
.footer-bottom {
  width: min(1200px, 100% - 64px);
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 44px 0 18px;
  }

  .footer-inner,
  .footer-bottom {
    max-width:1100px;        /* ⬅️ tighter, more premium */
  padding-left:20px;       /* ⬅️ guaranteed side space */
  padding-right:20px;
  margin-left: auto;
  margin-right: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }
}


/* =========================================
   ANIMATIONS (for all pages) – FIXED
========================================= */

/* Default hidden state for all scroll animations */
.home-anim-fade-up,
.home-anim-fade-right,
.home-anim-card,
.about-anim-fade-up,
.about-anim-card,
.services-anim-fade-up,
.services-anim-card,
.projects-anim-fade-up,
.projects-anim-card,
.packages-anim-fade-up,
.packages-anim-card,
.blogs-anim-fade-up,
.blogs-anim-card,
.contact-anim-fade-up,
.contact-anim-card {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Fix direction for "fade-right" elements */
.home-anim-fade-right {
  transform: translateX(25px);
}

/* Reveal baseline (no animation yet, just becomes visible) */
.animate-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ✅ Animate ONLY when visible (this is the key fix) */
.animate-visible.home-anim-fade-up {
  animation: fadeUp 0.8s var(--transition-med, ease) both;
}

.animate-visible.home-anim-fade-right {
  animation: fadeRight 0.9s var(--transition-med, ease) both;
}

.animate-visible.home-anim-card {
  animation: cardPop 0.7s var(--transition-med, ease) both;
}


/* =========================================
   RESPONSIVE STYLES
========================================= */

@media (max-width: 992px) {
  .home-hero-inner,
  .home-why-inner {
    grid-template-columns: 1fr;
  }

  .home-hero-media {
    order: -1;
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-projects-grid,
  .home-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none; /* JS can toggle this later */
  }

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 60px 0;
  }

  .home-hero-inner {
    gap: 28px;
  }

  .home-hero-content h1 {
    font-size: 30px;
  }

  .home-brief-grid,
  .home-services-grid,
  .home-projects-grid,
  .home-packages-grid,
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   ABOUT PAGE STYLES
========================================= */

/* ===================== ABOUT HERO VIDEO BACKGROUND ===================== */

.about-hero-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0; /* adjust hero height */
}

/* Video Wrapper */
.about-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/* Video */
.about-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

/* Overlay for readability */
.about-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(255,255,255,1) 0%, rgba(0,61,107,0.15) 100%);

  opacity: 0.75;
}

/* Ensure text stays visible */
.about-hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}

.about-hero-inner h1 {
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0,0,0,0.45);
}

.about-hero-inner p {
  color: #e8f3ff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}


.about-body {
  background: radial-gradient(circle at top, #000035 10%, #1466ad 70%, #000052 100%);
}

.about-hero-section {
  padding: 110px 0 70px;
  text-align: center;
}

.about-hero-inner h1 {
  font-size: 42px;
  margin-bottom: 14px;
}

.about-hero-inner p {
  max-width: 760px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 18px;
}

/* Story */
.about-story-grid,
.about-values-grid,
.about-stats-grid {
  display: grid;
  gap: 22px;
  max-width: 1100px; /* controls total width */
  margin: 0 auto;   /* centers grid */
}

.about-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-story-card,
.about-value-card,
.about-stat-card {
  background: #ffffff;              /* WHITE */
  border: 2px solid #fcbd01;        /* YELLOW BORDER */
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.about-story-card:hover,
.about-value-card:hover,
.about-stat-card:hover {
  transform: translateY(-4px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.about-story-card:hover h3,
.about-story-card:hover p,
.about-value-card:hover h3,
.about-value-card:hover p,
.about-stat-card:hover h3,
.about-stat-card:hover p, 
.about-stat-number:hover,
.about-stat-label:hover{
  color: #ffffff;
}

/* Mission & Vision */
.about-mission-wrapper {
  display: grid;
  gap: 26px;
  max-width: 1100px;  /* controls total width */
  margin: 0 auto;    /* centers from both sides */
}

.about-mission-block {
  background: #fafafa;
  padding: 32px 26px;
  border-radius: var(--radius-xl);
  border: 2px solid #fcbd01;
  box-shadow: var(--shadow-soft);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.about-mission-block:hover {
  transform: translateY(-4px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}
.about-mission-block:hover h2,
.about-mission-block:hover p {
  color: #fafafa;
}

/* Stats */ 
.about-stat-number { 
    font-size: 18px; 
    font-weight: 700; 
    display: block; 
    margin-bottom: 6px; 
    color: #111; }

.about-stat-label{
    color: #111;
}

/* CTA */

.about-final-cta-section {
  padding: 60px 20px; /* space from screen edges */
}

.about-final-cta-inner {
  text-align: center;
  background: radial-gradient(circle at top, rgba(1, 106, 184, 0.3), rgba(0, 0, 0, 0.95));
  border-radius: var(--radius-xl);
  padding: 40px 30px;

  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);

  max-width: 1000px; /* controls width */
  margin: 0 auto;    /* centers the box */
}

.about-final-cta-inner .btn-primary{
    display: inline-block;  /* prevents full width */
  width: auto;

  padding: 12px 26px;     /* smaller button */
  font-size: 14px;
  border-radius: 999px;   /* pill look */
}

/* Responsive */
@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

/* Center all About page section headers */
.about-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

/* Center text inside grids & cards */
.about-story-card,
.about-value-card,
.about-stat-card,
.about-mission-block {
  text-align: center;
}

.about-body p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-story-section,
.about-mission-section,
.about-values-section,
.about-stats-section {
  text-align: center;
  padding: 80px 20px;
}

.about-story-card h3,
.about-mission-section h2,
.about-value-card h3,
.about-stat-card h3 {
  color: #111;
}

.about-story-card p,
.about-mission-section p,
.about-value-card p,
.about-stat-card p {
  color: #444;
}

/* Leadership & Core Team */
.about-team-section {
  padding: 80px 0;
  text-align: center;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 35px;
}

.about-team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid #fcbd01;
  padding: 26px 20px 30px;
  box-shadow: var(--shadow-soft);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.about-team-card:hover {
  transform: translateY(-6px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.about-team-card:hover h3,
.about-team-card:hover .team-role,
.about-team-card:hover .team-bio {
  color: #ffffff;
}

.about-team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 3px solid rgba(252,189,1,0.55);
}

.about-team-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #444;
}

.team-role {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 14px;
  color: #444;
  line-height: 1.45;
  max-width: 260px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SERVICES PAGE
========================================= */

/* ===============================
   SERVICES HERO VIDEO BACKGROUND
=============================== */

.services-hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video Styling */
.services-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 25, 50, 0.55); /* Slightly lighter than before */
  z-index: -1;
}

/* Text Container */
.services-hero-inner {
  position: relative;
  text-align: center;
  max-width: 850px;
  padding: 20px;
  color: #ffffff;
}

/* Headings */
.services-hero-inner h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Paragraph */
.services-hero-inner p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
}

.services-body {
  background: radial-gradient(circle at top, #000035 10%, #1466ad 70%, #000052 100%);
}

/* Hero */
.services-hero-section {
  padding: 110px 0 70px;
  text-align: center;
}

.services-hero-inner h1 {
  font-size: 42px;
  margin-bottom: 14px;
}

.services-hero-inner p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  color: #ffffff;
}

/* Section Header */
.services-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

/* Core Services Grid */
.services-grid {
  display: grid;
  gap: 22px;

  max-width: 1200px; /* controls total width */
  margin: 0 auto;    /* centers grid */

  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-core-section {
  padding: 80px 20px; /* spacing from screen edges */
}

.services-card {
  background: #ffffff;              /* WHITE */
  border-radius: var(--radius-lg);
  padding: 26px 22px;

  border: 2px solid #fcbd01;        /* YELLOW BORDER */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.services-card:hover {
  transform: translateY(-4px);
  background: #808080; /* GREY hover */
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.services-card:hover h3,
.services-card:hover ul,
.services-card:hover li {
  color: #ffffff;
}

.services-card:hover ul li::before {
  color: #ffffff;
}


.services-card h3 {
  font-size: 17px;
  margin-bottom: 14px;
  color: #111;
}

.services-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #444;
}

.services-card ul li::before {
  content: "• ";
  color: #fcbd01; /* yellow bullets */
}

/* Process Section */

.services-process-section {
  padding: 80px 20px;
}

.services-process-grid {
  display: grid;
  gap: 22px;

  max-width: 1200px;
  margin: 0 auto;

  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.services-process-card {
  background: #ffffff;
  border: 2px solid #fcbd01;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.services-process-card:hover {
  transform: translateY(-4px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.services-process-card:hover h3,
.services-process-card:hover p,
.services-process-card:hover .step-number {
  color: #ffffff;
}

.services-process-card h3 {
  font-size: 16px;
  margin: 10px 0 8px;
  color: #111;
}

.services-process-card p {
  font-size: 14px;
  color: #444;
}

.services-process-card .step-number {
  display: inline-block;
  font-size: 34px;
  font-weight: 800;
  color: #016ab8; /* brand blue */
  margin-bottom: 6px;
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: #1466ad;
  display: block;
  margin-bottom: 8px;
}

/* Trust Section */
.services-trust-grid {
  display: grid;
  gap: 22px;

  max-width: 1200px;
  margin: 0 auto;

  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-trust-card {
  background: #ffffff;
  border: 2px solid #fcbd01;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.services-trust-card:hover {
  transform: translateY(-4px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.services-trust-card:hover h3,
.services-trust-card:hover p {
  color: #ffffff;
}

.services-trust-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #111;
}

.services-trust-card p {
  font-size: 14px;
  color: #444;
}

/* CTA */
.services-final-cta-inner {
  text-align: center;
  background: radial-gradient(
    circle at top,
    rgba(1, 106, 184, 0.35),
    rgba(0, 0, 0, 0.95)
  );

  border-radius: var(--radius-xl);
  padding: 40px 30px;

  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);

  max-width: 1000px; /* SAME as other CTAs */
  margin: 0 auto;    /* centers it */
}

.services-final-cta-section {
  padding: 60px 20px; /* space from viewport edges */
}

.services-final-cta-inner .btn-primary {
  display: inline-block;
  width: auto;

  padding: 12px 26px;
  font-size: 14px;
  border-radius: 999px; /* pill button */
}

/* Responsive */

@media (max-width: 600px) {
  .services-final-cta-inner {
    padding: 28px 18px;
  }

  .services-final-cta-inner h2 {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .services-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .services-grid,
  .services-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .services-grid,
  .services-process-grid,
  .services-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .services-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 750px) {
  .services-process-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   PROJECTS PAGE (OVERVIEW)
========================================= */

/* ==============================
   PROJECTS HERO WITH VIDEO BG
============================== */

.projects-hero-section.with-video {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

/* Background video */
.projects-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay */
.projects-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 60, 0.55); /* dark tint for readability */
    z-index: 2;
}

/* Actual text/content */
.projects-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    color: #fff;
    padding: 20px;
}

.projects-hero-inner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.projects-hero-inner p {
    font-size: 18px;
    line-height: 1.55;
    color: #e8ecf3;
    margin-bottom: 25px;
}

/* Filter buttons */
.projects-filter-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.projects-filter-btn {
    padding: 12px 26px;
    background: #016ab8;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.projects-filter-btn:hover {
    background: #004d8a;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .projects-hero-inner h1 {
        font-size: 30px;
    }

    .projects-hero-section.with-video {
        height: 380px;
    }
}


/* ===============================
   RESIDENTIAL PROJECTS HERO VIDEO
=============================== */

.projects-hero-section {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Video */
.projects-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.projects-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 25, 50, 0.55); /* perfect contrast */
  z-index: -1;
}

/* Text Container */
.projects-hero-inner {
  position: relative;
  text-align: center;
  max-width: 850px;
  padding: 20px;
  color: #ffffff;
}

/* Heading */
.projects-hero-inner h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Paragraph */
.projects-hero-inner p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
}


.projects-body {
  background: radial-gradient(circle at top, #000035 10%, #1466ad 70%, #000052 100%);
}

/* Hero */
.projects-hero-section {
  padding: 110px 0 70px;
  text-align: center;
}

.projects-hero-inner h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.projects-hero-inner p {
  max-width: 780px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: 17px;
}

/* Filter buttons */
.projects-filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.projects-filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  color: var(--text-main);
  text-decoration: none;
  background: rgba(1,106,184,0.25);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.projects-filter-btn:hover {
  background: rgba(252,189,1,0.9);
  color: #0a1524;
  border-color: rgba(252,189,1,1);
  transform: translateY(-1px);
}

/* Category Section */
.projects-category-section {
   padding: 80px 20px;
}

.projects-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.projects-category-grid {
  display: grid;
  gap: 22px;

  max-width: 1200px;
  margin: 0 auto;

  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.projects-category-card {
  background: #ffffff;
  border: 2px solid #fcbd01;
  border-radius: var(--radius-xl);
  padding: 26px 22px;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.projects-category-card:hover {
  transform: translateY(-4px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.projects-category-card:hover h3,
.projects-category-card:hover p,
.projects-category-card:hover .projects-category-tag,
.projects-category-card:hover .projects-category-points,
.projects-category-card:hover .home-card-link {
  color: #ffffff;
}

.projects-category-card:hover .projects-category-points li::before {
  color: #ffffff;
}

.projects-category-card h3 {
  color: #111;
  margin-bottom: 8px;
  font-size: 18px;
}

.projects-category-tag {
  font-size: 13px;
  font-weight: 600;
  color: #016ab8; /* brand blue */
  margin-bottom: 12px;
}

.projects-category-card p {
  color: #444;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
  
}

.projects-category-points {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  color: #444;
  font-size: 14px;
}

.projects-category-points li::before {
  content: "• ";
  color: #fcbd01; /* yellow bullets */
}

.projects-category-card .home-card-link {
  display: inline-block;
  margin-top: 4px;
  color: #016ab8;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

/* Stats strip */
.projects-stats-section {
  padding: 60px 0;
}

.projects-stats-grid {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.projects-stat-card {
  background: #031426;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 22px 20px;
  text-align: center;
}

.projects-stat-number {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.projects-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA */
.projects-final-cta-inner {
   text-align: center;
  background: radial-gradient(
    circle at top,
    rgba(1,106,184,0.3),
    rgba(0,0,0,0.95)
  );

  border-radius: var(--radius-xl);
  padding: 40px 30px;

  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);

  max-width: 1000px; /* SAME as other CTAs */
  margin: 0 auto;    /* centers the box */
}

.projects-final-cta-section {
  padding: 60px 20px; /* consistent with other CTAs */
}

.projects-final-cta-inner .btn-primary {
  display: inline-block;
  width: auto;

  padding: 12px 26px;
  font-size: 14px;
  border-radius: 999px; /* pill button */
}

/* Responsive */
@media (max-width: 1050px) {
  .projects-category-grid,
  .projects-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .projects-category-grid,
  .projects-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .projects-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .projects-final-cta-inner {
    padding: 28px 18px;
  }

  .projects-final-cta-inner h2 {
    font-size: 22px;
  }
}

/* Residential Projects Page Structure */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.project-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid #fcbd01;
  padding: 22px 20px 24px;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-6px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.project-card h3 {
  color: #111;
}

.project-location {
  font-size: 13px;
  color: #016ab8; /* brand blue */
  margin-bottom: 10px;
}

.project-details {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 8px;

  font-size: 14px;
  color: #444; /* dark on white */
}

/* Video Showcase */
.projects-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.project-details li::before {
  content: "• ";
  color: #fcbd01; /* yellow bullets */
}

.project-card:hover h3,
.project-card:hover .project-location,
.project-card:hover .project-details {
  color: #ffffff;
}

.project-card:hover .project-details li::before {
  color: #ffffff;
}

.project-video-card {
  background: #041423;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.project-video-card iframe,
.project-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
}

/* Responsive */
@media (max-width: 1050px) {
  .projects-grid,
  .projects-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .projects-grid,
  .projects-video-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Residential Image Slider ===== */

.projects-slider-section {
  padding: 65px 0;
}

.projects-slider-container {
  position: relative;
  width: min(1000px, 94%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: #041424;
  box-shadow: var(--shadow-soft);
}

.projects-slider {
  display: flex;
  transition: transform 0.6s ease;
  position: relative;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: none;
  min-height: 450px;
}

.slide.active {
  opacity: 1;
  display: block;
}

.slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

/* Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252, 189, 1, 0.9);
  border: none;
  padding: 10px 14px;
  font-size: 22px;
  border-radius: 8px;
  cursor: pointer;
  color: #051625;
  transition: background 0.25s ease;
}

.slider-btn:hover {
  background: rgba(252, 189, 1, 1);
}

.prev {
  left: 18px;
}

.next {
  right: 18px;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 18px;
}

.slider-dots div {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-dots .active {
  background: var(--yellow-main);
  transform: scale(1.25);
}

/* Responsive */
@media (max-width: 600px) {
  .slide img {
    height: 280px;
  }
}

/* ============================================
   COMMERCIAL PROJECTS — VIDEO HERO SECTION
=========================================== */

.commercial-hero.with-video {
    position: relative;
    width: 100%;
    height: 400px;                     /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Background Video */
.commercial-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay for readability */
.commercial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 60, 0.45);   /* Same dark overlay used everywhere */
    z-index: 2;
}

/* Text Layer */
.commercial-hero-content {
    position: relative;
    z-index: 5;  /* ensures above video & overlay */
    max-width: 900px;
    padding: 20px 40px;
    color: #ffffff;
}

.commercial-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.commercial-hero-content p {
    font-size: 20px;
    color: #e6e6e6;
    line-height: 1.6;
}


/* ===============================
   RESPONSIVE FIXES
=============================== */

@media (max-width: 768px) {
    .commercial-hero.with-video {
        height: 300px;
    }

    .commercial-hero-content h1 {
        font-size: 32px;
    }

    .commercial-hero-content p {
        font-size: 17px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .commercial-hero.with-video {
        height: 260px;
    }

    .commercial-hero-content h1 {
        font-size: 26px;
    }
}

/* ===================================================
   INDUSTRIAL HERO — VIDEO BACKGROUND
=================================================== */

.industrial-hero {
    position: relative;
    width: 100%;
    height: 420px;          /* same height pattern */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
    color: #fff;
}

/* Background Video */
.industrial-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Dark Overlay */
.industrial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 15, 40, 0.50); /* consistent dark overlay */
    z-index: 2;
}

/* Content Above Video */
.industrial-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.industrial-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.industrial-hero-content p {
    font-size: 20px;
    color: #e6e6e6;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .industrial-hero {
        height: 360px;
    }

    .industrial-hero-content h1 {
        font-size: 32px;
    }

    .industrial-hero-content p {
        font-size: 18px;
    }
}

/* =========================
   PACKAGES + ROI PAGE
========================= */

/* ============================
   PACKAGES ROI HERO
============================ */

.packages-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.packages-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.packages-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 80, 0.55);
    z-index: 2;
}

.packages-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.packages-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.packages-hero-content p {
    font-size: 20px;
    margin-top: 10px;
    color: #e8e8e8;
}

.packages-roi-body {
  background: linear-gradient(to bottom, #000035 10%, #1466ad 70%, #000052 100%);
}

/* HERO */
.packages-roi-hero-section {
  padding: 110px 0 70px;
  text-align: center;
}

.packages-section,
.roi-section {
 padding: 60px 20px;
}

.packages-section {
  padding: 60px 20px;
}

.packages-section-header,
.roi-section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* PACKAGES GRID */
.packages-grid {
  display: grid;
  gap: 24px;

  max-width: 1200px;
  margin: 0 auto;

  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 26px 22px;

  border: 2px solid #fcbd01;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.package-card h2 {
  font-size: 20px;
  margin: 0 0 14px;
  color: #111;
}

.package-card:hover {
   transform: translateY(-4px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.package-card:hover h2,
.package-card:hover .package-list li {
  color: #ffffff;
}

.package-card:hover .package-list li::before {
  color: #ffffff;
}

.package-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: #ffffff;
}

/* Bullet list for package cards */
.package-list {
  list-style: none;   /* we’ll use custom bullets */
  margin: 0;
  padding: 0;

  display: grid;
  gap: 10px;   
}

.package-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.package-list li::before {
  content: "• ";
  color: #fcbd01;
  font-weight: 700;
}


/* ROI TABLES */
.roi-table-container {
  display: grid;
  gap: 24px;

  max-width: 1100px;
  margin: 0 auto;

  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roi-table {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 26px 22px;

  border: 2px solid #fcbd01;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.roi-table h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #111;
}

.roi-table ul {
   list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 10px;
}

.roi-table ul li {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.roi-table ul li::before {
  content: "• ";
  color: #fcbd01;
  font-weight: 700;
}

.roi-table:hover {
  transform: translateY(-4px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.roi-table:hover h3,
.roi-table:hover ul li {
  color: #ffffff;
}

.roi-table:hover ul li::before {
  color: #ffffff;
}

/* ROI SAVINGS */
.roi-savings-grid {
  display: grid;
  gap: 24px;

  max-width: 1100px;
  margin: 0 auto;

  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roi-savings-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 26px 22px;

  border: 2px solid #fcbd01;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.roi-savings-card:hover {
  transform: translateY(-4px);
  background: #808080;
  border-color: #fcbd01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.roi-savings-card:hover h3,
.roi-savings-card:hover p {
  color: #ffffff;
}

.roi-savings-card h3 {
  color: #111;
  margin-bottom: 10px;
}

.roi-savings-card p {
  color: #444;
  margin: 0 0 8px;
  line-height: 1.6;
  font-size: 14px;
}

/* CTA */
.packages-roi-final-cta-inner {
  text-align: center;

  background: radial-gradient(
    circle at top,
    rgba(1, 106, 184, 0.35),
    rgba(0, 0, 0, 0.95)
  );

  border-radius: var(--radius-xl);
  padding: 40px 30px;

  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);

  max-width: 1000px;   /* controls width */
  margin: 0 auto;      /* centers horizontally */
}

.packages-roi-final-cta-section {
  padding: 60px 20px; /* space from screen edges */
}

.packages-roi-final-cta-inner .btn-primary {
  display: inline-block;
  width: auto;

  padding: 12px 26px;
  font-size: 14px;
  border-radius: 999px; /* pill shape */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .packages-grid,
  .roi-table-container {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 600px) {
  .packages-grid,
  .roi-table-container,
  .roi-savings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .packages-roi-final-cta-inner {
    padding: 28px 18px;
  }

  .packages-roi-final-cta-inner h2 {
    font-size: 22px;
  }
}

/* ============================================================
   BLOGS PAGE — FULL & CORRECT STYLING
   Prefix used: blogs-*
   Safe — no conflict with any other page
============================================================ */

/* ============================
   BLOGS HERO — VIDEO BG
============================ */

.blogs-hero.with-video {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.blogs-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.blogs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 18, 40, 0.55);
    z-index: 2;
}

.blogs-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.blogs-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.blogs-hero-content p {
    font-size: 20px;
    color: #e6e6e6;
    margin-top: 10px;
}

/* PAGE BASE */
.blogs-body {
  background: linear-gradient(to bottom, #000035 10%, #1466ad 70%, #000052 100%);
  color: #ffffff;
}

/* HERO */
.blogs-hero-section {
  padding: 120px 0 70px;
  text-align: center;
}

.blogs-hero-inner h1 {
  font-size: 44px;
  margin-bottom: 12px;
}

.blogs-hero-inner p {
  max-width: 750px;
  margin: auto;
  font-size: 20px;
  color: #cdd9e5;
}

/* CATEGORY BAR */
.blogs-category-section {
  margin: 30px 0 40px;
}

.blogs-category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.blogs-category-btn {
  background: #041423;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  color: #eaeaea;
  transition: 0.3s ease;
}

.blogs-category-btn:hover,
.blogs-category-btn.active {
  background: #fcbd01;
  color: #041423;
  font-weight: 600;
}

/* GRID */
.blogs-grid-section {
  padding: 20px 20px 60px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 26px;
}

/* INDIVIDUAL CARD */
.blogs-card {
  background: #041423;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  transition: 0.3s ease;
}

.blogs-card:hover {
  transform: translateY(-6px);
  border-color: #fcbd01;
}

.blogs-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CARD CONTENT */
.blogs-card-content {
  padding: 22px;
}

.blogs-card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.blogs-card-content p {
  color: #b8c4cf;
  margin-bottom: 16px;
  line-height: 1.5;
}

.blogs-read-btn {
  display: inline-block;
  background: #fcbd01;
  color: #041423;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.blogs-read-btn:hover {
  background: #ffd85f;
}

/* PAGINATION */
.blogs-pagination-section {
  text-align: center;
  padding-bottom: 60px;
}

.blogs-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.blogs-page-btn {
  background: #041423;
  border: 1px solid rgba(255,255,255,0.10);
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.blogs-page-btn:hover,
.blogs-page-btn.active {
  background: #fcbd01;
  color: #041423;
  font-weight: 600;
}

/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
  .blogs-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-card-img {
    height: 200px;
  }

  .blogs-hero-inner h1 {
    font-size: 36px;
  }

  .blogs-hero-inner p {
    font-size: 18px;
  }
}

/* OPTIONAL — SMOOTH ANIMATIONS (if you use these classes) */
.blogs-anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.blogs-anim-card {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.8s ease;
}

.blogs-anim-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ================================================================
   BLOG ARTICLE PAGE STYLING (For pages like blog-1, blog-2, etc.)
   All classes are prefixed with blog-article-* so nothing conflicts
================================================================ */

/* ----------- PAGE BACKGROUND + TEXT ----------- */
.blog-article-body {
  background: radial-gradient(circle at center, #000035 10%, #1466ad 70%, #000052 100%);
  color: #ffffff;            /* Global text color */
  font-family: inherit;      /* Keeps your global font settings */
}



/* ================================================================
   HERO SECTION — Title, subtitle, top banner image
================================================================ */
.blog-article-hero {
  text-align: center;
  padding: 120px 20px 40px; /* Top space so navbar doesn't overlap */
}

.blog-article-hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.blog-article-subtitle {
  max-width: 750px;
  margin: 0 auto;
  font-size: 20px;
  color: #cdd9e5; /* Softer tone for subtitle */
}

/* Main hero image */
.blog-hero-img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;       /* Smooth rounded edges */
  margin-top: 25px;
}



/* ================================================================
   ARTICLE CONTENT SECTION
================================================================ */
.blog-article-content {
  max-width: 900px;          /* Perfect reading width */
  margin: auto;
  padding: 40px 20px 80px;   /* Bottom padding for breathing room */
  line-height: 1.7;          /* Professional readability */
}

/* Main section headings (H2) */
.blog-article-content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 30px;
}

/* Subsection headings (H3) */
.blog-article-content h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 22px;
}

/* Normal paragraphs */
.blog-article-content p {
  color: #e1e7ee;
  margin-bottom: 14px;
}

/* Lists inside the article */
.blog-article-content ul {
  margin: 12px 0 20px 20px;
  padding: 0;
  color: #d5dee8;
}

.blog-article-content ul li {
  margin-bottom: 8px;
}



/* ================================================================
   HIGHLIGHT BOX — Important notes or warnings
================================================================ */
.blog-highlight {
  background: rgba(255,255,255,0.1); /* Soft transparent box */
  padding: 15px 20px;
  border-left: 4px solid #fcbd01;    /* Your brand yellow */
  border-radius: 6px;
  margin: 20px 0;
}



/* ================================================================
   TABLES — For comparison charts or timelines
================================================================ */
.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 16px;
}

.blog-table th,
.blog-table td {
  border: 1px solid rgba(255,255,255,0.15);  /* Soft table border */
  padding: 12px 16px;
  text-align: left;
}

.blog-table th {
  background: rgba(255,255,255,0.08);
  font-weight: 600;
}



/* ================================================================
   CTA BOX — Call to action at bottom of article
================================================================ */
.blog-cta-box {
  background: rgba(1,106,184,0.18); /* Transparent blue */
  padding: 30px;
  text-align: center;
  margin-top: 60px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
}

.blog-cta-box h3 {
  margin-bottom: 12px;
}



/* ================================================================
   RESPONSIVE ADJUSTMENTS — Mobile/tablet
================================================================ */

@media (max-width: 768px) {

  /* Make title slightly smaller */
  .blog-article-hero h1 {
    font-size: 32px;
  }

  .blog-article-subtitle {
    font-size: 18px;
  }

  /* Reduce heading sizes */
  .blog-article-content h2 {
    font-size: 26px;
  }

  .blog-article-content h3 {
    font-size: 20px;
  }

  /* Reduce padding for smaller screens */
  .blog-article-content {
    padding: 30px 18px 60px;
  }

  .blog-hero-img {
    max-width: 100%;
  }
}


/* ============================================================
   GET A QUOTE PAGE – 360Sol.pk
   Standalone CSS for contact.html
   All classes are page-unique to avoid conflicts.
============================================================ */

/* ================================
   GET A QUOTE HERO – VIDEO BG
================================ */

.quote-hero-section.with-video {
    position: relative;
    height: 350px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 18, 40, 0.55);
    z-index: 2;
}

.quote-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 20px;
    color: #fff;
}

.quote-hero-inner h1 {
    font-size: 40px;
}

.quote-hero-inner p {
    font-size: 18px;
    color: #e6e6e6;
}


/* ----------- GLOBAL PAGE WRAPPER ----------- */
.quote-hero,
.quote-section,
.roi-calc-section,
.load-calc-section {
  width: 100%;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #000035 10%, #1466ad 70%, #000052 100%);
  color: #e8f5ff;
}

.quote-hero h1,
.quote-section h2,
.roi-calc-section h2,
.load-calc-section h2 {
  font-size: 42px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 15px;
}

.quote-hero p,
.roi-calc-section p,
.load-calc-section p {
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 40px;
}



/* ============================================================
   HERO SECTION
============================================================ */

.quote-hero {
   background: radial-gradient(circle at top, #ffffff 0, #3bc7f1 45%, #016ab8 100%);
  padding-top: 140px; 
  padding-bottom: 140px;
  text-align: center;
}

.quote-hero h1 {
  font-size: 54px;
  font-weight: 700;
}



/* ============================================================
   QUOTE FORM
============================================================ */

.quote-section {
   background: radial-gradient(circle at top, #000035 10%, #1466ad 70%, #000052 100%);
}

.quote-container {
  max-width: 700px;
  margin: auto;
  padding: 40px;
  background: #0b2439;
  border-radius: 20px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.4);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-form h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}

.quote-form label {
  font-size: 16px;
  color: #d0e6ff;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid #1d3b57;
  background: #0f2a44;
  color: #ffffff;
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

.quote-form input[type="file"] {
  background: none;
  padding: 8px 0;
  border: none;
}

.btn-primary {
  width: 100%;
  margin-top: 15px;
  padding: 16px;
  background: #fcbd01;
  color: #001c33;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #ffcf45;
}



/* ============================================================
   ROI CALCULATOR
============================================================ */

.roi-calc-section {
  background: radial-gradient(circle at bottom, #000035 10%, #1466ad 70%, #000052 100%);
}

.roi-box {
  max-width: 650px;
  margin: auto;
  background: #0b283f;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.4);
}

.roi-box label {
  display: block;
  color: #d4e8ff;
  margin-bottom: 6px;
}

.roi-box input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: #10314c;
  border: 1px solid #1f415e;
  color: #ffffff;
  margin-bottom: 20px;
}

#roi_result {
  margin-top: 20px;
  padding: 20px;
  background: #0f334d;
  border-radius: 12px;
  color: #eaf6ff;
  text-align: center;
  font-size: 20px;
}



/* ============================================================
   LOAD CALCULATOR
============================================================ */

.load-calc-section {
  background: radial-gradient(circle at top, #000035 10%, #1466ad 70%, #000052 100%);
}

.load-box {
  max-width: 650px;
  margin: auto;
  background: #0b2437;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.4);
}

.load-box label {
  display: block;
  color: #d4e8ff;
  margin-bottom: 6px;
}

.load-box input {
  width: 100%;
  padding: 14px;
  background: #10314c;
  border: 1px solid #1f415e;
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
}

#load_result {
  margin-top: 20px;
  padding: 20px;
  background: #0f334d;
  border-radius: 12px;
  color: #eaf6ff;
  text-align: center;
  font-size: 20px;
}



/* ============================================================
   RESPONSIVE DESIGN
============================================================ */

@media (max-width: 768px) {

  .quote-hero h1 {
    font-size: 42px;
  }

  .quote-container,
  .roi-box,
  .load-box {
    padding: 24px;
  }

  .roi-calc-section h2,
  .load-calc-section h2,
  .quote-section h2 {
    font-size: 28px;
  }
}


/* ===================== MOBILE NAVIGATION (IMPROVED) ===================== */
@media (max-width: 850px) {

  /* Container should remain tight */
  .main-nav.nav-open {
    display: block;
    padding: 10px 0 30px;
  }

  /* Reduce vertical spacing */
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;   /* reduced from 15px */
  }

  /* Reduce font size for mobile */
  .nav-list li a {
    font-size: 18px;        /* was 20px */
    padding: 8px 0;         /* was 12px */
    display: block;
  }

  /* Fix spacing for dropdown arrow */
  .dropdown > a {
    padding-right: 10px;
  }

  /* Fix Get a Quote button size */
  .nav-link-cta {
    margin-top: 15px;
    padding: 8px 18px !important;
    font-size: 17px;
    border-radius: 30px;
    border: 2px solid var(--accent-yellow);
  }

  /* Fix button alignment */
  .nav-list li:last-child {
    margin-top: 8px;
  }

  /* Hamburger Icon */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 99999;
  }

  .nav-toggle span {
    height: 3px;
    width: 100%;
    background: #002544;
    border-radius: 5px;
    transition: 0.3s;
  }

  /* Close (X) Animation */
  .nav-toggle.toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-toggle.toggle-active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Disable hover behavior on mobile */
@media (max-width: 850px) {

  /* Prevent hover from opening dropdown */
  .dropdown:hover .dropdown-menu {
    display: none !important;
  }

  /* Open dropdown ONLY when JS adds .menu-open */
  .dropdown.menu-open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

/* ============================================
   MOBILE NAVIGATION — POLISHED & PROFESSIONAL
   ============================================ */
@media (max-width: 850px) {

  /* NAV CONTAINER FIX */
  .nav-container {
    padding: 12px 18px;
  }

  /* MAIN MOBILE PANEL */
  .main-nav.nav-open {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 25px 0 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  /* LOGO FIX – prevent shifting */
  .site-logo img {
    height: 42px;
  }

  /* NAV LIST CLEAN LOOK */
  .nav-list {
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 18px;
    padding: 8px 0;
  }

  /* --- DROPDOWN BUTTON BETTER ALIGNMENT --- */
  .dropdown > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  /* Dropdown Menu Box */
  .dropdown-menu {
    background: #f4f9ff;
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 12px 0;
    box-shadow: 0 5px 14px rgba(0,0,0,0.08);
  }

  /* Dropdown Links */
  .dropdown-menu li a {
    color: #002544 !important;
    font-size: 17px;
    padding: 10px 0;
    display: block;
  }

  /* Improve touch feedback */
  .dropdown-menu li a:hover {
    background: rgba(0, 106, 184, 0.08);
    color: #016ab8 !important;
  }

  /* CTA button refinement */
  .nav-link-cta {
    width: auto;
    margin-top: 12px;
    padding: 10px 20px !important;
    font-size: 18px;
    border-radius: 40px;
    border-width: 2px;
  }

  /* Prevent dropdown hover conflict */
  .dropdown:hover .dropdown-menu {
    display: none !important;
  }

  /* Only show when JS adds .menu-open */
  .dropdown.menu-open .dropdown-menu {
    display: block !important;
  }
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.whatsapp-float {
  position: fixed;
  width: 58px;
  height: 58px;
  bottom: 22px;
  right: 22px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

/* Mobile size */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

.quote-container form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row input,
.form-row textarea {
  width: 100%;
}

