 /* Basic Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
    a { text-decoration: none; }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 999;
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #0d47a1;
      background: linear-gradient(to right, #0d47a1, #1976d2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Desktop Menu */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-links a {
      color: #555;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #0d47a1;
    }

    .call-btn {
      background: #fb7063;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 600;
      transition: 0.3s;
    }

    .call-btn:hover {
      background: #fb7063;
      transform: translateY(-2px);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #555;
    }

    #mobile-menu {
      display: none;
      flex-direction: column;
      gap: 15px;
      background: #fff;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    #mobile-menu a {
      color: #555;
      text-align: center;
      padding: 10px 0;
      font-weight: 500;
    }

    #mobile-menu a:hover {
      color: #0d47a1;
    }

    /* Responsive */
    @media(max-width: 768px){
      .nav-links { display: none; }
      .mobile-menu-btn { display: block; }
      #mobile-menu { display: flex; }
    }

    /* Hero Section Alternative */
.hero-alt {
  background: linear-gradient(135deg, #1a1a2e, #162447, #1f4068);
  color: #fff;
  padding: 150px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text .highlight {
  color: #ff6f61;
}

.hero-text p {
  font-size: 1.1rem;
  color: #d1d1d1;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #ff6f61;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-btn:hover {
  background: #e55b4f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media(max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .cta-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media(max-width: 480px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }
  .hero-text p {
    font-size: 0.9rem;
  }
  .cta-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}
/* About Section */
.about-section {
  background: #f5f7fa;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
}

.about-header p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
}

/* About Content Grid */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 450px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 1 1 500px;
}

.about-text p {
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Responsive */
@media(max-width: 1024px) {
  .about-header h2 {
    font-size: 2.2rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }
}

@media(max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    flex: 1 1 100%;
  }
  .about-image {
    flex: 1 1 100%;
  }
  .about-header h2 {
    font-size: 2rem;
  }
  .about-header p {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .about-header h2 {
    font-size: 1.7rem;
  }
  .about-header p,
  .about-text p {
    font-size: 0.9rem;
  }
}
/* Why Choose Us Section */
.choose-section {
  background: #e8f0f8;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.choose-container {
  max-width: 1200px;
  margin: auto;
}

.choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.choose-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
}

.choose-header p {
  font-size: 1.1rem;
  color: #4a5568;
}

/* Grid Layout */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card Design */
.choose-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Icons */
.choose-icon {
  font-size: 2.5rem;
  color: #2b6cb0;
  background: #d6e4f0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Card Titles */
.choose-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

/* Card Descriptions */
.choose-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 1024px) {
  .choose-header h2 {
    font-size: 2.2rem;
  }
}

@media(max-width: 768px) {
  .choose-header h2 {
    font-size: 2rem;
  }
}

@media(max-width: 480px) {
  .choose-header h2 {
    font-size: 1.6rem;
  }
}
.reviews-section {
  background: #f3f6fb;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.reviews-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.reviews-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
}

.reviews-header p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 50px;
}

/* Grid layout for review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Review card styling */
.review-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.review-stars {
  color: #f6b93b;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-author {
  font-weight: bold;
  color: #1a202c;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media(max-width: 768px) {
  .reviews-header h2 { font-size: 2.2rem; }
}

@media(max-width: 480px) {
  .reviews-header h2 { font-size: 1.8rem; }
}
.services-section {
  background: #f0f4f8;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 1.1rem;
  color: #4a5568;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 2.5rem;
  background: #dbeafe;
  color: #1d4ed8;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Card Titles */
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

/* Card Description */
.service-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 1024px) {
  .services-header h2 { font-size: 2.2rem; }
}

@media(max-width: 768px) {
  .services-header h2 { font-size: 2rem; }
}

@media(max-width: 480px) {
  .services-header h2 { font-size: 1.6rem; }
}
/* CTA Alternate Section */
.cta-alt-section {
  position: relative;
  background-image: url('../images/logo/cta.png'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.7); /* dark overlay for text readability */
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #facc15; /* bright yellow accent */
}

.cta-content p {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #10b981, #3b82f6);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Responsive */
@media(max-width: 1024px) {
  .cta-content h2 { font-size: 2.5rem; }
  .cta-content p { font-size: 1.1rem; }
}

@media(max-width: 768px) {
  .cta-content h2 { font-size: 2.2rem; }
  .cta-content p { font-size: 1rem; }
}

@media(max-width: 480px) {
  .cta-content h2 { font-size: 1.8rem; }
  .cta-content p { font-size: 0.95rem; }
  .cta-button { padding: 14px 28px; font-size: 1rem; }
}
/* Footer Section */
footer {
  background: #1f2937; /* Dark gray background */
  color: #9ca3af; /* Light gray text */
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
}

footer .font-bold {
  font-weight: 700;
}

footer .italic {
  font-style: italic;
}

footer p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

footer #current-year {
  font-weight: 600;
}

/* Flex links container */
footer .flex {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media(max-width: 768px) {
  footer .flex {
    flex-direction: column;
    gap: 0.5rem;
  }

  footer h2,
  footer p {
    font-size: 0.95rem;
  }
}

@media(max-width: 480px) {
  footer {
    padding: 2rem 1rem;
  }

  footer p {
    font-size: 0.85rem;
  }
}
/* FAQ Section */
.faq-section {
  background: #f4f7fb;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 50px;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  gap: 20px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a202c;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #2b6cb0;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.95rem;
  color: #4a5568;
  margin-top: 10px;
}

/* Open FAQ */
.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust based on content */
  padding-top: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media(max-width: 768px) {
  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1rem;
  }
}
/* Fixed Call Now Button */
.call-now-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fb7063; /* Green color */
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.call-now-btn:hover {
  background-color: #fb7063; /* Darker green on hover */
  transform: translateY(-2px);
}

  /* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: #f9fafc;
  font-family: Arial, sans-serif;
}

.contact-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.contact-section p {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Contact Content Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f87165;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 115, 230, 0.2);
}

.contact-form button {
  background: #f87165;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #f87165;
}

/* Contact Details */
.contact-details {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  font-size: 15px;
  color: #444;
}

.contact-details p {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.contact-details i {
  color: #0073e6;
  font-size: 18px;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f87165;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #005bb5;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }
}

    .call-now-btn2 {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #fb7063;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.call-now-btn2:hover {
  background-color: #fb7063;
  transform: translateY(-2px);
}
