* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: #f4f4f4;
  }
  
  /* Header */
  .vs-header {
    background-color: #000000;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .logo img {
    height: 200px;
    margin: 0px 0px;
  }
  
  /* Search Bar */
  .search-bar {
    flex: 1;
    margin: 0 30px;
    position: relative;
    max-width: 800px;
  }
  .search-bar input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: none;
    border-radius: 5px;
  }
  .search-bar button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: none;
    background: #febd69;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
  }
  
  /* Icons */
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 30px;
  }
  .nav-icons a {
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-icons a:hover {
    color: #febd69;
  }
  
  /* Dropdown */
  .account-menu {
    position: relative;
  }
  .account-menu .dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background: #232f3e;
    border-radius: 5px;
    width: 180px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }
  .account-menu .dropdown a {
    color: #fff;
    display: block;
    padding: 10px;
    text-decoration: none;
    font-size: 15px;
  }
  .account-menu .dropdown a:hover {
    background: #37475a;
  }
  
  /* Location Popup */
  .location-container {
    position: relative;
  }
  .location-popup {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background: #232f3e;
    padding: 15px;
    border-radius: 5px;
    width: 200px;
  }
  .location-popup input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: none;
    border-radius: 4px;
  }
  .location-popup button {
    background: #febd69;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }
  
  /* Menu */
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Nav */
  nav {
    background: #131921;
  }
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  nav ul li a {
    color: #fff;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: background 0.3s;
  }
  nav ul li a:hover {
    background: #37475a;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .search-bar {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    nav ul {
      flex-direction: column;
      display: none;
      background: #232f3e;
    }
    nav ul.active {
      display: flex;
    }
  }
  
  
/* Footer Base */
.vs-footer {
background-color: #131921;
color: #ccc;
padding: 40px 20px 20px;
font-family: "Poppins", sans-serif;
}

/* Container Layout */
.vs-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

/* Section Headings */
.vs-footer h3, .vs-footer h4 {
color: #fff;
margin-bottom: 12px;
}

/* About Section */
.vs-footer-section p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 10px;
}

.vs-footer-section ul {
list-style: none;
padding: 0;
margin: 0;
font-size: 14px;
opacity: 0.95;
}

.vs-footer-section ul li {
margin-bottom: 8px;
display: flex;
align-items: flex-start;
gap: 8px;
}

.vs-footer-section ul li i {
color: #ff9900;
margin-top: 3px;
}

/* Links Section */
.vs-footer-section a {
color: #ccc;
text-decoration: none;
transition: color 0.3s;
}

.vs-footer-section a:hover {
color: #ff9900;
}

/* Footer Bottom */
.vs-footer-bottom {
border-top: 1px solid rgba(255,255,255,0.08);
margin-top: 30px;
padding-top: 12px;
text-align: center;
font-size: 13px;
opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
.vs-footer {
text-align: center;
}
.vs-footer-section ul li {
justify-content: center;
}
}




/* .........................home css start ....................... */
/* ================================
   HERO - MOBILE PROTECTION
================================ */
.hero-phone {
    background: linear-gradient(135deg, #eaf1ff 0%, #f9fbff 100%);
    padding: 70px 20px;
    display: flex;
    justify-content: center;
  }
  
  .hero-phone-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
  }
  
  /* Left Side */
  .hero-left {
    flex: 1;
    min-width: 300px;
  }
  .hero-left h1 {
    font-size: 2.4rem;
    color: #232f3e;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
  }
  .hero-left p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  .hero-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
  }
  .hero-form select,
  .hero-form input {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  .hero-form button {
    background-color: #ff9900;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .hero-form button:hover {
    background-color: #e68a00;
  }
  
  /* Right Side */
  .hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .hero-right img {
    max-width: 420px;
    width: 100%;
    height: auto;
    animation: floatPhone 4s ease-in-out infinite;
  }
  
  /* Subtle floating effect */
  @keyframes floatPhone {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  /* ================================
     Responsive Design
  ================================ */
  @media (max-width: 992px) {
    .hero-phone-container {
      flex-direction: column-reverse;
      text-align: center;
    }
    .hero-left h1 {
      font-size: 2rem;
    }
    .hero-form {
      margin: 0 auto;
    }
    .hero-right img {
      max-width: 300px;
    }
  }






/* about section  */


.about-section {
  background: url('../img/banner1.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  position: relative;
}

.about-overlay {
  background: rgba(71, 50, 50, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 12px;
  gap: 40px;
}

.about-content {
  flex: 1;
  min-width: 320px;
}

.about-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #ffb700;
  font-weight: 700;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #f1f1f1;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-features li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-features i {
  color: #ffb700;
  font-size: 1.2rem;
}

.about-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ffb700, #ff9900);
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.about-btn:hover {
  background: linear-gradient(90deg, #ff9900, #ffb700);
}

.about-image {
  flex: 1;
  text-align: center;
  min-width: 320px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .about-overlay {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
    gap: 30px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-image img {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-overlay {
    padding: 30px 15px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .about-features li {
    justify-content: center;
  }
}

  
  
  
  /* vision start  */


  .mission-vision-values {
    background: #f9fafc;
    padding: 80px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
  }
  
  .mv-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
  }
  
  .mv-header p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 50px;
  }
  
  .mv-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .mv-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 320px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
  }
  
  .mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .mv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: block;
  }
  
  .mv-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
  }
  
  .mv-card p, 
  .mv-card ul {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .mv-card ul {
    padding-left: 20px;
  }
  
  .mv-card ul li {
    margin-bottom: 8px;
    position: relative;
    text-decoration: none;
  }
  
  .mv-card ul li::before {
    content: "✔";
    position: absolute;
    left: -18px;
    color: #007bff;
    font-size: 0.9rem;
    text-decoration: none;
  }
  
  /* Responsive Design */
  @media (max-width: 900px) {
    .mv-container {
      flex-direction: column;
      align-items: center;
    }
    
    .mv-card {
      width: 90%;
      max-width: 380px;
    }
  }
  
  /* ..........................plan table  .................*/
  /* General Section */
.plans-section {
    background: #f8fafc;
    padding: 80px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
  }
  
  .section-title {
    font-size: 2rem;
    color: #0b3b5a;
    margin-bottom: 8px;
  }
  
  .section-subtitle {
    color: #4a6b74;
    margin-bottom: 40px;
  }
  
  /* Plans Grid */
  .plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .plans-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Plan Card */
  .plan-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  
  .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }
  
  /* Header Colors */
  .plan-header {
    padding: 24px;
    color: #fff;
  }
  
  .plan-header h3 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .plan-header .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 6px;
  }
  
  .plan-header.silver { background: linear-gradient(135deg, #b8c6db, #f5f7fa); color: #1e293b; }
  .plan-header.gold { background: linear-gradient(135deg, #ffd54f, #ffb300); color: #1e1e1e; }
  .plan-header.platinum { background: linear-gradient(135deg, #e0eafc, #cfdef3); color: #1e293b; }
  
  .plan-card.highlight {
    transform: scale(1.05);
    border: 2px solid #ffb300;
  }
  
  /* Plan Details */
  .plan-details {
    list-style: none;
    margin: 0;
    padding: 20px;
    text-align: left;
    flex: 1;
  }
  
  .plan-details li {
    margin-bottom: 12px;
    color: #334155;
    font-size: 0.95rem;
  }
  
  .plan-details i {
    color: #0b66a3;
    margin-right: 8px;
  }
  
  /* Button */
  .plan-btn {
    display: block;
    background: linear-gradient(90deg, #ffb347, #ff9900);
    color: #000;
    text-decoration: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease;
  }
  
  .plan-btn:hover {
    background: linear-gradient(90deg, #ff9900, #ff7700);
  }

  



  /* clame process  */

  .claim-process {
    background: url("../img/banner1.jpg") center center / cover no-repeat fixed;
    position: relative;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
  }
  
  /* dark overlay */
  .claim-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* adjust opacity */
    z-index: 0;
  }
  
  .claim-process .container {
    position: relative;
    z-index: 1;
  }
  
  .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #11a030;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 60px;
    color: #ffbf1c;
  }
  
  .claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    justify-content: center;
  }
  
  .claim-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
  }
  
  .claim-step:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }
  
  .claim-step .icon {
    font-size: 2rem;
    color: #ffeb3b;
    margin-bottom: 15px;
  }
  
  .claim-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .claim-step p {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.6;
  }
  
  /* ✅ 3 + 2 layout on large screens */
@media (min-width: 992px) {
    .claim-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      justify-items: center;
    }
  
    .claim-step:nth-child(4),
    .claim-step:nth-child(5) {
      grid-column: span 1;
    }
  
    .claim-step:nth-child(4) {
      grid-column: 2 / 3;
    }
  
    .claim-step:nth-child(5) {
      grid-column: 3 / 4;
    }
  }
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
  
    .claim-steps {
      grid-template-columns: 1fr;
    }
  
    .claim-step {
      max-width: 100%;
    }
  }
  
  
  /* .........................home css end ....................... */
  
  
  
   /* .........................footer policy  ....................... */
   
  

  
