* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  padding-top: 115px;
  margin: 0;
}



/* Fix navbar-hero gap at specific screen sizes */
@media (max-width: 1440px) and (min-width: 1200px) {
  body {
    padding-top: 110px;
  }
}

@media (max-width: 1400px) and (min-width: 1200px) {
  body {
    padding-top: 105px;
  }
}

@media (max-width: 1300px) and (min-width: 1200px) {
  body {
    padding-top: 100px;
  }
}

@media (max-width: 1200px) and (min-width: 1024px) {
  body {
    padding-top: 95px;
  }
}

/* Global fix to prevent horizontal overflow */
* {
  max-width: 100%;
}

/* Ensure all containers respect viewport width */
.container,
.container-fluid,
[class*="container"] {
  max-width: 100vw;
  overflow-x: hidden;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  width: 100%;
  max-width: 100vw;
  overflow: visible;
  margin: 0;
  padding: 0;
}

.nav-top {
  background-color: #f8f9fa;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.nav-top .nav-contact {
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.nav-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  max-width: 100%;
  position: relative;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Navbar logo image */
.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

@media (max-width: 1024px) {
  .nav-logo-img {
    height: 36px;
  }
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 32px;
  }
}

.logo-icon {
  background-color: #2b6ebc;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(to left, #2b6ebc, #2b6ebc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  position: relative;
  overflow: visible;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
}

.nav-menu a:hover {
  color: #2b6ebc;
  background-color: #e6eef7;
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: inline-block;
  cursor: pointer !important;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 99999;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333 !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: all 0.2s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #2b6ebc !important;
  color: white !important;
}

.nav-contact span {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  gap: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: #e6eef7;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: #333;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Active Navigation Link */
.nav-menu a.active,
.mobile-nav-menu a.active {
  color: #2b6ebc;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: right 0.3s ease;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
}

.mobile-menu-overlay.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -70%;
  width: 70%;
  height: 100%;
  background: #ffffff;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 10000;
  opacity: 1;
  box-sizing: border-box;
  overflow-x: hidden;
}

.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}

/* Ensure mobile menu content has solid white background */
.mobile-menu-content,
.mobile-menu-content * {
  background-color: #ffffff !important;
  background: #ffffff !important;
}

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background: #2b6ebc !important;
  background-color: #2b6ebc !important;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #2b6ebc !important;
  background-color: #2b6ebc !important;
  transform: scale(1.1);
}

.close-icon {
  line-height: 1;
  font-weight: bold;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav-menu li {
  margin: 0;
  background: #ffffff;
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav-menu a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  background: #ffffff;
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav-menu a:hover {
  color: #2b6ebc;
  padding-left: 30px;
  background: #ffffff;
  background-color: #ffffff;
}

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(245, 247, 250, 0.9) 0%,
      rgba(195, 207, 226, 0.9) 100%
    ),
    url("assests/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 80px 0 80px 0;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assests/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 2;
}

.hero-container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 3;
  min-height: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #e6eef7;
  color: #2b6ebc;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  width: fit-content;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin: 0;
}

.title-blue {
  color: #2b6ebc;
  font-weight: bold;
}

.title-dark {
  color: #333;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  margin: 5px 0;
  font-weight: 400;
}

.hero-description {
  font-size: 18px;
  color: #222;
  line-height: 1.4;
  margin: 5px 0 25px 0;
  font-weight: normal;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: #2b6ebc !important;
  color: white !important;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #245a9e !important;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #2b6ebc !important;
  color: white !important;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #245a9e !important;
  color: white !important;
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-right: 40px;
}

.feature-cards {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 35px 30px;
  width: 644px;
  max-width: 100%;
  min-height: 306px;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.decorative-box {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: #d9e5f2;
  border-radius: 12px;
  z-index: -1;
}

.decorative-box-bottom {
  top: auto;
  right: auto;
  bottom: -20px;
  left: -20px;
}

.feature-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  transition: transform 0.3s ease;
  overflow: hidden;
  word-wrap: break-word;
  max-width: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  background: #d9e5f2;
  color: #2b6ebc;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 0 15px 0;
}

.feature-card h3 {
  font-size: 16px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 600;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.feature-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 100px;
  margin-top: 60px;
  width: 100%;
  padding: 0 40px;
  position: relative;
  z-index: 3;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 32px;
  color: #2b6ebc;
  margin: 0 0 4px 0;
  font-weight: bold;
}

.stat-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Hero Section Responsive Styles */
@media (max-width: 1200px) {
  .hero-container {
    gap: 40px;
    padding: 0 30px;
  }

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

  .hero-right {
    padding-right: 20px;
  }

  .feature-cards {
    width: 580px;
    height: 280px;
    padding: 30px 25px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    gap: 30px;
    padding: 0 25px;
  }

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

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

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

  .hero-right {
    padding-right: 15px;
  }

  .feature-cards {
    width: 520px;
    height: 260px;
    padding: 25px 20px;
    gap: 25px;
  }

  .hero-stats {
    gap: 80px;
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 60px 0;
    min-height: 70vh;
    background-attachment: scroll;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .hero-left {
    order: 1;
    align-items: center;
  }

  .hero-right {
    order: 2;
    padding: 0;
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
    text-align: center;
  }

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

  .hero-description {
    font-size: 15px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .feature-cards {
    width: 100%;
    max-width: 500px;
    min-height: auto;
    height: auto;
    padding: 25px 20px;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .hero-stats {
    gap: 40px;
    padding: 0 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .stat-item p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0 40px 0;
    min-height: 60vh;
    background-attachment: scroll;
  }

  .hero-container {
    padding: 0 15px;
    gap: 30px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

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

  .hero-description {
    font-size: 14px;
  }

  .hero-badge {
    padding: 8px 15px;
    font-size: 13px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .feature-cards {
    padding: 20px 15px;
    gap: 15px;
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    overflow: hidden;
  }

  .feature-card {
    text-align: center;
  }

  .card-icon {
    margin: 0 auto 10px auto;
  }

  .hero-stats {
    gap: 30px;
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
  }

  .stat-item h3 {
    font-size: 24px;
  }

  .stat-item p {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .hero-container {
    padding: 0 10px;
  }

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

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

  .hero-description {
    font-size: 13px;
  }

  .feature-cards {
    padding: 15px 10px;
  }

  .hero-stats {
    padding: 0 10px;
  }
}

/* About Section */
.about {
  background-color: #f8f9fa;
  padding: 80px 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.about-container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  overflow-x: hidden;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  background: #d9e5f2;
  color: #2b6ebc;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

.about-title {
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
  color: #333;
  font-weight: bold;
}

.title-blue {
  color: #2b6ebc;
}

.about-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.quality-section {
  margin-top: 10px;
}

.section-heading {
  font-size: 20px;
  color: #333;
  margin: 0 0 12px 0;
  font-weight: bold;
}

.section-heading.blue {
  color: #2b6ebc;
}

.section-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.why-choose-section {
  margin-top: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #555;
}

.check-icon {
  color: #2b6ebc;
  font-weight: bold;
  font-size: 16px;
}

.btn-read-more {
  background: #2b6ebc !important;
  color: white !important;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 10px;
  text-decoration: none;
}

.btn-read-more:hover {
  background: #245a9e !important;
  transform: translateY(-2px);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
}

.cards-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card.large {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px;
  background: #f0f5fa;
  border: 2px solid #b3d9ff;
}

.about-card .card-icon {
  background: #2b6ebc;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 15px auto;
}

.about-card.large .card-icon {
  margin: 0 auto 15px auto;
}

.about-card h3 {
  font-size: 18px;
  color: #333;
  margin: 0 0 12px 0;
  font-weight: bold;
}

.about-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.years-number {
  font-size: 48px;
  color: #2b6ebc;
  font-weight: bold;
  margin: 0 0 10px 0;
}

/* About Section Responsive Styles */
@media (max-width: 1200px) {
  .about-container {
    gap: 50px;
    padding: 0 30px;
  }

  .about-title {
    font-size: 38px;
  }

  .about-intro {
    font-size: 15px;
  }

  .section-heading {
    font-size: 18px;
  }

  .section-text {
    font-size: 15px;
  }

  .features-grid {
    gap: 10px;
  }

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

@media (max-width: 1024px) {
  .about {
    padding: 60px 0;
  }

  .about-container {
    gap: 40px;
    padding: 0 25px;
  }

  .about-title {
    font-size: 34px;
  }

  .about-intro {
    font-size: 15px;
  }

  .section-heading {
    font-size: 17px;
  }

  .section-text {
    font-size: 14px;
  }

  .features-grid {
    gap: 8px;
  }

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

  .about-card {
    padding: 20px;
  }

  .about-card h3 {
    font-size: 16px;
  }

  .about-card p {
    font-size: 13px;
  }

  .years-number {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 50px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .about-left {
    order: 1;
    align-items: center;
  }

  .about-right {
    order: 2;
    margin-top: 0;
    align-items: center;
  }

  .about-title {
    font-size: 30px;
    text-align: center;
  }

  .about-intro {
    font-size: 15px;
    text-align: center;
  }

  .section-heading {
    font-size: 16px;
    text-align: center;
  }

  .section-text {
    font-size: 14px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

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

  .btn-read-more {
    align-self: center;
  }

  .cards-top {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-card {
    padding: 20px;
  }

  .about-card h3 {
    font-size: 16px;
  }

  .about-card p {
    font-size: 13px;
  }

  .years-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 40px 0;
  }

  .about-container {
    padding: 0 15px;
    gap: 30px;
  }

  .about-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .about-intro {
    font-size: 14px;
  }

  .section-heading {
    font-size: 15px;
  }

  .section-text {
    font-size: 13px;
  }

  .features-grid {
    gap: 8px;
  }

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

  .btn-read-more {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cards-top {
    gap: 12px;
  }

  .about-card {
    padding: 15px;
  }

  .about-card h3 {
    font-size: 15px;
  }

  .about-card p {
    font-size: 12px;
  }

  .about-card .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

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

@media (max-width: 360px) {
  .about-container {
    padding: 0 10px;
  }

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

  .about-intro {
    font-size: 13px;
  }

  .section-heading {
    font-size: 14px;
  }

  .section-text {
    font-size: 12px;
  }

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

  .about-card {
    padding: 12px;
  }

  .about-card h3 {
    font-size: 14px;
  }

  .about-card p {
    font-size: 11px;
  }

  .years-number {
    font-size: 28px;
  }
}

/* Products Section */
.products {
  background-color: #f5f5f5;
  padding: 80px 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.products-container {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  max-width: 1600px; /* widen container to cover remaining space with 3 cards */
  margin: 0 auto;
  overflow-x: hidden;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-badge {
  display: inline-flex;
  align-items: center;
  background: #e6eef7;
  color: #2b6ebc;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.products-title {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #333;
  font-weight: bold;
}

.products-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row on desktop */
  gap: 30px;
  margin-bottom: 60px;
}

.products-view-more {
  text-align: center;
  margin: 10px 0 40px;
}

.products-view-more-link {
  color: #2b6ebc;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
}

.products-view-more-link:hover {
  color: #1f4a84;
  text-decoration: underline;
}

.product-hidden {
  display: none !important;
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  min-height: 450px;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

/* Ensure PNG product images (servo, ups, boost) are fully visible without cropping */
.product-image img[src$="assests/servo.png"],
.product-image img[src$="assests/ups.png"],
.product-image img[src$="assests/boost.png"] {
  object-fit: contain;
  background: #fff; /* keep clean background around transparent PNGs */
}

.product-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 8px;
  font-size: 20px;
  backdrop-filter: blur(10px);
}

.product-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.product-title {
  font-size: 22px;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: bold;
  line-height: 1.3;
}

.product-description {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.product-features li {
  font-size: 14px;
  color: #555;
  margin: 0 0 8px 0;
  padding-left: 18px;
  position: relative;
}

.product-features li::before {
  content: "•";
  color: #2b6ebc;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 16px;
}

.product-link {
  color: white;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #2b6ebc;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(43, 110, 188, 0.2);
}

.product-link:hover {
  background: #245a9e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(43, 110, 188, 0.3);
  width: 100%;
}

.products-cta {
  background: #f0f5fa;
  border: 1px solid #d9e5f2;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-size: 28px;
  color: #333;
  margin: 0 0 12px 0;
  font-weight: bold;
}

.cta-description {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #2b6ebc, #245a9e) !important;
  color: white !important;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(43, 110, 188, 0.3);
  text-decoration: none;
}

.btn-cta-primary:hover {
  background: #245a9e !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 110, 188, 0.4);
}

.btn-cta-secondary {
  background: #2b6ebc !important;
  color: white !important;
  border: 2px solid #2b6ebc !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-secondary:hover {
  background: #245a9e !important;
  border-color: #245a9e !important;
  color: white !important;
  transform: translateY(-2px);
}

/* Products Section Responsive Styles */
@media (max-width: 1200px) {
  .products-container {
    padding: 0 15px;
  }

  .products-title {
    font-size: 38px;
  }

  .products-description {
    font-size: 16px;
  }

  .products-grid {
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card {
    min-height: 420px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-description {
    font-size: 14px;
  }

  .product-features li {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .products {
    padding: 60px 0;
  }

  .products-container {
    padding: 0 15px;
  }

  .products-header {
    margin-bottom: 50px;
  }

  .products-title {
    font-size: 34px;
  }

  .products-description {
    font-size: 16px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .product-card {
    min-height: 400px;
  }

  .product-image {
    height: 200px;
  }

  .product-content {
    padding: 25px;
    height: calc(100% - 200px);
  }

  .product-title {
    font-size: 19px;
  }

  .product-description {
    font-size: 14px;
  }

  .product-features li {
    font-size: 13px;
  }

  .product-link {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 50px 0;
  }

  .products-container {
    padding: 0 15px;
  }

  .products-header {
    margin-bottom: 40px;
  }

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

  .products-description {
    font-size: 15px;
  }

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

  .product-card {
    min-height: auto;
  }

  .product-image {
    height: 180px;
  }

  .product-content {
    padding: 20px;
    height: auto;
  }

  .product-title {
    font-size: 18px;
  }

  .product-description {
    font-size: 13px;
  }

  .product-features {
    margin: 0 0 20px 0;
  }

  .product-features li {
    font-size: 12px;
  }

  .product-link {
    font-size: 13px;
    padding: 10px 18px;
  }

  .products-cta {
    padding: 40px 30px;
    margin-top: 40px;
  }

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

  .cta-description {
    font-size: 15px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .products {
    padding: 40px 0;
  }

  .products-container {
    padding: 0 10px;
  }

  .products-header {
    margin-bottom: 30px;
  }

  .products-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .products-description {
    font-size: 14px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card {
    min-height: auto;
    max-width: 100%;
  }

  .product-image {
    height: 160px;
  }

  .product-content {
    padding: 15px;
    height: auto;
  }

  .product-title {
    font-size: 16px;
    margin: 0 0 12px 0;
  }

  .product-description {
    font-size: 12px;
    margin: 0 0 15px 0;
  }

  .product-features {
    margin: 0 0 15px 0;
  }

  .product-features li {
    font-size: 11px;
    margin: 0 0 6px 0;
  }

  .product-link {
    font-size: 12px;
    padding: 8px 16px;
  }

  .products-cta {
    padding: 30px 20px;
    margin-top: 30px;
  }

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

  .cta-description {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 200px;
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .products-container {
    padding: 0 8px;
  }

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

  .products-description {
    font-size: 13px;
  }

  .products-grid {
    gap: 12px;
  }

  .product-image {
    height: 140px;
  }

  .product-content {
    padding: 12px;
  }

  .product-title {
    font-size: 15px;
  }

  .product-description {
    font-size: 11px;
  }

  .product-features li {
    font-size: 10px;
  }

  .product-link {
    font-size: 11px;
    padding: 7px 14px;
  }

  .products-cta {
    padding: 25px 15px;
  }

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

  .cta-description {
    font-size: 13px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    max-width: 180px;
    font-size: 12px;
  }
}

/* Contact Section */
.contact {
  background-color: #f5f5f5;
  padding: 40px 0 80px 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.contact-container {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: hidden;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  background: #e6eef7;
  color: #2b6ebc;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #333;
  font-weight: bold;
}

.contact-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-panel {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.right-panels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.company-info-panel {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  min-height: 200px;
}

.business-hours-panel {
  background: #f0f5fa;
  border: 1px solid #d9e5f2;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  min-height: 200px;
}

.contact-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2b6ebc;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #2b6ebc;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(43, 110, 188, 0.3);
}

.submit-btn:hover {
  background: #2b6ebc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 110, 188, 0.4);
}

.company-name {
  font-size: 24px;
  color: #2b6ebc;
  font-weight: bold;
  margin: 0 0 30px 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
}

.hours-title {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-icon {
  font-size: 18px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #555;
}

.hours-key {
  font-weight: 500;
}

.hours-value {
  font-weight: 400;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.call-btn {
  background: #2b6ebc;
  color: white;
  box-shadow: 0 2px 8px rgba(43, 110, 188, 0.2);
}

.call-btn:hover {
  background: #2b6ebc;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(43, 110, 188, 0.3);
}

.email-btn {
  background: white;
  color: #666;
  border: 2px solid #e0e0e0;
}

.email-btn:hover {
  border-color: #2b6ebc;
  color: #2b6ebc;
  transform: translateY(-2px);
}

.action-btn span {
  font-size: 18px;
  flex-shrink: 0;
}

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btn-main {
  font-size: 14px;
  font-weight: 600;
}

.btn-sub {
  font-size: 12px;
  opacity: 0.8;
}

/* Contact Section Responsive Styles */
@media (max-width: 1200px) {
  .contact-container {
    padding: 0 15px;
  }

  .contact-title {
    font-size: 38px;
  }

  .contact-description {
    font-size: 16px;
  }

  .contact-content {
    gap: 30px;
  }

  .contact-form-panel {
    padding: 35px;
  }

  .company-info-panel,
  .business-hours-panel {
    padding: 25px;
  }
}

@media (max-width: 1024px) {
  .contact {
    padding: 60px 0;
  }

  .contact-container {
    padding: 0 15px;
  }

  .contact-header {
    margin-bottom: 50px;
  }

  .contact-title {
    font-size: 34px;
  }

  .contact-description {
    font-size: 16px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-panel {
    padding: 30px;
  }

  .company-info-panel,
  .business-hours-panel {
    padding: 25px;
  }

  .company-name {
    font-size: 22px;
  }

  .info-text {
    font-size: 15px;
  }

  .hours-title {
    font-size: 16px;
  }

  .hours-item {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 50px 0;
  }

  .contact-container {
    padding: 0 15px;
  }

  .contact-header {
    margin-bottom: 40px;
  }

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

  .contact-description {
    font-size: 15px;
  }

  .contact-content {
    gap: 25px;
  }

  .contact-form-panel {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-row.three-col {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 14px;
  }

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

  .company-info-panel,
  .business-hours-panel {
    padding: 20px;
  }

  .company-name {
    font-size: 20px;
  }

  .info-text {
    font-size: 14px;
  }

  .hours-title {
    font-size: 15px;
  }

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

  .contact-actions {
    flex-direction: column;
    gap: 10px;
  }

  .action-btn {
    padding: 10px 14px;
  }

  .btn-main {
    font-size: 13px;
  }

  .btn-sub {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 40px 0;
  }

  .contact-container {
    padding: 0 10px;
  }

  .contact-header {
    margin-bottom: 30px;
  }

  .contact-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .contact-description {
    font-size: 14px;
  }

  .contact-content {
    gap: 20px;
  }

  .contact-form-panel {
    padding: 20px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px 12px;
    font-size: 13px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .company-info-panel,
  .business-hours-panel {
    padding: 15px;
  }

  .company-name {
    font-size: 18px;
  }

  .info-text {
    font-size: 13px;
  }

  .info-icon {
    font-size: 16px;
  }

  .hours-title {
    font-size: 14px;
  }

  .hours-item {
    font-size: 13px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .contact-actions {
    gap: 8px;
  }

  .action-btn {
    padding: 8px 12px;
  }

  .action-btn span {
    font-size: 16px;
  }

  .btn-main {
    font-size: 12px;
  }

  .btn-sub {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .contact-container {
    padding: 0 8px;
  }

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

  .contact-description {
    font-size: 13px;
  }

  .contact-form-panel {
    padding: 15px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
    padding: 7px 10px;
    font-size: 12px;
  }

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

  .company-info-panel,
  .business-hours-panel {
    padding: 12px;
  }

  .company-name {
    font-size: 16px;
  }

  .info-text {
    font-size: 12px;
  }

  .hours-title {
    font-size: 13px;
  }

  .hours-item {
    font-size: 12px;
  }

  .action-btn {
    padding: 7px 10px;
  }

  .btn-main {
    font-size: 11px;
  }

  .btn-sub {
    font-size: 9px;
  }
}

/* Footer Section */
.footer {
  background: #2b6ebc;
  color: white;
  padding: 60px 0 0 0;
  width: 100%;
  max-width: 100vw;
  overflow: visible; /* allow bottom white bar to bleed full width */
}

.footer-container {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* keep blue content above the white bar */
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-title {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-list {
  list-style: none;
  padding: 0 0 0 60px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 5px 0;
}

.footer-link:hover {
  color: white !important;
  transform: translateX(5px);
}

.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-address-item .contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-address-item .address-content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

.footer-address-item .address-content strong {
  color: white;
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 15px;
  color: white;
}

.footer-address {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: center; /* center inner container */
  align-items: center;
  padding: 0; /* we'll pad inside the container */
  background: #ffffff; /* white strip */
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: none; /* replaced by dedicated legal-bar section */
}

.footer-bottom-container {
  width: 100%;
  max-width: 1400px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* New full-width legal bar below footer */
.legal-bar {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.copyright-text {
  font-size: 14px;
  color: #2b6ebc;
  margin: 0;
}

.legal-link {
  color: #2b6ebc;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.brand-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.copyright-text {
  font-size: 14px;
  color: #2b6ebc; /* brand blue text on white bg */
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-link {
  color: #2b6ebc;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.legal-link:hover {
  opacity: 0.8;
}

/* Footer Section Responsive Styles */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 15px;
  }

  .footer-main {
    gap: 50px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-text {
    font-size: 14px;
  }

  .contact-text {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 50px 0 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 35px;
  }

  .footer-column {
    gap: 15px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-text {
    font-size: 14px;
  }

  .contact-text {
    font-size: 14px;
  }

  .footer-address {
    font-size: 14px;
  }

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

  .footer-legal {
    align-items: center;
  }

  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-main {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-header {
    gap: 12px;
  }

  .footer-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer-title {
    font-size: 17px;
  }

  .footer-text {
    font-size: 13px;
  }

  .contact-text {
    font-size: 13px;
  }

  .footer-address {
    font-size: 13px;
  }

  .footer-copyright {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 25px 0;
  }

  .footer-brand {
    gap: 12px;
  }

  .brand-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-tagline {
    font-size: 11px;
  }

  .copyright-text {
    font-size: 13px;
  }

  .legal-link {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 35px 0 0 0;
  }

  .footer-container {
    padding: 0 10px;
  }

  .footer-main {
    gap: 25px;
    padding-bottom: 25px;
  }

  .footer-header {
    gap: 10px;
  }

  .footer-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-text {
    font-size: 12px;
  }

  .contact-text {
    font-size: 12px;
  }

  .footer-address {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-brand {
    gap: 10px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  .copyright-text {
    font-size: 12px;
  }

  .legal-links {
    gap: 15px;
  }

  .legal-link {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .footer-container {
    padding: 0 8px;
  }

  .footer-main {
    gap: 20px;
    padding-bottom: 20px;
  }

  .footer-header {
    gap: 8px;
  }

  .footer-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .footer-title {
    font-size: 15px;
  }

  .footer-text {
    font-size: 11px;
  }

  .contact-text {
    font-size: 11px;
  }

  .footer-address {
    font-size: 11px;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .footer-brand {
    gap: 8px;
  }

  .brand-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-tagline {
    font-size: 9px;
  }

  .copyright-text {
    font-size: 11px;
  }

  .legal-links {
    gap: 12px;
  }

  .legal-link {
    font-size: 11px;
  }
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-bottom {
    padding: 15px 20px;
    width: 100%;
    max-width: 100%;
  }

  .nav-top .nav-contact {
    padding: 0 20px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .nav-contact span {
    font-size: 12px;
  }

  .logo-main {
    font-size: 16px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 90px;
  }

  .nav-bottom {
    padding: 10px 15px;
    width: 100%;
    max-width: 100%;
  }

  .nav-top .nav-contact {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }

  .logo-main {
    font-size: 14px;
  }

  .logo-sub {
    font-size: 9px;
  }

  .mobile-menu-content {
    width: 70%;
    right: -70%;
  }

  .mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
  }
}

/* Mobile Submenu Styles */
.mobile-submenu a {
  font-size: 16px !important;
  padding: 12px 0 !important;
  color: #666 !important;
}

.mobile-submenu a:hover {
  color: #2b6ebc !important;
}
