/* ============================================
   SAHYADRI ENGINEERING & ELECTRICALS
   Premium Industrial Website Stylesheet
   ============================================ */

/* ========== ROOT VARIABLES ========== */
:root {
  --primary-red: #ea2011;
  --dark-red: #c41a0e;
  --dark-gray: #1f2937;
  --darker-gray: #111827;
  --yellow: #f5c400;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: clip;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--darker-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-red);
}

/* ========== FLOATING CTA BUTTONS ========== */
.floating-cta {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-scroll {
  background: linear-gradient(135deg, #ea2011 0%, #c41a0e 100%);
  color: #fff;
}

.cta-scroll:hover {
  box-shadow: 0 8px 30px rgba(234, 32, 17, 0.5) !important;
}

.cta-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-phone {
  background: var(--primary-red);
}

.cta-whatsapp {
  background: #25d366;
}

.cta-email {
  background: var(--yellow);
  color: var(--darker-gray);
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ========================================
   NAVBAR — two-row layout
   Row 1: Email | Logo | Address
   Row 2: Nav Links (centered)
======================================== */
.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: #fff;
  transition: all 0.4s ease;
}

.navbar-custom.scrolled {
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Transparent Navbar for specific pages */
.navbar-custom.transparent-nav {
  background: transparent;
  margin-bottom: -120px;
}

.navbar-custom.transparent-nav .nav-top-row {
  background: transparent;
}

.navbar-custom.transparent-nav .nav-links-row {
  background: transparent;
}

.navbar-custom.transparent-nav .nav-email a,
.navbar-custom.transparent-nav .nav-address,
.navbar-custom.transparent-nav .nav-logo-center .logo {
  color: #fff;
}

.navbar-custom.transparent-nav .nav-link {
  color: #fff;
}

.navbar-custom.transparent-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.navbar-custom.transparent-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-custom.transparent-nav .hamburger span {
  background: #fff;
}

.navbar-custom.transparent-nav.scrolled {
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-custom.transparent-nav.scrolled .nav-top-row {
  background: #fff;
}

.navbar-custom.transparent-nav.scrolled .nav-links-row {
  background: #00075d;
}

.navbar-custom.transparent-nav.scrolled .nav-email a,
.navbar-custom.transparent-nav.scrolled .nav-address,
.navbar-custom.transparent-nav.scrolled .nav-logo-center .logo {
  color: #333;
}

.navbar-custom.transparent-nav.scrolled .nav-link {
  color: #f97316;
}

.navbar-custom.transparent-nav.scrolled .nav-email i,
.navbar-custom.transparent-nav.scrolled .nav-address i {
  color: #f97316;
}

.navbar-custom.transparent-nav.scrolled .hamburger span {
  background: #333;
}

@media (max-width: 575px) {
  .navbar-custom.transparent-nav {
    margin-bottom: -100px;
  }
}

/* ── Top Row: Email | Logo | Address ── */
.nav-top-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 5px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #fff;
}
.nav-email {
  justify-self: start;
}

.nav-address {
  justify-self: end;
}

.nav-logo-center {
  justify-self: center;
}
.nav-email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.nav-email a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-email a:hover {
  color: #f97316;
}

.nav-address {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: -3px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  justify-content: flex-end;
  text-align: left;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 340px;
  justify-self: end;
}

.nav-address:hover {
  color: #f97316;
}

.nav-email i,
.nav-address i {
  color: #f97316;
  font-size: 14px;
}

.nav-address i {
  margin-top: 3px;
  flex-shrink: 0;
}

.nav-email i {
  flex-shrink: 0;
}

.nav-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.nav-logo-center .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
}

.nav-logo-center .logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-logo-center .logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.nav-logo-center .logo-text small {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #f97316;
}

/* ── Bottom Row: Nav Links (centered) ── */
.nav-links-row {
  background: #00075d;
}

.nav-links-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  height: 50px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #f97316;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: #f97316;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: #f97316;
  background: rgba(249, 115, 22, 0.15);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: #f97316;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── Services Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #00075d;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-dropdown .dropdown-menu .dropdown-item {
  display: block;
  padding: 10px 22px;
  color: #f97316;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.nav-dropdown .dropdown-menu .dropdown-item:hover {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

.nav-dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
}

/* Dropdown caret indicator */
.nav-dropdown > .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: #f97316;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover > .nav-link::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #333;
  border-radius: 3px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile overlay ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ── Mobile nav close button ── */
.nav-close-btn {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
  padding: 0;
  line-height: 1;
}

.nav-close-btn:hover {
  opacity: 0.8;
}

.nav-close-btn i {
  font-size: 26px;
  line-height: 1;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 767px) {
  .nav-top-row {
    padding: 14px 16px 10px;
  }

  .nav-email a,
  .nav-address {
    font-size: 11px;
  }

  .nav-email {
    gap: 8px;
  }

  .nav-address {
    gap: 3px;
  }

  .nav-email i,
  .nav-address i {
    font-size: 12px;
  }

  .nav-logo-center .logo img {
    height: 60px;
  }

  .nav-logo-center .logo-text {
    font-size: 15px;
  }

  .nav-logo-center .logo-text small {
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .nav-top-row {
    padding: 12px 12px 8px;
  }

  .nav-email a,
  .nav-address {
    font-size: 10px;
  }

  .nav-email {
    gap: 2px;
  }

  .nav-logo-center .logo img {
    height: 50px;
  }

  .nav-logo-center .logo-text {
    font-size: 13px;
  }

  .nav-logo-center .logo-text small {
    font-size: 9px;
  }
}

@media (max-width: 991px) {
  .nav-email,
  .nav-address {
    display: none;
  }

  .nav-top-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 85px;
  }

  .nav-logo-center {
    padding: 0;
  }

  .nav-logo-center .logo img {
    height: 60px;
  }

  .nav-logo-center .logo-text {
    font-size: 15px;
  }

  .nav-logo-center .logo-text small {
    font-size: 10px;
  }

  .nav-links-inner {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #00075d;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 30px 40px;
    gap: 6px;
    left: auto;
    transform: none;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-left: 1px solid rgba(249, 115, 22, 0.15);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
  }

  .nav-close-btn {
    display: flex;
  }

  #navbar.menu-open .hamburger {
    display: none;
  }

  .nav-links-inner.active {
    right: 0;
  }

  .nav-link {
    font-size: 15px;
    padding: 14px 18px;
    width: 100%;
    border-radius: 10px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-link.active {
    background: rgba(249, 115, 22, 0.15);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    min-width: auto;
    border-radius: 0;
  }

  .nav-dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 18px;
    border-bottom: none !important;
  }

  .nav-dropdown:hover > .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links-inner .mobile-cta {
    display: flex;
    margin-top: 20px;
    width: 100%;
  }

  .nav-links-inner .mobile-cta .nav-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  }

  .nav-desktop-cta {
    display: none;
  }
}

@media (min-width: 992px) {
  .mobile-cta {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .nav-top-row {
    padding: 12px 14px 8px;
  }

  .nav-logo-center .logo img {
    height: 55px;
  }

  .nav-logo-center .logo-text {
    font-size: 14px;
  }

  .nav-logo-center .logo-text small {
    font-size: 10px;
  }

  .nav-links-inner {
    width: 100%;
    padding: 90px 24px 40px;
  }
}

@media (max-width: 480px) {
  .nav-logo-center .logo img {
    height: 36px;
  }
  .nav-logo-center .logo-text {
    font-size: 9px;
    line-height: 1.2;
  }
  .logo {
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .logo {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 2px;
  }
  .nav-logo-center .logo img {
    height: 30px;
  }
  .nav-logo-center .logo-text {
    font-size: 8px;
    line-height: 1.2;
  }
}

/* ========== HERO SECTION ========== */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-form-fixed {
  position: absolute;
  top: 50%;
  right: 120px;
  transform: translateY(-50%);
  width: 640px;
  z-index: 10;
  padding: 40px;
}

.hero-form-fixed h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.hero-form-fixed .form-group {
  margin-bottom: 18px;
}

.hero-form-fixed .form-group input,
.hero-form-fixed .form-group select {
  padding: 16px 48px 16px 16px;
  font-size: 16px;
  border-radius: 12px;
}

.hero-form-fixed .form-group textarea {
  padding: 16px 48px 16px 16px;
  font-size: 16px;
  border-radius: 12px;
  min-height: 90px;
}

.hero-form-fixed .form-group i {
  font-size: 20px;
}

.hero-form-fixed .submit-btn {
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
}

@media (max-width: 1399px) {
  .hero-form-fixed {
    right: 60px;
    width: 540px;
    padding: 28px;
  }
}

@media (max-width: 1199px) {
  .hero-form-fixed {
    right: 30px;
    width: 440px;
    padding: 24px;
  }

  .hero-form-fixed h3 {
    font-size: 22px;
  }

  .hero-form-fixed .form-group input,
  .hero-form-fixed .form-group select,
  .hero-form-fixed .form-group textarea {
    padding: 12px 38px 12px 12px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .hero-form-fixed {
    right: 20px;
    width: 360px;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .hero-form-fixed {
    right: 16px;
    width: 300px;
    top: auto;
    bottom: 20px;
    transform: none;
    padding: 16px;
  }

  .hero-form-fixed h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hero-form-fixed .form-group {
    margin-bottom: 8px;
  }

  .hero-form-fixed .form-group input,
  .hero-form-fixed .form-group select,
  .hero-form-fixed .form-group textarea {
    padding: 8px 32px 8px 10px;
    font-size: 12px;
  }

  .hero-form-fixed .submit-btn {
    padding: 8px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-form-fixed {
    right: 12px;
    width: 260px;
    bottom: 12px;
    padding: 12px;
  }

  .hero-form-fixed h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .hero-form-fixed .form-group {
    margin-bottom: 6px;
  }

  .hero-form-fixed .form-group input,
  .hero-form-fixed .form-group select,
  .hero-form-fixed .form-group textarea {
    padding: 6px 28px 6px 8px;
    font-size: 11px;
  }

  .hero-form-fixed .form-group i {
    font-size: 12px;
    right: 8px;
  }

  .hero-form-fixed .submit-btn {
    padding: 6px;
    font-size: 11px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.65) 0%,
    rgba(31, 41, 55, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 62px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.title-line {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 35px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-glow {
  background: var(--primary-red);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-red);
  box-shadow: 0 5px 20px rgba(234, 32, 17, 0.3);
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(234, 32, 17, 0.6);
  color: var(--white);
}

.btn-secondary-glow {
  background: transparent;
  color: var(--white);
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.btn-secondary-glow:hover {
  background: var(--white);
  color: var(--dark-gray);
  transform: translateY(-3px);
}

/* ========== HERO FORM CARD ========== */
.hero-form-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-form-card h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.hero-form-card .form-group {
  position: relative;
  margin-bottom: 10px;
}

.hero-form-card .form-group input,
.hero-form-card .form-group select,
.hero-form-card .form-group textarea {
  width: 100%;
  padding: 10px 36px 10px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  transition: all 0.3s ease;
}

.hero-form-card .form-group select {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.hero-form-card .form-group select option {
  background: #fff;
  color: #222;
}

.hero-form-card .form-group select option[value=""] {
  color: rgba(0, 0, 0, 0.45);
}

.hero-form-card .form-group input::placeholder,
.hero-form-card .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-form-card .form-group input:focus,
.hero-form-card .form-group select:focus,
.hero-form-card .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  background: rgba(255, 255, 255, 0.15);
}

.hero-form-card .form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 16px;
}

.hero-form-card .file-upload-group input[type="file"] {
  display: none;
}

.hero-form-card .file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 36px 10px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-form-card .file-upload-label i {
  position: static;
  transform: none;
  color: var(--yellow);
  font-size: 16px;
}

.hero-form-card .file-upload-label:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--primary-red);
}

.file-input-modern {
  padding: 12px 15px !important;
  cursor: pointer;
}

.file-input-modern::file-selector-button {
  padding: 8px 16px;
  background: var(--primary-red);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  margin-right: 12px;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 32, 17, 0.5);
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary-red);
  opacity: 1;
}

/* ========== STATISTICS SECTION ========== */
.stats-section {
  background: var(--darker-gray);
  padding: 80px 0;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.stat-card {
  background: linear-gradient(
    135deg,
    var(--dark-gray) 0%,
    var(--darker-gray) 100%
  );
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(234, 32, 17, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 15px 40px rgba(234, 32, 17, 0.3);
}

.stat-icon {
  font-size: 48px;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
}

.stats-section .stat-label {
  color: #ffffff;
}

/* ========== CLIENT STRIP ========== */
.client-strip {
  background: var(--light-gray);
  padding: 50px 0;
  overflow: hidden;
}

.client-logos-track {
  display: flex;
  gap: 40px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.client-logos-track:hover {
  animation-play-state: paused;
}

.client-logo-item {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--darker-gray);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.client-logo-item img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.client-logo-item:hover {
  transform: scale(1.08);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ========== SECTION STYLES ========== */
.about-preview-section,
.services-section,
.product-section,
.process-section,
.projects-section,
.testimonials-section,
.about-intro-section,
.services-overview-section,
.all-services-section,
.projects-intro-section,
.projects-grid-section,
.contact-info-section,
.contact-form-section {
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--darker-gray);
  margin-bottom: 20px;
  line-height: 1.3;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--yellow) 100%);
  border-radius: 2px;
  margin-bottom: 25px;
}

.section-desc {
  font-size: 18px;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== ABOUT SECTION ========== */
.about-text {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark-gray);
}

.feature-item i {
  color: var(--primary-red);
  font-size: 20px;
}

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
}

.grid-image {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-image:hover img {
  transform: scale(1.1);
}

.grid-large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.grid-small-1 {
  grid-column: 2;
  grid-row: 1;
}

.grid-small-2 {
  grid-column: 2;
  grid-row: 2;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--dark-red) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-bottom: 20px;
}

.service-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list i {
  color: var(--primary-red);
  font-size: 16px;
}

.service-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

/* ========== PRODUCT SECTION ========== */
.product-section {
  background: var(--light-gray);
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.15);
}

.product-content {
  padding: 30px;
}

.product-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 10px;
}

.product-content p {
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 15px;
}

.product-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.product-content ul li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-content ul li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: 700;
}

.product-btn {
  width: 100%;
  padding: 12px;
  background: var(--darker-gray);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: block;
  transition: all 0.3s ease;
}

.product-btn:hover {
  background: var(--primary-red);
  color: var(--white);
}

/* ========== PROCESS TIMELINE ========== */
.process-section {
  background: var(--darker-gray);
  color: var(--white);
}

.process-section .section-title,
.testimonials-section .section-title {
  color: var(--white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-red);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-end;
  text-align: right;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  text-align: left;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 8px var(--darker-gray);
}

.timeline-content {
  width: 45%;
}

.timeline-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--yellow);
}

.timeline-content p {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.7;
}

/* ========== PROJECT CARDS ========== */
.project-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(234, 32, 17, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  width: 60px;
  height: 60px;
  background: var(--white);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.project-link:hover {
  transform: scale(1.2) rotate(45deg);
}

.project-info {
  padding: 25px;
}

.project-category {
  display: inline-block;
  background: var(--light-gray);
  color: var(--primary-red);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 8px;
}

.project-info p {
  font-size: 14px;
  color: var(--dark-gray);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--dark-gray);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.quote-icon {
  font-size: 48px;
  color: var(--yellow);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--light-gray);
}

.testimonial-rating {
  margin-top: 20px;
}

.testimonial-rating i {
  color: var(--yellow);
  font-size: 18px;
  margin: 0 2px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--dark-red) 100%
  );
  padding: 80px 0;
}

.cta-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-cta-white {
  background: var(--white);
  color: var(--primary-red);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  color: var(--primary-red);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background: var(--white);
  color: var(--primary-red);
  transform: translateY(-3px);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: var(--light-gray);
}

.contact-intro {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-info-cards {
  margin-top: 30px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 28px;
  color: var(--primary-red);
  margin-top: 5px;
}

.info-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 5px;
}

.info-card p {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-form .form-floating {
  margin-bottom: 20px;
}

.contact-form .form-control {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  font-size: 15px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(234, 32, 17, 0.1);
}

.submit-btn-large {
  width: 100%;
  padding: 15px;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn-large:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 32, 17, 0.4);
}

/* ========== TRANSPARENT CTA SECTION ========== */
.cta-transparent {
  position: relative;
  padding: 90px 0;
  background: var(--darker-gray);
  overflow: hidden;
}

.cta-transparent-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
}

.cta-transparent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.88) 0%,
    rgba(31, 41, 55, 0.78) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.cta-transparent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--dark-red) 100%
  );
  opacity: 0.1;
  z-index: 2;
  pointer-events: none;
}

.page-theme .cta-transparent::before,
.page-theme .cta-transparent-overlay {
  display: none;
}
.page-theme .cta-transparent-bg {
  opacity: 0.5;
}

.cta-transparent .container {
  position: relative;
  z-index: 3;
}

.cta-transparent-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  display: block;
}

.cta-transparent-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta-transparent-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 580px;
}

.cta-transparent-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-red);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.cta-transparent-btn:hover {
  background: var(--dark-red);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(234, 32, 17, 0.35);
  color: var(--white);
}

.cta-transparent-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-transparent-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .cta-transparent {
    padding: 70px 0;
  }
  .cta-transparent-title {
    font-size: 28px;
  }
  .cta-transparent-desc {
    max-width: 100%;
  }
  .cta-transparent .text-lg-end {
    text-align: left !important;
    margin-top: 25px;
  }
}

@media (max-width: 576px) {
  .cta-transparent {
    padding: 50px 0;
  }
  .cta-transparent-title {
    font-size: 24px;
  }
  .cta-transparent-label {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .cta-transparent-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

/* ========== FOOTER ========== */
.footer-separator {
  height: 40px;
  background: #f0f0f0;
  width: 100%;
}

.footer {
  background: #fff;
  color: #000;
  padding: 60px 0 0;
}

.footer .container-fluid {
  max-width: 1400px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Align all content padding & width with navbar (20px sides, 1400px max) */
.page-theme .container {
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1440px) {
  .page-theme .container {
    max-width: 1400px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.footer-logo i {
  color: var(--primary-red);
  font-size: 32px;
}

.footer-logo span {
  font-size: 18px;
}

.footer-logo small {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.footer-desc {
  font-size: 14px;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 15px;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact i {
  color: var(--primary-red);
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #000;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-red);
}

.footer-credit {
  font-size: 14px;
  color: #000;
}

.footer-credit a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-credit a:hover {
  color: #000;
  text-decoration: underline;
}

/* ========== PAGE HEADER ========== */
.page-header {
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.95) 0%,
    rgba(234, 32, 17, 0.85) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-header-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
}

.breadcrumb a {
  color: var(--yellow);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--white);
}

/* ========== ADDITIONAL SECTIONS ========== */
.mission-vision-section {
  background: var(--light-gray);
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  height: 100%;
  border-left: 5px solid var(--primary-red);
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--dark-red) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 25px;
}

.mv-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.8;
}

.values-section {
  padding: 100px 0;
}

.value-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-red);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--primary-red);
  color: var(--white);
}

.value-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Additional styles for other pages will continue... */

.why-choose-section {
  background: #e5e7eb;
  padding: 60px 0 80px;
}

.advantage-list {
  margin-top: 30px;
}

.advantage-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.advantage-number {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.advantage-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 8px;
}

.advantage-content p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: var(--primary-red);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--dark-gray);
  font-weight: 600;
}

.team-section {
  padding: 100px 0;
}

.team-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-social {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 5px;
}

.team-info span {
  font-size: 14px;
  color: var(--primary-red);
  font-weight: 500;
}

/* Services Page Specific Styles */
.service-detail-section,
.service-detail-section-alt {
  padding: 60px 0;
}

.service-detail-section-alt {
  background: var(--light-gray);
}

.services-overview-section {
  padding: 60px 0 40px;
}

.service-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail-content {
  padding: 20px 0;
}

.service-badge {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.service-detail-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--darker-gray);
  margin-bottom: 20px;
}

.service-detail-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darker-gray);
  margin: 25px 0 15px;
}

.service-features {
  margin-top: 25px;
}

.feature-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-detail-section-alt .feature-box {
  background: var(--white);
}

.feature-box:hover {
  transform: translateX(10px);
}

.feature-box i {
  color: var(--primary-red);
  font-size: 24px;
  margin-top: 5px;
}

.feature-box h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0;
}

.service-card-alt {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card-alt:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.service-icon-alt {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--dark-red) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 25px;
}

.service-card-alt h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 15px;
}

.service-card-alt p {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-list-alt {
  list-style: none;
  margin: 0;
}

.service-list-alt li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list-alt i {
  color: var(--primary-red);
  font-size: 12px;
}

/* Projects Page Specific Styles */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 25px;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.project-card-large {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card-large:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-image-large {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.project-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card-large:hover .project-image-large img {
  transform: scale(1.1);
}

.project-overlay-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(17, 24, 39, 0.95) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.project-card-large:hover .project-overlay-large {
  opacity: 1;
}

.project-overlay-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.project-overlay-content p {
  font-size: 14px;
  color: var(--yellow);
  margin-bottom: 15px;
}

.project-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--light-gray);
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-info-large {
  padding: 25px;
}

.project-category-badge {
  display: inline-block;
  background: var(--light-gray);
  color: var(--primary-red);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-category-badge.electrical {
  background: rgba(245, 196, 0, 0.15);
  color: var(--yellow);
}

.project-category-badge.automation {
  background: rgba(234, 32, 17, 0.15);
  color: var(--primary-red);
}

.project-info-large h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 12px;
}

.project-info-large > p {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-specs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: var(--light-gray);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
}

.spec-item i {
  color: var(--primary-red);
  font-size: 14px;
}

.project-stats-section {
  background: var(--darker-gray);
  padding: 80px 0;
}

.stat-box-alt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box-alt:hover {
  background: rgba(234, 32, 17, 0.1);
  border-color: var(--primary-red);
  transform: translateY(-5px);
}

.stat-icon-alt {
  font-size: 42px;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.stat-num-alt {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-text-alt {
  font-size: 15px;
  color: var(--light-gray);
  font-weight: 500;
}

/* Contact Page Specific Styles */
.contact-info-section {
  padding: 80px 0;
}

.contact-info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--dark-red) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin: 0 auto 20px;
}

.contact-info-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 15px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-info-card a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card-link:hover {
  gap: 12px;
}

.contact-card-address {
  margin: 12px 0 0;
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}

.contact-intro-text {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-features {
  margin-top: 30px;
}

.contact-feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-feature-item i {
  color: var(--primary-red);
  font-size: 24px;
  margin-top: 3px;
}

.contact-feature-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 5px;
}

.contact-feature-item p {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0;
}

.contact-social {
  margin-top: 30px;
}

.contact-social h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 15px;
}

.social-links-alt {
  display: flex;
  gap: 12px;
}

.social-links-alt a {
  width: 45px;
  height: 45px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links-alt a:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.modern-contact-form .form-group-modern {
  position: relative;
  margin-bottom: 20px;
}

.modern-contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--darker-gray);
  margin-bottom: 8px;
}

.form-control-modern {
  width: 100%;
  padding: 15px 45px 15px 15px;
  border: 2px solid #94a3b8;
  border-radius: 8px;
  font-size: 15px;
  color: var(--dark-gray);
  background: #fff;
  transition: all 0.3s ease;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--primary-red);
}

.form-group-modern i {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: var(--primary-red);
  font-size: 16px;
}

.submit-btn-primary {
  width: 100%;
  padding: 15px;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 32, 17, 0.4);
}

.map-section {
  margin-top: 80px;
  margin-bottom: 40px;
}

.map-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-container {
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 35px;
  left: 5px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  max-width: 170px;
  z-index: 10;
}

.map-overlay-address {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.map-locations {
  max-width: 1100px;
  margin: 20px auto 0;
  text-align: center;
}

.map-location-item {
  display: inline-block;
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f97316;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-open-link:hover {
  color: #ea580c;
}

.map-location-address {
  margin: 6px 0 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.working-hours-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.working-hours-card,
.quick-contact-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.working-hours-card h3,
.quick-contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 25px;
}

.hours-list {
  margin-bottom: 25px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
}

.hours-item .day {
  font-weight: 600;
  color: var(--darker-gray);
}

.hours-item .time {
  color: var(--primary-red);
  font-weight: 600;
}

.emergency-note {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: rgba(234, 32, 17, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
}

.emergency-note i {
  color: var(--primary-red);
  font-size: 20px;
  margin-top: 2px;
}

.emergency-note p {
  margin: 0;
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
}

.quick-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quick-contact-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.quick-contact-item:hover {
  background: rgba(234, 32, 17, 0.1);
  transform: translateX(5px);
}

.quick-contact-item i {
  font-size: 28px;
  color: var(--primary-red);
  margin-top: 5px;
}

.quick-contact-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 5px;
}

.quick-contact-item a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-red);
  color: var(--white);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
}

.about-highlights {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  gap: 15px;
  flex: 1;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 10px;
}

.highlight-item i {
  font-size: 32px;
  color: var(--primary-red);
}

.highlight-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--darker-gray);
  margin-bottom: 5px;
}

.highlight-item p {
  font-size: 13px;
  color: var(--dark-gray);
  margin: 0;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--darker-gray);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    gap: 20px;
    transition: all 0.4s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 32px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    justify-content: flex-start !important;
    text-align: left !important;
    padding-left: 80px;
  }

  .timeline-number {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .floating-cta {
    right: 20px;
    bottom: 20px;
  }

  .cta-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 28px;
  }

  .page-header-content h1 {
    font-size: 38px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .project-filters {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
  }

  .service-detail-section,
  .service-detail-section-alt {
    padding: 40px 0;
  }

  .service-image-wrapper {
    height: 260px;
    margin-bottom: 30px;
  }

  .service-detail-content h2 {
    font-size: 28px;
  }

  .services-overview-section {
    padding: 40px 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-form-card {
    padding: 25px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 32px;
  }

  .service-card,
  .product-card {
    margin-bottom: 20px;
  }
}

/* ========== PROJECT CARD ENHANCEMENTS ========== */
.project-card-large {
  border: 1px solid rgba(229, 231, 235, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}

.project-card-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}

.project-card-large:hover::before {
  transform: scaleX(1);
}

.project-card-large:hover {
  border-color: var(--primary-red);
  box-shadow: 0 20px 60px rgba(234, 32, 17, 0.15);
}

.project-image-large {
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
}

.project-image-large::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.project-card-large:hover .project-image-large::after {
  left: 100%;
}

.project-image-large img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card-large:hover .project-image-large img {
  transform: scale(1.12);
}

.project-overlay-large {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(17, 24, 39, 0.97) 100%
  );
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card-large:hover .project-overlay-large {
  opacity: 1;
}

.project-overlay-content {
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.project-card-large:hover .project-overlay-content {
  transform: translateY(0);
}

.project-overlay-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.project-overlay-content p {
  font-size: 13px;
  color: var(--yellow);
  margin-bottom: 12px;
  font-weight: 500;
}

.project-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-category-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-category-badge.electrical {
  background: rgba(245, 196, 0, 0.15);
  color: #d4a800;
}

.project-category-badge.automation {
  background: rgba(234, 32, 17, 0.12);
  color: var(--primary-red);
}

.spec-item {
  transition: all 0.3s ease;
  cursor: default;
  border: 1px solid transparent;
}

.spec-item:hover {
  background: var(--primary-red) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234, 32, 17, 0.3);
  border-color: var(--primary-red);
}

.spec-item:hover i {
  color: var(--white) !important;
}

.spec-item i {
  transition: color 0.3s ease;
}

.project-info-large h4 {
  transition: color 0.3s ease;
}

.project-card-large:hover .project-info-large h4 {
  color: var(--primary-red);
}

.filter-btn {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 100%;
}

.project-item {
  transition: all 0.5s ease;
}

.project-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
  padding: 0 0 0;
  margin-top: -1px;
  position: relative;
  z-index: 1;
  background: var(--darker-gray);
}

.newsletter-wrapper {
  background: linear-gradient(
    135deg,
    var(--darker-gray) 0%,
    var(--dark-gray) 100%
  );
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: -60px;
}

.newsletter-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(234, 32, 17, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(245, 196, 0, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-content {
  flex-shrink: 0;
}

.newsletter-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.newsletter-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.newsletter-form {
  flex: 1;
  max-width: 520px;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.newsletter-input-group:focus-within {
  border-color: var(--primary-red);
  box-shadow: 0 0 30px rgba(234, 32, 17, 0.15);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-input-group .input-icon {
  position: absolute;
  left: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  pointer-events: none;
}

.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 16px 16px 48px;
  color: var(--white);
  font-size: 15px;
  outline: none;
  min-width: 0;
}

.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 11px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(234, 32, 17, 0.3);
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(234, 32, 17, 0.5);
}

/* ========== NEWSLETTER RESPONSIVE ========== */
@media (max-width: 991px) {
  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .newsletter-wrapper {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .newsletter-title {
    font-size: 24px;
  }

  .newsletter-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .newsletter-input-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 20px;
    width: 100%;
  }

  .newsletter-input-group .input-icon {
    display: none;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}
/* project */
/* ============================================
   PROJECT GALLERY - COMPLETE STYLES
   ============================================ */

/* --- Filter Buttons --- */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  color: #1f2937;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: #ea2011;
  color: #ea2011;
  background: #fff5f4;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 32, 17, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, #ea2011, #c41a0e);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(234, 32, 17, 0.35);
  transform: translateY(-2px);
}

/* --- Project Card --- */
.proj-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.proj-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

/* --- Image Wrapper --- */
.proj-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.proj-card:hover .proj-img-wrap img {
  transform: scale(1.08);
}

/* --- Hover Overlay --- */
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.92) 0%,
    rgba(234, 32, 17, 0.75) 50%,
    rgba(17, 24, 39, 0.4) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.proj-card:hover .proj-overlay {
  opacity: 1;
}

.proj-overlay-body {
  color: #ffffff;
  transform: translateY(12px);
  transition: transform 0.4s ease;
}

.proj-card:hover .proj-overlay-body {
  transform: translateY(0);
}

.proj-overlay-body p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.proj-loc,
.proj-year {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f5c400;
  margin-right: 14px;
  letter-spacing: 0.3px;
}

.proj-loc i,
.proj-year i {
  font-size: 0.72rem;
}

/* --- Category Badge --- */
.proj-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.eot-badge {
  background: rgba(234, 32, 17, 0.9);
  color: #ffffff;
}

.elec-badge {
  background: rgba(31, 41, 55, 0.92);
  color: #f5c400;
}

.panel-badge {
  background: rgba(245, 196, 0, 0.95);
  color: #1f2937;
}

/* --- Card Body --- */
.proj-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proj-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s;
}

.proj-card:hover .proj-title {
  color: #ea2011;
}

.proj-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* --- Spec Tags --- */
.proj-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.spec-tag i {
  color: #ea2011;
  font-size: 0.7rem;
}

.proj-card:hover .spec-tag {
  border-color: #ea2011;
  background: #fff5f4;
  color: #ea2011;
}

.proj-card:hover .spec-tag i {
  color: #ea2011;
}

/* --- Filter Animation --- */
.project-item {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.project-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  display: none;
}

/* --- Responsive Tweaks --- */
@media (max-width: 767px) {
  .proj-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .proj-body {
    padding: 18px;
    gap: 8px;
  }

  .proj-title {
    font-size: 0.98rem;
  }

  .proj-desc {
    font-size: 0.84rem;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.83rem;
  }

  .spec-tag {
    font-size: 0.72rem;
    padding: 3px 9px;
  }
}

@media (max-width: 480px) {
  .proj-overlay {
    padding: 16px;
  }

  .proj-overlay-body p {
    font-size: 0.82rem;
  }

  .proj-title {
    font-size: 0.93rem;
  }
}

/* --- Stats Section --- */
.project-stats-section {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.project-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ea2011' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-box-alt {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-box-alt:hover {
  background: rgba(234, 32, 17, 0.1);
  border-color: rgba(234, 32, 17, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(234, 32, 17, 0.15);
}

.stat-icon-alt {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ea2011, #c41a0e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(234, 32, 17, 0.4);
}

.stat-num-alt {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}

.stat-text-alt {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 576px) {
  .stat-num-alt {
    font-size: 2.2rem;
  }

  .stat-box-alt {
    padding: 24px 16px;
  }
}

/* ============================================
   INDEX PAGE - RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 991px) {
  .hero-content {
    text-align: center;
    padding-top: 1.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .heroSwiper .swiper-slide {
    overflow-y: auto;
  }

  .heroSwiper .swiper-slide > .container {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary-glow,
  .hero-buttons .btn-secondary-glow {
    width: 100%;
    text-align: center;
  }

  .hero-form-card {
    margin-top: 20px;
    padding: 16px 14px;
  }

  .hero-form-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hero-form-card .form-group input,
  .hero-form-card .form-group select {
    padding: 8px 30px 8px 8px;
    font-size: 12px;
  }

  .hero-form-card .form-group {
    margin-bottom: 8px;
  }

  .hero-form-card .form-group i {
    font-size: 12px;
    right: 10px;
  }

  .hero-form-card .form-group textarea {
    padding: 8px;
    font-size: 12px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-icon {
    font-size: 36px;
  }

  .stat-number {
    font-size: 34px;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: 40px;
  }

  .grid-large,
  .grid-small-1,
  .grid-small-2 {
    grid-column: 1;
    grid-row: auto;
  }

  .grid-image {
    height: 220px;
  }

  .about-highlights {
    flex-direction: column;
  }

  .newsletter-wrapper {
    padding: 30px 20px;
  }

  .newsletter-title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .hero-form-card {
    padding: 14px 12px;
    border-radius: 12px;
    margin-top: 15px;
  }

  .hero-form-card .form-group {
    margin-bottom: 6px;
  }

  .submit-btn {
    padding: 8px;
    font-size: 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .feature-item {
    font-size: 14px;
  }

  .about-preview-section,
  .services-section,
  .product-section,
  .process-section,
  .projects-section,
  .testimonials-section {
    padding: 60px 0;
  }

  .cta-transparent {
    padding: 50px 0;
  }

  .cta-transparent-title {
    font-size: 22px;
  }

  .footer {
    padding: 40px 0 0;
  }
}

/* ====================================================
   LOGO TEXT — Match with Logo Theme Color (Orange)
==================================================== */

/* Navbar Logo Text (next to logo image) */
.page-theme .nav-logo-center .logo .logo-text {
  color: var(--primary-red); /* Orange matching logo */
  font-weight: 700;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: none;
  transition: color 0.3s ease;
}

/* Hover effect on navbar logo */
.page-theme .nav-logo-center .logo:hover .logo-text {
  color: var(--primary-red); /* Darker orange on hover */
}

/* Footer Logo Text (next to logo image in footer) */
.page-theme .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-theme .footer-logo span {
  color: var(--primary-red); /* Orange matching logo */
  font-weight: 700;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* Footer logo image sizing */
.page-theme .footer-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* ====================================================
   RESPONSIVE — Logo Text on Mobile
==================================================== */
@media (max-width: 991px) {
  .page-theme .nav-logo-center .logo .logo-text {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .page-theme .nav-logo-center .logo .logo-text {
    font-size: 14px;
  }

  .page-theme .footer-logo span {
    font-size: 16px;
  }
}

.nav-logo-center .logo .logo-text,
.footer-logo span {
  color: var(--primary-red); /* Uses your #ea2011 */
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.nav-logo-center .logo:hover .logo-text {
  color: var(--dark-red); /* Uses your #c41a0e */
}

/* ====================================================
   VALUES SECTION — 5 Cards in One Row (Optional)
==================================================== */
@media (min-width: 1200px) {
  .values-section .row > [class*="col-"] {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
/* Optional: Tighter spacing for 5 items */
.why-choose-section .advantage-item {
  margin-bottom: 20px; /* reduce from default */
}

.why-choose-section .advantage-item:last-child {
  margin-bottom: 0;
}
/* ====================================================
   ABOUT IMAGE GRID — Better Balanced Layout
==================================================== */
.about-image-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 15px;
  height: auto;
}

.grid-large {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 495px;
}

.grid-small-1 {
  grid-column: 2;
  grid-row: 1;
  height: 240px;
}

.grid-small-2 {
  grid-column: 2;
  grid-row: 2;
  height: 240px;
}

.grid-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: #f8f9fa;
  position: relative;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Fills the container properly */
  object-position: center;
  transition: transform 0.4s ease;
}

.grid-image:hover img {
  transform: scale(1.05);
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 991px) {
  .about-image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    margin-top: 40px;
  }

  .grid-large {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 220px;
  }

  .grid-small-1 {
    grid-column: 1;
    grid-row: 2;
    height: 220px;
  }

  .grid-small-2 {
    grid-column: 2;
    grid-row: 2;
    height: 220px;
  }
}

@media (max-width: 575px) {
  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 240px 240px;
  }

  .grid-large,
  .grid-small-1,
  .grid-small-2 {
    grid-column: 1;
    height: 240px;
  }

  .grid-large {
    grid-row: 1;
  }

  .grid-small-1 {
    grid-row: 2;
  }

  .grid-small-2 {
    grid-row: 3;
  }
}

/* ====================================================
   WHY CHOOSE SECTION — Image Fix
==================================================== */
.why-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for proper fit */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Fills container without stretching */
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.why-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Badge on image */
.why-image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--primary-red);
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(234, 32, 17, 0.35);
  text-align: center;
  z-index: 2;
}

.why-image-badge .badge-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.why-image-badge .badge-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 991px) {
  .why-image-wrapper {
    height: 450px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .why-image-wrapper {
    height: 350px;
  }

  .why-image-badge {
    bottom: 15px;
    left: 15px;
    padding: 15px 18px;
  }

  .why-image-badge .badge-number {
    font-size: 26px;
  }

  .why-image-badge .badge-text {
    font-size: 10px;
  }
}

/* ====================================================
   SERVICE IMAGE WRAPPER — Fit Properly (Intro Section)
==================================================== */
.eot-intro-section .service-image-wrapper {
  position: relative;
  width: 100%;
  height: 550px; /* Fixed height matching content */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.eot-intro-section .service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Fills box perfectly, no stretching */
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.eot-intro-section .service-image-wrapper:hover img {
  transform: scale(1.03);
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 991px) {
  .eot-intro-section .service-image-wrapper {
    height: 400px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .eot-intro-section .service-image-wrapper {
    height: 300px;
  }
}

/* ============ BALANCED IMAGE STACK LAYOUT ============ */
.service-image-stack {
  display: grid;
  grid-template-rows: 1.3fr 1fr;
  gap: 20px;
  height: 100%;
  max-height: 650px;
  position: sticky;
  top: 100px;
}

.service-image-top,
.service-image-bottom {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  height: 100%;
}

.service-image-top img,
.service-image-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-image-top:hover img,
.service-image-bottom:hover img {
  transform: scale(1.08);
}

/* ═══════════════════════════════════════
   STAT CARDS TEXT VISIBILITY FIX
═══════════════════════════════════════ */

.stats-section .stat-card .stat-label {
  color: #111827 !important;
}

.stats-section .stat-card .stat-desc {
  color: #6b7280 !important;
}

/* Also fix Why Choose section headings/text (in case still hidden) */
.page-theme .why-choose-section .section-title {
  color: #111827 !important;
}

.page-theme .why-choose-section .section-desc {
  color: #4b5563 !important;
}

.page-theme .why-choose-section .why-feature-content h5 {
  color: #111827 !important;
}

.page-theme .why-choose-section .why-feature-content p {
  color: #6b7280 !important;
}

/* Intro section - ensure all text visible */
.page-theme .elec-intro-section .section-title {
  color: #111827 !important;
}

.page-theme .elec-intro-section .section-desc {
  color: #4b5563 !important;
}

.page-theme .elec-intro-section .elec-intro-desc {
  color: #4b5563 !important;
}

.page-theme .elec-intro-section .feature-box h6 {
  color: #111827 !important;
}

.page-theme .elec-intro-section .feature-box p {
  color: #6b7280 !important;
}

/* ====================================================
   HERO BLANK SCREEN FIX — No changes to slides
==================================================== */
.hero-section,
.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  background-color: #00075d;
}

/* Reset text - remove translateX */
.page-theme .nav-logo-center .logo .logo-text {
  color: var(--primary-red);
  font-weight: 800;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
  /* transform removed */
}

/* Shift entire logo (image + text) to the left */
.page-theme .nav-logo-center .logo {
  transform: translateX(-40px);
}

@media (max-width: 992px) {
  .page-theme .nav-logo-center .logo {
    transform: translateX(-20px);
  }
}

@media (max-width: 768px) {
  .page-theme .nav-logo-center .logo {
    transform: translateX(0);
  }
}
.page-theme .nav-logo-center .logo {
  display: flex;
  align-items: center;
  gap: 5px; /* Reduce gap between logo image and text */
}

.page-theme .nav-logo-center .logo .logo-text {
  margin-left: -10px; /* Small nudge without overlap */
}

/* Footer Links with Custom Bullet Points */
.footer-links {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0;
}

.footer-links li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  list-style: none;
}

/* Custom arrow bullet */
.footer-links li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5722; /* Orange arrow */
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

/* Link text - FORCE visibility */
.footer-links li a,
.footer-links a {
  color: #333333 !important; /* Dark text (since bg is white) */
  text-decoration: none !important;
  font-size: 15px !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer-links li a:hover {
  color: #ff5722 !important;
  padding-left: 4px;
}
/* ====================================================
   🚨 NUCLEAR OVERRIDE - LOGO TEXT HEIGHT FIX
   Forces text to match logo image height
==================================================== */

/* Force logo container */
body.page-theme .nav-logo-center .logo,
body.page-theme .nav-logo-center a.logo,
html body .nav-logo-center .logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  transform: none !important;
  height: auto !important;
  line-height: 1 !important;
}

/* Force logo IMAGE size */
body.page-theme .nav-logo-center .logo img,
body.page-theme .nav-logo-center a.logo img,
html body .nav-logo-center .logo img {
  height: 70px !important;
  width: auto !important;
  max-height: 70px !important;
  min-height: 70px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Force logo TEXT to match height */
body.page-theme .nav-logo-center .logo .logo-text,
body.page-theme .nav-logo-center a.logo span.logo-text,
html body .nav-logo-center .logo span.logo-text,
.logo-text {
  font-size: 42px !important;
  line-height: 70px !important;
  height: 70px !important;
  max-height: 70px !important;
  min-height: 70px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  font-weight: 900 !important;
  font-family: "Poppins", sans-serif !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  vertical-align: middle !important;
  transform: none !important;
  translate: none !important;
}

/* Force remove any <br> spacing */
body.page-theme .nav-logo-center .logo .logo-text br,
.logo-text br {
  display: none !important;
}

/* ====================================================
   🚨 NUCLEAR - SPREAD LEFT & RIGHT
==================================================== */

/* Force LEFT side further LEFT */
body.page-theme .nav-top-row .nav-email,
html body .nav-email {
  margin-left: -40px !important;
  padding-left: 5px !important;
}

/* Force RIGHT side further RIGHT */
body.page-theme .nav-top-row .nav-address,
html body .nav-address {
  margin-right: -40px !important;
  padding-right: 5px !important;
}

/* Reduce nav-top-row padding */
body.page-theme .nav-top-row {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

/* ====================================================
   🚨 NUCLEAR - RESPONSIVE
==================================================== */
@media (max-width: 1200px) {
  body.page-theme .nav-logo-center .logo img,
  html body .nav-logo-center .logo img {
    height: 60px !important;
    max-height: 60px !important;
    min-height: 60px !important;
  }

  body.page-theme .nav-logo-center .logo .logo-text,
  .logo-text {
    font-size: 34px !important;
    line-height: 60px !important;
    height: 60px !important;
    max-height: 60px !important;
    min-height: 60px !important;
  }
}

@media (max-width: 992px) {
  body.page-theme .nav-logo-center .logo img,
  html body .nav-logo-center .logo img {
    height: 50px !important;
    max-height: 50px !important;
    min-height: 50px !important;
  }

  body.page-theme .nav-logo-center .logo .logo-text,
  .logo-text {
    font-size: 26px !important;
    line-height: 50px !important;
    height: 50px !important;
    max-height: 50px !important;
    min-height: 50px !important;
  }

  body.page-theme .nav-email,
  body.page-theme .nav-address {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  body.page-theme .nav-logo-center .logo img,
  html body .nav-logo-center .logo img {
    height: 45px !important;
    max-height: 45px !important;
    min-height: 45px !important;
  }

  body.page-theme .nav-logo-center .logo .logo-text,
  .logo-text {
    font-size: 18px !important;
    line-height: 45px !important;
    height: 45px !important;
    max-height: 45px !important;
    min-height: 45px !important;
    white-space: normal !important;
    letter-spacing: 0.3px !important;
  }
}

/* ====================================================
   🎯 FINAL NAVBAR - BIGGER LOGO & TEXT
==================================================== */

/* LOGO IMAGE - Bigger */
body.page-theme .nav-logo-center .logo img,
html body .nav-logo-center .logo img {
  height: 90px !important;
  max-height: 90px !important;
  min-height: 90px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* LOGO TEXT - Match image height */
body.page-theme .nav-logo-center .logo .logo-text,
.logo-text {
  font-size: 60px !important;
  line-height: 90px !important;
  height: 90px !important;
  max-height: 90px !important;
  min-height: 90px !important;
  display: inline-flex !important;
  align-items: center !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  letter-spacing: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* LOGO CONTAINER */
body.page-theme .nav-logo-center .logo {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

/* Remove any <br> */
body.page-theme .nav-logo-center .logo .logo-text br,
.logo-text br {
  display: none !important;
}

/* ====================================================
   LAYOUT - Spread Left & Right
==================================================== */
body.page-theme .nav-top-row,
html body .nav-top-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 15px 10px !important;
  gap: 15px !important;
  width: 100% !important;
}

/* LEFT SIDE - Email/Phone */
body.page-theme .nav-email,
html body .nav-email {
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  min-width: 220px !important;
  max-width: 220px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

body.page-theme .nav-email a {
  font-size: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* CENTER - Logo */
body.page-theme .nav-logo-center,
html body .nav-logo-center {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 15px !important;
}

/* RIGHT SIDE - Address */
body.page-theme .nav-address,
html body .nav-address {
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  min-width: 220px !important;
  max-width: 220px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  text-align: right !important;
}

body.page-theme .nav-address i {
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

body.page-theme .nav-address span {
  font-size: 12px !important;
  line-height: 1.5 !important;
  text-align: right !important;
}

/* ====================================================
   RESPONSIVE - TABLETS
==================================================== */
@media (max-width: 1400px) {
  body.page-theme .nav-logo-center .logo img {
    height: 75px !important;
    max-height: 75px !important;
    min-height: 75px !important;
  }

  body.page-theme .nav-logo-center .logo .logo-text {
    font-size: 80px !important;
    line-height: 75px !important;
    height: 75px !important;
    max-height: 75px !important;
    min-height: 75px !important;
  }

  body.page-theme .nav-email,
  body.page-theme .nav-address {
    min-width: 200px !important;
    max-width: 200px !important;
  }
}

@media (max-width: 1200px) {
  body.page-theme .nav-logo-center .logo img {
    height: 65px !important;
    max-height: 65px !important;
    min-height: 65px !important;
  }

  body.page-theme .nav-logo-center .logo .logo-text {
    font-size: 100px !important;
    line-height: 65px !important;
    height: 65px !important;
    max-height: 65px !important;
    min-height: 65px !important;
  }

  body.page-theme .nav-email,
  body.page-theme .nav-address {
    min-width: 180px !important;
    max-width: 180px !important;
  }

  body.page-theme .nav-email a,
  body.page-theme .nav-address span {
    font-size: 11px !important;
  }
}

/* ====================================================
   RESPONSIVE - MOBILE
==================================================== */
@media (max-width: 992px) {
  body.page-theme .nav-top-row {
    flex-wrap: wrap !important;
    justify-content: center !important;
    text-align: center !important;
  }

  body.page-theme .nav-logo-center .logo img {
    height: 55px !important;
    max-height: 55px !important;
    min-height: 55px !important;
  }

  body.page-theme .nav-logo-center .logo .logo-text {
    font-size: 28px !important;
    line-height: 55px !important;
    height: 55px !important;
    max-height: 55px !important;
    min-height: 55px !important;
  }

  body.page-theme .nav-email,
  body.page-theme .nav-address {
    min-width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  body.page-theme .nav-logo-center .logo img {
    height: 45px !important;
    max-height: 45px !important;
    min-height: 45px !important;
  }

  body.page-theme .nav-logo-center .logo .logo-text {
    font-size: 20px !important;
    line-height: 45px !important;
    height: 45px !important;
    max-height: 45px !important;
    min-height: 45px !important;
    white-space: normal !important;
  }
}
