:root {
  --primary-blue: #0058E6;;
  --dark-blue: #ff0040;
  --secondary-blue: #01549A;
  --navy-blue: #013064;
  --dark-gray: #2D2E2F;
  --light-gray: #D6D6D7;
  --white: #FFFFFF;
  
  --shadow-sm: 0 4px 6px rgba(0, 22, 56, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 22, 56, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 22, 56, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  background-color: #F8F9FA;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER & TOP BAR */
.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.top-bar {
  background: var(--dark-blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
  transition: var(--transition);
  overflow: hidden;
}

.header-wrapper.scrolled .top-bar {
  margin-top: -50px; /* Smoothly hides the top bar on scroll */
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-info {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.top-bar-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-bar-info a:hover { color: var(--primary-blue); }

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-social span {
  color: rgba(255, 255, 255, 0.6);
  display: none; /* Hidden on mobile by default */
}

.top-bar-social a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.top-bar-social a:hover { color: var(--primary-blue); }

.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1001;
}

.header-wrapper.scrolled .site-header { box-shadow: var(--shadow-md); }

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

.header-logo { height: 100px; width: auto; }

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition);
}

.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.nav-list a:hover, .nav-list a.active { color: var(--primary-blue); }

.nav-cta .btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.nav-cta .btn-sm::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-blue);
  border-radius: 3px;
  transition: var(--transition);
}

.page-hero {
  position: relative;
  /* Fixed: relative path '../img/' and correct syntax 'center / cover no-repeat' */
  background: 
    linear-gradient(135deg, rgba(0, 22, 56, 0.507) 0%, rgba(1, 47, 100, 0.66) 100%), 
    url('../img/image2.webp') center / cover no-repeat;
    
  padding: 200px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.page-hero-content { position: relative; z-index: 1; }

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero-content h1 {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CONTACT SECTION */
.section-padding { padding: 4rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition);
}

.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(1, 121, 198, 0.1);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-card:hover .contact-icon { background: var(--primary-blue); color: var(--white); }

.contact-card h4 {
  color: var(--dark-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.contact-card p { color: var(--dark-gray); font-size: 0.95rem; line-height: 1.5; }

/* FORM */
.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  color: var(--dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.contact-form-wrapper h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.form-group { margin-bottom: 1.25rem; position: relative; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.4rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark-gray);
  background: var(--white);
  transition: var(--transition);
  min-height: 48px; /* Better touch target for mobile */
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(1, 121, 198, 0.1);
  outline: none;
}

.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-msg { display: block; font-size: 0.75rem; color: #EF4444; margin-top: 0.25rem; min-height: 1rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  min-height: 48px;
}

.btn-primary { background: var(--primary-blue); color: var(--white); }
.btn-primary:hover { background: var(--secondary-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-full { width: 100%; margin-top: 0.5rem; }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--dark-blue); }

/* MAP SECTION */
.map-section { padding: 0 0 4rem; }
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--white); }
.map-wrapper iframe { display: block; height: 400px; }

/* CTA BANNER */
.cta-banner {
  position: relative;
  /* Fixed: relative path '../img/' and correct syntax 'center / cover no-repeat' */
  background: 
    linear-gradient(135deg, rgba(1, 85, 154, 0.44) 0%, rgba(0, 22, 56, 0.549) 100%), 
    url('../img/image1.webp') center / cover no-repeat;
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.cta-content p { font-size: 1rem; opacity: 0.95; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--navy-blue); color: rgba(255, 255, 255, 0.8); padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-logo { color: var(--white); font-size: 1.35rem; font-weight: 800; margin-bottom: 1rem; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: var(--transition); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }
.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; }
.footer-contact li i { color: var(--primary-blue); margin-top: 4px; min-width: 16px; }
.footer-bottom { padding: 1.25rem 0; text-align: center; font-size: 0.85rem; }
.footer-bottom a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }

/* FLOATING BUTTONS */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; text-decoration: none; box-shadow: var(--shadow-md); transition: var(--transition); }
.float-btn.whatsapp { background-color: #25D366; }
.float-btn.phone { background-color: var(--primary-blue); animation: pulse 2s infinite; }
.float-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(1, 121, 198, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(1, 121, 198, 0); }
  100% { box-shadow: 0 0 0 0 rgba(1, 121, 198, 0); }
}

/* SCROLL ANIMATIONS */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
  .contact-card { flex: 1 1 calc(50% - 0.75rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Mobile Navigation */
  .hamburger { display: flex; }
  
  .mobile-only-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .nav-close {
    background: transparent;
    border: 2px solid var(--light-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.2rem;
    transition: var(--transition);
  }

  .nav-close:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: rotate(90deg);
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 1.5rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 22, 56, 0.15);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-list.active { transform: translateX(0); }

  .nav-list a {
    font-size: 1.1rem;
    color: var(--dark-blue);
    width: 100%;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-list a::after { display: none; }

  .nav-cta { margin-top: 1rem; width: 100%; }
  .nav-cta .btn-sm { width: 100%; justify-content: center; padding: 14px 20px; }
}

@media (max-width: 768px) {
  .top-bar { padding: 6px 0; }
  .top-bar-content { justify-content: center; text-align: center; }
  .top-bar-info { gap: 0.75rem; font-size: 0.75rem; }
  .top-bar-social span { display: none; }
  
  .page-hero { padding: 150px 0 80px; }
  .page-hero-content h1 { font-size: 1.75rem; }
  
  .contact-card { flex: 1 1 100%; padding: 1.5rem; }
  .contact-form-wrapper { padding: 1.5rem; }
  .contact-form-wrapper h2 { font-size: 1.35rem; }
  
  .map-wrapper iframe { height: 300px; }
  
  .cta-banner { padding: 3rem 0; }
  .cta-content h2 { font-size: 1.5rem; }
  .cta-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  .cta-btns .btn { width: 100%; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem;}
  /* .footer-contact li { justify-content: center; } */
  .footer-contact li i { margin-top: 2px; }
  
  .floating-buttons { bottom: 20px; right: 20px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .header-container { height: 100px; }
  .header-logo { height: 100px; }
  .top-bar-info a { font-size: 0.7rem; }
  .page-hero { padding: 130px 0 60px; }
  .hero-label { font-size: 0.7rem; padding: 5px 12px; }
  .contact-form-wrapper { padding: 1.25rem; }
}

/* Hide top bar completely on very small screens to save space */
@media (max-width: 400px) {
  .top-bar { display: none; }
}
/* Hide mobile-only elements on desktop */
.mobile-only-close {
  display: none !important;
}

.nav-close {
  display: none;
}

/* Show close button only on mobile/tablet (992px and below) */
@media (max-width: 992px) {
  .mobile-only-close {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1003;
  }
  
  .nav-close {
    display: flex !important;
    background: transparent;
    border: 2px solid var(--light-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .nav-close:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: rotate(90deg);
  }
}
/* SERVICES HERO */
/* .services-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 22, 56, 0.95) 0%, rgba(1, 48, 100, 0.9) 100%), 
              url('../img/image2.webp') center / cover no-repeat fixed;
  padding: 200px 0 120px;
  text-align: center;
  overflow: hidden;
}

.services-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.services-hero .page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
} */

/* DETAILED SERVICES - MODERN GRID */
.detailed-services {
  padding: 5rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 22, 56, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-number-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-blue);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.service-card-content {
  padding: 2rem;
}

.service-card-content h3 {
  color: var(--dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-card-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.service-card-content > p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--dark-gray);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 22, 56, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-blue);
  font-size: 1rem;
  flex-shrink: 0;
}

/* PROCESS SECTION - TIMELINE STYLE */
.process {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  background: rgba(1, 121, 198, 0.1);
  color: var(--primary-blue);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-title {
  color: var(--dark-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.step-icon i {
  color: var(--white);
  font-size: 2rem;
}

.step-content .step-number {
  display: inline-block;
  background: rgba(1, 121, 198, 0.1);
  color: var(--primary-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-content h3 {
  color: var(--dark-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 160px 0 100px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 140px 0 80px;
  }
  
  .detailed-services,
  .process {
    padding: 3rem 0;
  }
  
  .service-card-content {
    padding: 1.5rem;
  }
  
  .process-step {
    padding: 2rem 1.5rem;
  }
}
/* HERO SECTION - MODERN DESIGN */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 50%, var(--secondary-blue) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(1, 121, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(1, 84, 154, 0.1) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}

.hero-badge span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-badge .divider {
  color: var(--primary-blue);
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-lg i {
  transition: transform 0.3s ease;
}

.btn-lg:hover i {
  transform: translateX(5px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1;
}

/* INTRO SECTION */
.intro {
  background: var(--white);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-img, .why-img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .intro-img,
.image-wrapper:hover .why-img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.intro-text .section-label {
  display: inline-block;
  background: rgba(1, 121, 198, 0.1);
  color: var(--primary-blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.intro-text h2 {
  font-size: 2.5rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.intro-text .lead {
  font-size: 1.125rem;
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.intro-text p {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.intro-features {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

/* SERVICES CARDS - MODERN */
.services-cards {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  background: rgba(1, 121, 198, 0.1);
  color: var(--primary-blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.card-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-item:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 22, 56, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-item:hover .card-overlay {
  opacity: 1;
}

.card-content {
  padding: 2rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.card-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.card-content h3 {
  color: var(--dark-blue);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 1rem;
}

/* GALLERY SECTION */
.gallery {
  background: var(--white);
  padding: 6rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 22, 56, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.gallery-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-link {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-cta {
  margin-top: 50px;
  text-align: center;
}

/* WHY CHOOSE US */
.why-choose {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-text .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.why-text h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.why-text .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}

.check-list i {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.why-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(1, 121, 198, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.why-image {
  position: relative;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.floating-card span {
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-1 {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 1.5s;
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .intro-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .why-image {
    order: -1;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 130px 0 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .intro-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .why-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
  
  .experience-badge {
    right: 20px;
    bottom: 20px;
    padding: 1.5rem;
  }
  
  .experience-badge .years {
    font-size: 2rem;
  }
}
/* =========================================
   HERO SLIDER STYLES
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  overflow: hidden;
}

/* Slider Container */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-out forwards;
}

/* Dark Overlay for Text Readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 22, 56, 0.92) 0%, rgba(1, 48, 100, 0.85) 100%);
}

/* Hero Content Layout */
.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Text Animations */
.hero-fade-in .hero-badge { animation: fadeInDown 0.8s ease 0.2s both; }
.hero-fade-in .hero-title { animation: fadeInUp 0.8s ease 0.4s both; }
.hero-fade-in .hero-desc { animation: fadeInUp 0.8s ease 0.6s both; }
.hero-fade-in .hero-btns { animation: fadeInUp 0.8s ease 0.8s both; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.slider-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--primary-blue);
  border-color: var(--white);
  transform: scale(1.2);
}

/* Ken Burns Zoom Effect */
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Slider Controls */
@media (max-width: 768px) {
  .slider-controls {
    bottom: 80px;
    gap: 1rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .hero-scroll {
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .slider-btn {
    display: none; /* Hide arrows on very small screens, keep dots */
  }
  
  .slider-controls {
    bottom: 70px;
  }
}
/* =========================================
   KEY HIGHLIGHTS SECTION
   ========================================= */
.key-highlights {
  background: var(--white);
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.highlight-item {
  background: #F8F9FA;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 22, 56, 0.05);
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: var(--primary-blue);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.1) rotate(5deg);
}

.highlight-item h4 {
  color: var(--dark-blue);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* Responsive adjustment for highlights grid */
@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .highlight-item {
    padding: 2rem 1rem;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.phone {
    background: #007bff;
}

/* Number tooltip */
.float-number {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #222;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

/* Small arrow */
.float-number::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #222;
}

/* Show number on hover */
.float-btn:hover .float-number {
    opacity: 1;
    visibility: visible;
}

/* Mobile */
@media (max-width: 767px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .float-number {
        right: 60px;
        font-size: 13px;
    }
}
.map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 767px) {
    .map-wrapper iframe {
        height: 350px;
    }
}
/* =========================================
   CENTER HEADER BRAND NAME
   ========================================= */
/* =========================================
   CENTER HEADER BRAND NAME
   ========================================= */

/* Desktop: Absolute positioning to keep it perfectly centered */
.header-center-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.header-center-brand span {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark-blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =========================================
   MOBILE & TABLET VIEW (Shows and centers text)
   ========================================= */
@media (max-width: 992px) {
  /* Switch header container to Grid for perfect 3-part alignment */
  .header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px; /* Compact height for mobile */
  }

  /* Left: Logo */
  .logo-area {
    justify-self: start;
  }

  .header-logo {
    height: 45px;
  }

  /* Center: Brand Name (Now visible and centered) */
  .header-center-brand {
    position: static; /* Removes absolute positioning for mobile grid */
    transform: none;
    left: auto;
    top: auto;
    justify-self: center;
    margin: 0;
  }

  .header-center-brand span {
    font-size: 1.4rem; /* Smaller font for mobile */
    letter-spacing: 0.5px;
  }

  /* Right: Navigation / Hamburger */
  .main-nav {
    justify-self: end;
  }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
  .header-container {
    height: 70px;
    padding: 0 1rem;
  }

  .header-logo {
    height: 38px;
  }

  .header-center-brand span {
    font-size: 1.2rem; /* Further reduced to prevent overlapping on small phones */
  }
}