 
/* css/style.css */
body, html {
  margin: 0;
  padding: 0;
font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}


.hero { position:relative; overflow:hidden; }
.carousel-slide { position:absolute; inset:0; }
.carousel-slide .bg{
  position:absolute; inset:-6%;         /* overscan for pan */
  background-size:cover; background-position:center;
  filter: saturate(1.02) contrast(1.02);
  transform: translate3d(0,0,0) scale(1.05);
  will-change: transform;
}
.carousel-text { position:relative; z-index:2; }


.cta-button {
  background-color: #ff6600;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #e55b00;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 3rem;
  background: #fff;
}


.feature-card:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #222;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #055EAB;
  width: 100%;
}

.feature-card img {
  height: 80px;
  margin-bottom: 1rem;
}
.feature-card h3 {
  margin-bottom: 0.5rem;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


/* Navbar */

/* Navbar Container */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #055EAB;
  text-decoration: none;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #055EAB;
  padding: 0.5rem 0.8rem;
  transition: background 0.3s, border-radius 0.3s;
}

.nav-links a:hover {
  background-color: #E6F0FF;
  border-radius: 5px;
}

/* Login Button */
.btn-login {
  padding: 0.5rem 1rem;
  background-color: #055EAB;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-login:hover {
  background-color: #044c8e;
}

/* Scroll Effect */
.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Carousel */

.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-text {
  position: absolute;
  bottom: 15%;
  left: 10%;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  color: #fff;
  max-width: 500px;
  animation: fadeInUp 1s ease-out;
}

.carousel-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.carousel-text p {
  font-size: 1.2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .carousel-text {
    left: 5%;
    right: 5%;
    padding: 1rem;
  }

  .carousel-text h1 {
    font-size: 1.5rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 2rem;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}
.carousel-nav.prev {
  left: 10px;
}
.carousel-nav.next {
  right: 10px;
}

.feature-card i {
  margin-bottom: 1rem;
  color: #055EAB;
}


/* Sections - contact and about us */

/* Pricing Section */
.pricing-section {
  background-color: #E6F0FF;
  padding: 4rem 2rem;
  color:#223159;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}
.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.pricing-card h3 {
  color:white;
}
/* Why Choose Us */
.why-us-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
  color: #223159;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}
.reason-card {
  background: #F5FAFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.reason-card i {
  color: #055EAB;
  margin-bottom: 1rem;
}
.reason-card h4 {
  color: white;
  margin-bottom: 1rem;
}
/* Contact Section */
.contact-section {
  background: #f0f8ff;
  padding: 4rem 2rem;
  text-align: center;
color:  #223159;
}
.contact-section p {
  margin: 0.5rem 0;
}


/* Testimonials */
.testimonials-section {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
  color:#223159;
}
.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: auto;
}
.testimonial {
  background: #f5faff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.testimonial h4 {
  margin-top: 1rem;
  color: #055EAB;
}

.testimonial p {
  margin-top: 1rem;
  color: white;
}

/* ===== Amped-up FAQ styling ===== */
:root {
  --faq-surface: rgba(255,255,255,.02);
  --faq-hover: rgba(255,255,255,.05);
  --faq-accent: #4ea8ff;
  --faq-text: #e8eef7;
  --faq-muted: #aeb9cd;
  --divider: rgba(255,255,255,.08);
}

.faq {
  max-width: 900px;
  margin: 28px auto;
  padding: 0 14px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.faq h2 {
  text-align: center;
  margin: 0 0 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--faq-text);
}

/* Single FAQ item container */
.faq-item + .faq-item {
  border-top: 1px solid var(--divider);
}

/* Question button */
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 14px;
  background: var(--faq-surface);
  border: 0;
  color: var(--faq-text);
  font-weight: 600;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease;
  border-radius: 6px;
}

.faq-q:hover {
  background: var(--faq-hover);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 4px 12px rgba(0,0,0,.25);
}

.faq-item.open .faq-q {
  background: linear-gradient(90deg, rgba(78,168,255,.15), rgba(78,168,255,.05));
  box-shadow: 0 0 0 1px var(--faq-accent), 0 4px 14px rgba(78,168,255,.25);
}

/* Chevron icon */
.faq-q .chev {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .25s ease, color .25s ease;
  color: var(--faq-muted);
}

.faq-item.open .faq-q .chev {
  transform: rotate(90deg);
  color: var(--faq-accent);
}

/* Answer text */
.faq-a {
  display: none;
  padding: 0 14px 14px;
  color: var(--faq-muted);
  line-height: 1.6;
}

.faq-item.open .faq-a {
  display: block;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .faq-q {
    padding: 14px 12px;
  }
  .faq-a {
    padding: 0 12px 12px;
  }
}


/* Discount Banner */
.discount-banner {
  background-color: #055EAB;
  color: white;
  text-align: center;
  padding: 2rem;
  margin: 0;
}
.discount-banner h3 {
  margin-bottom: 0.5rem;
}

/* Newsletter */
.newsletter-section {
  padding: 4rem 2rem;
  background: #f5faff;
  text-align: center;
}
.newsletter-form {
  margin-top: 1rem;
}
.newsletter-form input[type="email"] {
  padding: 0.8rem;
  width: 250px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-right: 1rem;
}
.newsletter-form button {
  padding: 0.8rem 1.5rem;
  background-color: #055EAB;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.newsletter-form button:hover {
  background-color: #044c8e;
}
