* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}

body {
  background-color: #f5f5f5;
}

.navbar {
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 80px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  color: #464646;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3b5edb;
}

/* CTA Button */
.btn {
  background-color: #3b5edb;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #2f4db5;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

/* Video Styling */
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.banner {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
            url(/image/homepage.webp) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 8%;
}

/* Dark Overlay */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Content */
.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.content h1 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 54px;
  margin-bottom: 20px;
}

.content p {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  max-width: 800px;
  line-height: 1.6;
}

.top__section-form {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 14px;
}
.quote-section {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
}

/* ===== Form Card ===== */
.quote-form {
  width: 100%;
  max-width: 1000px;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Form Groups ===== */
.form-group {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

/* ===== Select & Input ===== */
.quote-form select,
.quote-form input {
  height: 60px;
  padding: 0 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

/* Remove default select arrow style (optional modern look) */
.quote-form select {
  appearance: none;
  cursor: pointer;
}

/* ===== Button ===== */
.btn-primary {
  height: 60px;
  border: none;
  border-radius: 8px;
  background: #3b5edb;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ===== Error Text ===== */
.error-text {
  font-size: 12px;
  color: #ff4d4f;
  margin-top: 6px;
  display: none; /* Show via JS if invalid */
}

.bundle-section {
  padding: 120px 8%;
  background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
}

/* ===== Container Layout ===== */
.bundle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===== Text Side ===== */
.bundle-text {
  flex: 1;
  min-width: 320px;
}

.bundle-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bundle-text .small-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* ===== Premium Bullet List ===== */
.info-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.info-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* Custom Green Check */
.info-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: #00c853;
  font-weight: bold;
}

/* ===== Image Side ===== */
.bundle-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.bundle-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.bundle-image img:hover {
  transform: translateY(-8px);
}

.improvement-section {
  padding: 110px 8%;
  background: linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
}

/* ===== Container ===== */
.improvement-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  flex-wrap: wrap;
}

/* ===== Content ===== */
.improvement-content {
  flex: 1;
  min-width: 320px;
}

.improvement-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.improvement-text {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== List Styling ===== */
.improvement-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.improvement-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* Custom icon bullet */
.improvement-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: #16a34a; /* green tone */
  font-weight: bold;
}

/* ===== Image Styling ===== */
.improvement-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.improvement-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.improvement-image img:hover {
  transform: translateY(-8px);
}

.site-footer {
  background-color: #1e1b4b; /* theme color */
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  padding: 40px 20px 20px 20px;
}

/* Footer Container: Logo + Links */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Links Section */
.footer-links {
  display: flex;
  gap: 25px;
  flex: 1 1 200px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #7dd3fc;
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 1000px;
  margin: 20px auto 10px auto;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: #d1d5db;
  padding: 10px 15px;
  background-color: rgba(
    255,
    255,
    255,
    0.05
  ); /* subtle background for emphasis */
  border-radius: 6px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #cbd5e1;
  border-top: 1px solid #3b3a6b;
  padding-top: 12px;
}

.privacy-section {
  padding: 80px 8%;
}

.privacy-container {
  max-width: 900px;
  margin: auto;
}

.privacy-header {
  text-align: center;
  margin-bottom: 50px;
}

.privacy-header h1 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #1f3c88;
}

.privacy-header p {
  font-size: 16px;
  color: #5c6b7a;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}

/* Policy Card */
.policy-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* Headings */
.policy-card h2 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #1f3c88;
}

.policy-card h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #34495e;
}

/* Paragraph */
.policy-card p {
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 15px;
  color: #4a5a6a;
}

/* List */
.policy-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
}
.legal-section {
  padding: 80px 8%;
}

.legal-container {
  max-width: 950px;
  margin: auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 40px;
}

.legal-header h1 {
  font-size: 38px;
  color: #1f3c88;
  margin-bottom: 15px;
}

.legal-header p {
  font-size: 16px;
  color: #5c6b7a;
  line-height: 1.7;
  max-width: 750px;
  margin: auto;
}

.space-top {
  margin-top: 100px;
}

/* Card Style */
.legal-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  margin-bottom: 60px;
}

.legal-card h2 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #1f3c88;
}

.legal-card h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #34495e;
}

.legal-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #4a5a6a;
}

.legal-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
}
.about-section {
  padding: 90px 8%;
}

.about-container {
  max-width: 1000px;
  margin: auto;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-header h1 {
  font-size: 42px;
  color: #1f3c88;
  margin-bottom: 15px;
}

.about-header p {
  font-size: 17px;
  color: #5c6b7a;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}

/* Blocks */
.about-block {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.about-block h2 {
  font-size: 24px;
  color: #1f3c88;
  margin-bottom: 15px;
}

.about-block p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #4a5a6a;
}

.about-block ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-block ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Highlight Philosophy Section */
.highlight {
  background: linear-gradient(135deg, #1f3c88, #274c9b);
  color: #ffffff;
}

.highlight h2,
.highlight p,
.highlight li {
  color: #ffffff;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffb3;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    max-height: 400px;
    padding: 20px 0;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 1024px) {
  .bundle-text h2 {
    font-size: 32px;
  }

  .highlight {
    font-size: 16px;
  }
}

/* auto insurance */

.insurance-section {
  padding: 60px 8%;
  background: #f6f9fc;
  font-family: "Rubik", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  margin: 30px auto;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 750px;
  margin: auto;
  color: #5c6b7a;
  line-height: 1.7;
  font-size: 22px;
}

/* Line */
.section-line {
  width: 80px;
  height: 3px;
  background: #1f3c88;
  border: none;
  margin: 30px auto 60px;
}

/* Cards Layout */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 18px;
  font-size: 20px;
  color: #1f3c88;
}

/* Tick List */
.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #4a5a6a;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e8b57;
  font-weight: bold;
}

/* Note */
.note {
  font-size: 14px;
  color: #6c7a89;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 576px) {

  .logo img {
    height: 60px;
  }

  .hero,
  .banner {
    min-height: 55vh;
    padding: 40px 15px;
  }

  .content h1 {
    font-size: 30px !important;
  }

  .content p {
    font-size: 15px;
  }

  .bundle-text h2,
  .improvement-content h2,
  .privacy-header h1,
  .legal-header h1,
  .about-header h1 {
    font-size: 24px;
  }

  .bundle-text .small-text,
  .improvement-text {
    font-size: 15px;
  }

  .policy-card,
  .legal-card,
  .about-block {
    padding: 25px;
  }

  
  .bundle-section {
    padding: 60px 8%;
}
.improvement-section {
    padding: 60px 8%;}
    
    .insurance-section {
    padding: 40px 8%;}
    
    .cards {
    grid-template-columns: repeat(1, 1fr);
}

.section-header p {
    font-size: 18px;
}

}

