  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #f4f4f9;
        }

        /* -------- Topbar -------- */
.topbar {
  background: #0b0b0b;
  color: #eee;
  font-size: 0.9rem;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.topbar-left i,
.topbar-right i {
  margin-right: 6px;
  color: #ff4747;
}

.call-btn {
  background: #ff4747;
  color: #fff;
  border: none;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-left: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.call-btn:hover {
  background: #e63939;
  transform: scale(1.05);
}

/* -------- Navbar -------- */
.navbar {
  background: #111;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  width: 180px;
  height: auto;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: #ddd;
  font-size: 1rem;
  padding: 6px 10px;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #ff4747;
}

.contact-btn {
  background: #ff4747;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #e63939;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    font-size: 0.8rem;
    text-align: center;
    gap: 4px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    width: 240px;
    background: #111;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.6);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .hamburger {
    display: block;
  }
}
/* ===== About Section ===== */
.about {
  padding: 70px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    margin-bottom: 25px;
  }
}
/* Call Now Button in About Section */
.about-call-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #ff4747;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-call-btn:hover {
  background: #e63939;
  transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.why-choose .intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.why-card i {
  font-size: 2rem;
  color: #ff4747;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 2rem;
  }
  .why-card {
    padding: 25px 15px;
  }
  .why-card i {
    font-size: 1.8rem;
  }
}
/* Alternative Services Section */
.services-alt {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdfdfd, #f4f7fb);
  color: #222;
}

.services-alt-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.services-alt h2 {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}

.services-alt-intro {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  margin: 0 auto 50px auto;
  max-width: 750px;
  line-height: 1.6;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  flex-shrink: 0;
  background: #ff4747;
  color: #fff;
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-text h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #222;
}

.service-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .service-icon {
    margin: 0 auto 15px auto;
    font-size: 1.6rem;
    width: 55px;
    height: 55px;
  }

  .services-alt h2 {
    font-size: 2rem;
  }

  .services-alt-intro {
    font-size: 1rem;
    margin-bottom: 35px;
  }
}

/* Plans Section */
.plans {
  padding: 80px 20px;
  background: #f4f6f9;
  text-align: center;
}

.plans h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #222;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.plan-card h3 {
  font-size: 1.5rem;
  color: #ff4747;
  margin-bottom: 15px;
}

.plan-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.plan-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-card ul li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.plan-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff4747;
}

.plan-button {
  background: #ff4747;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.plan-button:hover {
  background: #e63939;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .plans h2 {
    font-size: 2rem;
  }
  .plan-card {
    padding: 20px 15px;
  }
  .plan-card h3 {
    font-size: 1.3rem;
  }
  .plan-card .price {
    font-size: 1.2rem;
  }
}
/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  background: url('../images/logo/cta1.webp') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.why-choose-us-overlay {
  background: rgba(0, 0, 0, 0.9); /* dark overlay for contrast */
  padding: 60px 20px;
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ff4747;
}

.why-choose-us p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f1f1f1;
}

.why-choose-us-button {
  background: #ff4747;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.why-choose-us-button:hover {
  background: #e63939;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }
  .why-choose-us p {
    font-size: 1rem;
  }
  .why-choose-us-overlay {
    padding: 40px 15px;
  }
  .why-choose-us-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}
/* Services Section */
.services {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff4747;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-button {
    background: #ff4747;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.service-button:hover {
    background: #e63939;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .services h2 {
        font-size: 2rem;
    }
    .service-card {
        padding: 25px 15px;
    }
    .service-button {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    text-align: center;
    background: #f5f5f5;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 600;
    color: #ff4747;
    margin-bottom: 10px;
}

.testimonial-card .rating {
    color: #f1c40f;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .testimonial-card {
        padding: 25px 15px;
    }
}

/* CTA Section */
.cta {
    position: relative;
    background: url('../images/logo/cta2.webp') center/cover no-repeat;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* dark overlay for readability */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffcc00;
}

.cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-timer {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.cta-button {
    background: #ff4747;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #e63939;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta {
        padding: 60px 20px;
    }
    .cta h2 {
        font-size: 2rem;
    }
    .cta p {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-left, .contact-right {
    flex: 1 1 450px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-left h2 {
    font-size: 2rem;
    color: #ff4747;
    margin-bottom: 15px;
}

.contact-left p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff4747;
    box-shadow: 0 0 8px rgba(30, 58, 138, 0.3);
}

.contact-form button {
    background: #ff4747;
    color: #fff;
    font-size: 1rem;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #162c66;
    transform: translateY(-2px);
}

.contact-right h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #ff4747;
}

.contact-right p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #333;
}

.contact-right i {
    margin-right: 10px;
    color: #ff4747;
}

.contact-right .map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}


/* Footer Section */
.footer {
    background: #111; /* Dark background */
    color: #ddd; /* Light text */
    padding: 60px 20px 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-links, .footer-contact {
    flex: 1 1 250px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff4747;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ff6b6b;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-disclaimer {
    border-top: 1px solid #222;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-disclaimer a {
    color: #ff6b6b;
    text-decoration: underline;
    transition: 0.3s;
}

.footer-disclaimer a:hover {
    color: #ff4747;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links, .footer-contact {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        text-align: center;
    }
}
