/* Reset and Base */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #eee;
}

/* Hero Section */
.hero-section {
  background-image: url('./assest/mainbanner.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: left;
  padding-left: 5%;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Navbar Active Link */

/* .custom-navbar {
  background: #ffffff; 
  padding: 8px 20px;   
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
} */

/* Full Orange Navbar */
.navbar.custom-navbar {
  background-color: #e67e22 !important; /* Orange background */

}

/* Navbar Container */
.custom-navbar-container {
  background-color: #e67e22; /* Same orange background */
}

/* Logo Size */
.logo-img {
  height: 150px; /* Bigger size */
}

/* Navbar Links - Always White */
.navbar .nav-link {
  color: #ffffff !important;   /* White text */
  font-weight: 600;            /* Bold */
  font-size: 1.2rem;           /* Increase size */
}

/* Brand Text White */
.navbar .navbar-brand {
  color: #ffffff !important;
}
/* Button Hover */
.btn-outline-light:hover {
  background-color: #e67e22;
  color: white;
}

.features-wrapper {
  background-color: #fdfaf5;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
}

.features-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.features-container {
  display: flex;
  gap: 20px;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
}

.feature-box {
  flex: 0 0 auto;
  min-width: 180px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem;
  color: #111;
}

/* Infinite scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .feature-box {
    min-width: 150px;
    padding: 15px;
  }

  .features-container {
    animation: scroll-left 40s linear infinite;
  }
}


/* Info Section */
.info-section {
  padding: 60px 15px;
  background-color: #fff;
}

.info-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.info-text {
  background-color: #ffffff;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.info-text h6 {
  text-transform: uppercase;
  color: #f7941d;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
}

.info-text h2 {
  font-weight: 700;
  font-size: 32px;
  margin: 20px 0;
}

.info-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.info-text p strong {
  color: #000;
}

/* Buttons (Unified Color Scheme) */
.read-more-btn,
.estimate-btn,
.btn-consult,
.btn-book,
.btn-submit {
  background-color: #f5b041;
  color: #151515;
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
  cursor: pointer;
}

.read-more-btn:hover,
.estimate-btn:hover,
.btn-consult:hover,
.btn-book:hover,
.btn-submit:hover {
  background-color: #fff;
  color: #151515;
  border: 1px solid #f5b041;
}

/* Hero Flex Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #f9f9f9;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  padding-right: 40px;
}

.hero h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Features */
.features {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
}

.features h2 {
  font-size: 24px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-box {
  background-color: #fffef7;
  border: 1px solid #f1c40f;
  padding: 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Locations Bar */
    .locations-bar {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px;
    }

    .location-btn {
      background: #f4f4f4;
      border-radius: 20px;
      padding: 10px 20px;
      border: 1px solid #ddd;
      cursor: pointer;
    }

    /* Experience Center Card */
    .center-card {
      display: flex;
      max-width: 1000px;
      margin: 30px auto;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    .center-card img {
      width: 50%;
      object-fit: cover;
    }

    .center-info {
      padding: 20px;
      background: #fff;
      flex: 1;
    }

    .center-info h4 {
      margin-top: 0;
    }

    .center-info p {
      margin: 8px 0;
    }

    .get-direction {
      background-color: #ff6f3c;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      margin-top: 15px;
    }

    /* Timeline */
    .timeline {
      text-align: center;
      margin: 50px auto;
      max-width: 900px;
    }

    .timeline h2 {
      margin-bottom: 40px;
    }

    .steps {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .step {
      flex: 1;
      min-width: 120px;
      text-align: center;
    }

    .step-icon {
      width: 50px;
      height: 50px;
      margin: 0 auto 10px;
      background-color: #ffe2d1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #ff6f3c;
    }

    .book-btn {
      background-color: #ff6f3c;
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      margin-top: 30px;
      cursor: pointer;
    }

/* Services */
.section-title {
  font-weight: 700;
  margin-bottom: 30px;
}

.service-card {
  background-color: white;
  border: 1px solid #eee;
  padding: 25px;
  height: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 28px;
  color: #f5b041;
  margin-bottom: 10px;
}

.service-title {
  font-weight: 600;
  font-size: 1.2rem;
}

/* FAQ */
.faq-heading {
  font-weight: 700;
  margin-bottom: 30px;
}

.accordion-button {
  background-color: #fff !important;  /* Or any other background color you prefer */
  color: #000000 !important; /* Adjust text color if needed */
  box-shadow: none !important; /* Removes the blue box shadow */
}

.accordion-button:not(.collapsed) {
  background-color: white !important;
  color: #f5b041 !important;
  box-shadow: none !important;
}



/* Process */
.process-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.process-title {
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.process-step {
  margin-bottom: 30px;
}

.process-number {
  font-size: 60px;
  font-weight: bold;
  color: #f1f1f1;
  margin-bottom: 10px;
}

.process-heading {
  font-weight: 600;
  margin-bottom: 15px;
}

.process-description {
  color: #333;
  font-size: 15px;
}

/* Contact */
.contact-section {
  background-color: #151515;
  color: white;
  padding: 60px 0;
}

.contact-info h2 {
  font-weight: 700;
}

.contact-info p {
  color: #ccc;
  font-size: 15px;
}

.contact-info strong {
  display: block;
  margin-top: 20px;
  font-size: 16px;
}

.contact-info i {
  margin-right: 8px;
  color: #f5b041;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-control {
  margin-bottom: 15px;
  border-radius: 0;
  font-size: 14px;
}

/* Discount Text */
.discount-text {
  font-size: 38px;
  font-weight: 700;
}

.sub-discount {
  font-size: 20px;
  color: #999;
}

      .footer-top-links {
      font-size: 13px;
      color: #333;
      padding: 15px 10px;
      text-align: center;
      line-height: 2em;
      border-top: 1px solid #eee;
    }

    .footer {
      background-color: #fff;
      padding: 40px 0 20px;
      border-top: 2px solid #f5b041;
      font-size: 14px;
    }

    .footer .footer-intro {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 20px;
      font-size: 14px;
      color: #444;
    }

    .footer .social-icons a {
      color: #000;
      font-size: 18px;
      margin: 0 8px;
      transition: 0.3s;
    }

    .footer .social-icons a:hover {
      color: #f5b041;
    }

    .footer .footer-column h6 {
      font-weight: 600;
      margin-bottom: 15px;
      font-size: 13px;
      text-transform: uppercase;
      color: #f5b041;
    }

    .footer .footer-column a {
      display: block;
      color: #333;
      text-decoration: none;
      margin-bottom: 6px;
    }

    .footer .footer-column a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      text-align: center;
      font-size: 13px;
      margin-top: 20px;
      border-top: 1px solid #ddd;
      padding-top: 15px;
      color: #888;
    }

/* Responsive */
/* For larger logos on desktop */
@media (min-width: 992px) {
  .navbar-brand img {
    height: 150px;
  }
  body {
    padding-top: 10px; /* Adjust padding to match logo height */
  }
}


/* Optional: reduce navbar padding on smaller screens */
@media (max-width: 575.98px) {
  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
}