/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  margin-top: 80px;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #004369;
  z-index: 1001;
}

.logo img {
  height: 60px;
}

.logo span {
  white-space: nowrap;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #004369;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #01949a;
  font-weight: 500;
  position: relative;
}

.nav-links a.active {
  border-bottom: 2px solid #004aad;
  padding-bottom: 4px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1000px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  background-color: #fb4570;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.5s ease;
  display: inline-block;
}

.hero-btn:hover {
  background-color: #01949a;
}

/* Services & AMS Section */
.services-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.services-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.services-content,
.ams-content-right {
  width: 48%;
  min-width: 300px;
}

/* Headings */
.services-content h3,
.ams-content-right h3 {
  font-size: 1.7rem;
  color: #004369;
  margin-bottom: 15px;
}

/* Paragraphs */
.services-content p,
.ams-content-right p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Styled bullet lists */
.custom-bullets,
.ams-list {
  list-style: none;
  padding-left: 0;
}

.custom-bullets li,
.ams-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.custom-bullets li::before,
.ams-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #004369;
  font-weight: bold;
}

/* Why Choose Section */
.why-choose {
  padding: 60px 20px;
  background-color: #c3e0e5;
}

.full-width-block {
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}

.full-width-block .text-content h2 {
  font-size: 2rem;
  color: #004369;
  margin-bottom: 15px;
}

.full-width-block .text-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.feature-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.25rem;
  color: #004369;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  text-align: left;
}

/* Footer */
.footer {
  background-color: #004369;
  color: #ffffff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.footer-column p,
.footer-column a {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  color: #ccc;
}

.social-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.mail-icon {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Contact Section Styling */
.contact-section {
  background: #ffffff;
  max-width: 650px;
  margin: 50px auto;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.contact-section h1 {
  color: #003080;
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.contact-form .form-group {
  text-align: left;
  margin-bottom: 18px;
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #003080;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f8faff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004aad;
  box-shadow: 0 0 8px rgba(0, 74, 173, 0.3);
  background: #ffffff;
}

.contact-form button {
  background: linear-gradient(135deg, #004aad, #002b5c);
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #003080, #001b40);
  transform: translateY(-2px);
}

/* Contact Footer */
.contact-footer {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, #002b5c, #014f86);
  color: white;
  font-size: 1rem;
  margin-top: 50px;
  border-top: 4px solid gold;
}

.contact-footer p {
  margin: 6px 0;
}

.contact-footer .invite {
  font-style: italic;
  color: #ffd700;
  font-size: 0.95rem;
}

.contact-footer .social-icons {
  margin-top: 12px;
}

.contact-footer .social-icons a {
  color: gold;
  margin: 0 14px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-footer .social-icons a:hover {
  color: white;
  text-shadow: 0 0 5px gold;
}

/* Empower Section */
.empower-section {
  background-color: #f8faff;
  padding: 60px 20px;
  color: #333;
}

.container {
  max-width: 900px;
  margin: auto;
}

.empower-section h2 {
  color: #004080;
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
}

.empower-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefits-list li {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
  line-height: 1.5;
}

.benefits-list .icon {
  font-size: 20px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.empower-section h3 {
  color: #d4a017;
  margin-top: 25px;
  font-size: 1.5rem;
  text-align: center;
}

.specialties {
  background: #fff8e5;
  padding: 15px;
  border-radius: 6px;
  font-style: italic;
  text-align: center;
}

/* Insurance Support Section */
.insurance-support-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.insurance-support-section .text-content h2 {
  font-size: 2rem;
  color: #004369;
  margin-bottom: 15px;
}

.insurance-support-section .text-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  body {
    margin-top: 70px;
  }
  
  /* Mobile Navigation */
  .menu-toggle {
    display: flex;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .logo span {
    display: none;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 30px;
    transition: right 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    padding: 10px;
  }
  
  /* Hero adjustments */
  .hero {
    height: 60vh;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  /* Services section */
  .services-section {
    padding: 40px 15px;
  }
  
  .services-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .services-content,
  .ams-content-right {
    width: 100%;
  }
  
  .services-content h3,
  .ams-content-right h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Why choose section */
  .why-choose {
    padding: 40px 15px;
  }
  
  .full-width-block .text-content h2 {
    font-size: 1.8rem;
  }
  
  .full-width-block .text-content p {
    font-size: 1rem;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-box {
    flex: none;
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }
  
  .feature-box h3 {
    font-size: 1.2rem;
  }
  
  .feature-box p {
    text-align: center;
  }
  
  /* Footer adjustments */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-column {
    flex: none;
  }
  
  /* Contact section */
  .contact-section {
    margin: 20px;
    padding: 25px;
  }
  
  .contact-section h1 {
    font-size: 1.8rem;
  }
  
  /* Empower section */
  .empower-section {
    padding: 40px 15px;
  }
  
  .empower-section h2 {
    font-size: 1.8rem;
  }
  
  .benefits-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .benefits-list .icon {
    margin: 0 0 10px 0;
  }
  
  /* Insurance support section */
  .insurance-support-section {
    padding: 40px 15px;
  }
  
  .insurance-support-section .text-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
    gap: 5px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .services-content h3,
  .ams-content-right h3 {
    font-size: 1.3rem;
  }
  
  .full-width-block .text-content h2 {
    font-size: 1.6rem;
  }
  
  .feature-box h3 {
    font-size: 1.1rem;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
  }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 80vh;
  }
  
  .nav-links {
    padding-top: 20px;
    gap: 20px;
  }
}