/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }

/* Container */
.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* Top Banner */
.top-banner { background: #e63946; color: #fff; text-align: center; padding: 6px; font-size: 14px; }
.top-banner a { color: #a8dadc; text-decoration: none; }

/* Navbar */
.navbar { background: #fff; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 999; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 24px; font-weight: bold; color: #e63946; text-decoration: none; }
.logo span { color: #1d3557; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: #e63946; }
.menu-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }

/* Hero */
.hero { text-align: center; padding: 100px 20px; background: #f1f8ff; }
.hero-content h1 { font-size: 42px; margin-bottom: 15px; color: #e63946; }
.hero-content p { font-size: 18px; margin-bottom: 25px; }
.btn-primary, .btn-secondary { display: inline-block; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; }
.btn-primary { background: #e63946; color: #fff; }
.btn-secondary { background: #a8dadc; color: #1d3557; }
.btn-primary:hover { background: #b71c1c; }
.btn-secondary:hover { background: #90c8d0; }

/* Plans */
.plans { padding: 60px 20px; background: #f9f9f9; text-align: center; }
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
.plan-card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); position: relative; }
.plan-card h3 { margin-bottom: 10px; color: #e63946; }
.plan-card .price { font-size: 24px; margin: 10px 0; }
.plan-card ul { list-style: none; margin: 15px 0; }
.plan-card ul li { margin: 8px 0; }
.featured { border: 2px solid #e63946; }

/* Ribbons */
.ribbon { position: absolute; top: 10px; right: -10px; background: #1d3557; color: #fff; padding: 4px 12px; font-size: 12px; border-radius: 3px; }

/* Why Us */
.why-us { padding: 60px 20px; }
.why-container { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.why-image img { max-width: 100%; border-radius: 8px; }
.why-text ul { list-style: none; margin-top: 15px; }
.why-text ul li { margin: 10px 0; }
.why-text i { color: #e63946; margin-right: 10px; }

/* Features */
.features { background: #a8dadc; color: #1d3557; padding: 60px 20px; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; margin-top: 30px; }
.feature-box { background: rgba(255,255,255,0.9); padding: 20px; border-radius: 8px; }
.feature-box i { font-size: 30px; color: #e63946; margin-bottom: 10px; }

/* Testimonials */
.testimonials { 
  background: #f1f8ff; 
  padding: 60px 20px; 
  text-align: center; 
  position: relative;
}

.testimonial-slider { 
  display: flex; 
  gap: 20px; 
  overflow: hidden; /* hide scrollbar */
}

.testimonial-card { 
  flex: 0 0 300px; 
  background: #fff; 
  padding: 20px; 
  border-radius: 8px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
  text-align: center;
}

.user-icon { 
  font-size: 40px; 
  color: #e63946; 
  margin-bottom: 10px; 
}

.stars { 
  color: gold; 
  margin-top: 10px; 
}


/* FAQ */
.faq { padding: 60px 20px; background: #fff; }
.faq-item { background: #f9f9f9; padding: 15px; margin-bottom: 10px; border-radius: 6px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.faq-item h4 { margin-bottom: 8px; color: #e63946; }

/* Contact */
.contact { padding: 60px 0; }
.contact-info { text-align: center; margin-bottom: 20px; }
.contact-info p { margin: 8px 0; }
.contact-info i { margin-right: 8px; color: #e63946; }
.map iframe { width: 100%; border: 0; }

/* Footer */
.footer { background: #1d3557; color: #fff; padding: 20px; text-align: center; }
.footer a { color: #a8dadc; text-decoration: none; }

/* Call Now */
.call-now { position: fixed; bottom: 20px; right: 20px; background: #e63946; color: #fff; padding: 12px 20px; border-radius: 30px; text-decoration: none; font-weight: bold; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.call-now i { margin-right: 8px; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: #fff; position: absolute; top: 60px; right: 20px; padding: 15px; border: 1px solid #ddd; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .hero-content h1 { font-size: 28px; }
}

/* Section Titles */
.section-title { font-size: 32px; text-align: center; margin-bottom: 30px; color: #1d3557; }
/* CTA Section */
.cta {
  background: #004aad;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta h2 { font-size: 2rem; margin-bottom: 10px; }
.cta p { margin-bottom: 20px; }
.cta .btn-primary {
  background: #ff6600;
  padding: 12px 25px;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
}

/* Passion Section */
.passion {
  background: #f8f8f8;
  padding: 60px 20px;
}
.passion-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.passion-text { flex: 1; }
.passion-text h2 { font-size: 2rem; margin-bottom: 15px; }
.passion-text ul { margin-top: 15px; }
.passion-text li { margin: 8px 0; }
.passion-image { flex: 1; }
.passion-image img { width: 100%; border-radius: 8px; }

/* Offers Section */
.offers {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.offers h2 { font-size: 2rem; margin-bottom: 40px; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.offer-card {
  background: #f4f4f4;
  padding: 25px;
  border-radius: 8px;
  transition: transform 0.3s;
}
.offer-card:hover { transform: translateY(-5px); }
.offer-card h3 { margin-bottom: 10px; color: #004aad; }
.offer-cta p { margin-bottom: 15px; }
.offer-cta .btn-secondary {
  background: #004aad;
  padding: 12px 25px;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
}


/* CTA Section */
.cta {
  background: #004aad;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta h2 { font-size: 2rem; margin-bottom: 10px; }
.cta p { margin-bottom: 20px; }
.cta .btn-primary {
  background: #ff6600;
  padding: 12px 25px;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
}

/* Passion Section */
.passion {
  background: #f8f8f8;
  padding: 60px 20px;
}
.passion-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.passion-text { flex: 1; }
.passion-text h2 { font-size: 2rem; margin-bottom: 15px; }
.passion-text ul { margin-top: 15px; }
.passion-text li { margin: 8px 0; }
.passion-image { flex: 1; }
.passion-image img { width: 100%; border-radius: 8px; }

/* Offers Section */
.offers {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.offers h2 { font-size: 2rem; margin-bottom: 40px; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.offer-card {
  background: #f4f4f4;
  padding: 25px;
  border-radius: 8px;
  transition: transform 0.3s;
}
.offer-card:hover { transform: translateY(-5px); }
.offer-card h3 { margin-bottom: 10px; color: #004aad; }
.offer-cta p { margin-bottom: 15px; }
.offer-cta .btn-secondary {
  background: #004aad;
  padding: 12px 25px;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
}
/* Call Now Button in Navbar */
.call-btn2 {
  background: #e63946;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.call-btn2:hover {
  background: #c82333;
}

/* Adjust for mobile */
@media (max-width: 768px) {
  .call-btn2 {
    display: none; /* Hide on small screens, if needed */
  }
}
/* Contact Section */
.contact { padding: 60px 20px; background: #f9f9f9; }
.contact-container { display: flex; flex-wrap: wrap; gap: 30px; }
.contact-info, .contact-form { flex: 1; min-width: 300px; }

.contact-info h2, .contact-form h2 { margin-bottom: 15px; color: #0078ff; }
.contact-info p { margin: 10px 0; font-size: 16px; }
.contact-info i { color: #e63946; margin-right: 8px; }

.contact-form form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, 
.contact-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; }
.contact-form button { 
  background: #0078ff; 
  color: #fff; 
  padding: 12px; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  font-weight: bold; 
  display: flex; 
  align-items: center; 
  gap: 8px;
}
.contact-form button:hover { background: #005bb5; }

/* Map */
.map iframe { width: 100%; height: 400px; border: 0; margin-top: -10px; }
