* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: #0f649d; /* Rich blue gradient */
  color: white;
  overflow-x: hidden;
}

body > *:not(.background-image) {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  height: 100vh;
}

.hero-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 80px;
}

.hero-content {
  flex: 1;
  min-width: 280px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  color: #004f91;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.hero-image {
  max-width: 600px;
  width: 100%;
  flex: 1;
  display: block;
}

/* Header and Navigation Styles */
.vm-header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border-bottom: 1px solid #e5e7eb;
}
.vm-header-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
}
.vm-logo-link {
  display: flex;
  align-items: center;
}
.vm-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.vm-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.vm-nav-link {
  color: #0051BA;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.80rem;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.vm-nav-link:hover,
.vm-nav-link:focus {
  background: #f0f4fa;
  color: #003366;
}
.vm-cart-btn {
  background: none;
  border: none;
  margin-left: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  transition: background 0.15s;
}
.vm-cart-btn:hover {
  background: #f0f4fa;
}
.vm-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  margin-left: 1rem;
}
.vm-nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #0051BA;
  border-radius: 2px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }
}

@media (max-width: 1100px) {
  .vm-header-container {
    padding: 0.7rem 1rem;
  }
  .vm-nav {
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .vm-nav {
    position: absolute;
    top: 64px;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100vw;
    padding: 1rem 0;
    gap: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: none;
  }
  .vm-nav.open {
    display: flex;
  }
  .vm-nav-toggle {
    display: flex;
  }
  .vm-cart-btn {
    margin-left: 0.5rem;
  }
}

@media (max-width: 600px) {
  .vm-logo-img {
    height: 36px;
  }
  .vm-header-container {
    padding: 0.5rem 0.5rem;
  }
}

whater-chat-widget {
  z-index: 9999;
}

/* Footer Styles */
.vm-footer {
  background: #222;
  color: #ffffff;
  padding: 2.5rem 0 1.2rem 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
}
.vm-footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 2rem;
}
.vm-footer-about {
  flex: 2 1 300px;
  min-width: 250px;
}
.vm-footer-logo {
  height: 48px;
  margin-bottom: 1rem;
}
.vm-footer-about p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.vm-footer-contact span {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}
.vm-footer-contact a {
  color: #0051BA;
  text-decoration: none;
}
.vm-footer-links {
  flex: 1 1 180px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vm-footer-links h4 {
  margin-bottom: 0.7rem;
  color: #ffffff;
  font-size: 1.1rem;
}
.vm-footer-links a {
  color: #0051BA;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.15s;
}
.vm-footer-links a:hover {
  color: #003366;
  text-decoration: underline;
}
.vm-footer-social {
  flex: 1 1 180px;
  min-width: 150px;
}
.vm-footer-social h4 {
  margin-bottom: 0.7rem;
  color: #ffffff;
  font-size: 1.1rem;
}
.vm-footer-social-icons {
  display: flex;
  gap: 1rem;
}
.vm-footer-social-icons a svg {
  display: block;
  stroke: #0051BA;
  fill: none;
  transition: stroke 0.2s;
}
.vm-footer-social-icons a:hover svg {
  stroke: #003366;
}
.vm-footer-bottom {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
@media (max-width: 900px) {
  .vm-footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    align-items: stretch;
  }
  .vm-footer-about, .vm-footer-links, .vm-footer-social {
    min-width: 0;
  }
}

.hero.minimized-hero {
  padding: 1.2rem 0 1.2rem 0;
  height: auto;
  min-height: 320px;
}
.hero.minimized-hero .hero-top {
  gap: 1.2rem;
}
.hero.minimized-hero .hero-content h1 {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}
.hero.minimized-hero .hero-content p {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.hero.minimized-hero .hero-image {
  max-width: 420px;
}

/* About/Company Section */
.about-section {
  background: rgba(255,255,255,0.97);
  color: #004f91;
  padding: 2.5rem 0 2rem 0;
  margin: 0 auto 2rem auto;
}
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0051BA;
  text-align: center;
}
.about-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.highlight-box {
  background: #f0f4fa;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,81,186,0.06);
  padding: 1.2rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  text-align: center;
}
.highlight-box h3 {
  color: #0051BA;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.highlight-box p {
  color: #004f91;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .about-highlights {
    flex-direction: column;
    align-items: center;
  }
  .highlight-box {
    max-width: 100%;
  }
}
