/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}



/* Navbar Background & Padding */
.custom-navbar {
  background-color:  #004e89;
  padding: 12px 0;
  z-index: 999;
}

/* Logo / Brand */
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffc107 !important;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.logo-text:hover {
  transform: scale(1.08);
}

/* Nav Items */
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  padding: 8px 15px;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-animated::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffc107;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-animated:hover::after {
  width: 100%;
}

.nav-animated:hover {
  color: #ffc107 !important;
}

/* Book Now Button */
.navbar .btn-warning {
  border-radius: 20px;
  font-weight: 700;
  padding: 8px 18px;
  font-size: 0.95rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.navbar .btn-warning:hover {
  background: #ffca2c;
  transform: scale(1.05);
}

/* Responsive navbar adjustments */
@media (max-width: 991.98px) {
  .navbar-toggler {
    border-color: #ffc107;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,193,7, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .navbar-nav {
    background: #111;
    padding: 10px 0;
    border-radius: 10px;
  }

  .navbar-nav .nav-item {
    text-align: center;
    padding: 8px 0;
  }

  .navbar .btn-warning {
    margin-top: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}


/* 🔁 Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
}
h1, h2, h3 {
  font-weight: bold;
}


/* Highlight Bar */
.highlight-strip {
  background-color: #ffefc1;
  color: #000;
  font-weight: bold;
  padding: 10px;
  font-size: 16px;
}
.hero-section {
  background: url('./images/homeApplianceAll.webp') center center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1px);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  position: relative;
}
/* Booking Form Container */
#bookingForm {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Form Title */
#bookingForm h4 {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

/* Input & Select Styling */
#bookingForm .form-control,
#bookingForm .form-select {
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#bookingForm .form-control:focus,
#bookingForm .form-select:focus {
  border-color: #ff9900;
  box-shadow: 0 0 0 0.15rem rgba(255, 153, 0, 0.3);
}

/* Textarea */
#bookingForm textarea {
  resize: none;
}

/* Submit Button */
#bookingForm button {
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  background: #ff9900;
  border: none;
  color: #fff;
  transition: background 0.3s ease;
}

#bookingForm button:hover {
  background: #e68900;
}

/* Spinner Overlay */
.spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 6px solid #ddd;
  border-top-color: #ff9900;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



.services {
  background-color: #f9f9f9;
  padding: 60px 15px;
}

.services h2 {
  font-size: 2rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d3557;
}

.card-text {
  font-size: 0.95rem;
  color: #444;
}

/* Icon Image */
.card-img-top {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-top: 10px;
}

/* Responsive: Small devices */
@media (max-width: 768px) {
  .services h2 {
    font-size: 1.6rem;
  }

  .card {
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .card-img-top {
    width: 70px;
    height: 70px;
  }
}

/* Optional Animation */
@keyframes floatCard {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.card:hover {
  animation: floatCard 0.6s ease-in-out;
}




/* Why Us */
.why-us {
  padding: 40px 20px;
  background: #e6f2ff;
  text-align: center;
}
.why-us ul {
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
}
.why-us li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Contact */
.contact {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}
.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact input,
.contact select,
.contact textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}


footer {
  background-color: #222;
  color: #ccc;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: #ffc107;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}




/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }
  nav ul li {
    padding: 5px 0;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
  }
  .overlay h1 {
    font-size: 2rem;
  }

  .service-list {
    flex-direction: column;
    align-items: center;
  }

}


.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: radial-gradient(circle at 25% 30%, #28a745, #1d7e37);
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 16px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-call:hover {
  background-color: #218838;
  transform: scale(1.1);
}

/* Owl eye style */
.sticky-call::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 10px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  box-shadow: 25px 0 white;
  opacity: 0.15;
  pointer-events: none;
}

.sticky-call i {
  font-size: 20px;
  z-index: 1;
}

/* Show only on smaller screens if needed */
@media (min-width: 1024px) {
  .sticky-call {
    display: block;
  }
}
/* Spinner Overlay style (unchanged) */
.spinner-overlay{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
}

/* Spinner circle animation */
.spinner{
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255,255,255,0.3);
  border-top-color: #ffc107; /* yellow highlight */
  border-radius: 50%;
  animation: spin 1s linear infinite, pulse 1.5s ease-in-out infinite;
}

/* Rotate animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Light fade/pulse animation */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,193,7, 0.6); }
  50% { box-shadow: 0 0 10px 5px rgba(255,193,7, 0.2); }
}


.about-us {
  background: #f8f9fa;
  padding: 60px 0;
}

.about-us h2 {
  font-weight: 700;
  color: #222;
  position: relative;
}

.about-us h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #007bff;
  margin: 12px auto 0;
}

.about-us p.lead {
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

.about-us ul {
  padding-left: 0;
}

.about-us li {
  font-size: 16px;
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
  color: #333;
}

.about-us li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.about-us img {
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-us img:hover {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .about-us {
    text-align: center;
  }

  .about-us ul {
    text-align: left;
    margin-top: 20px;
  }

  .about-us img {
    max-width: 90%;
    margin: auto;
  }
}

/*---------------------------
  CUSTOMER REVIEWS
---------------------------*/
reviews-section
/*---------------------------
  GALLERY SECTION
---------------------------*/
.gallery-section {
  padding: 60px 20px;
  background: #fff;
}
.gallery-section h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gallery-grid img:hover {
  transform: scale(1.05);
}


/*---------------------------
  LOCATION SECTION
---------------------------*/
.location-section {
  background: #f0f8ff;
  padding: 60px 20px;
}
.location-section h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.location-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.location-list span {
  background: #198754;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/*---------------------------
  FAQ SECTION
---------------------------*/
.faq-section {
  padding: 60px 20px;
  background: #fff3cd;
}
.faq-section h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.accordion-button:not(.collapsed) {
  background-color: #ffc107;
  color: #000;
}
.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  border: none;
}
.accordion-button {
  font-weight: 600;
}

.why-us-section {
  background: #f9f9f9;
}

.section-title {
  font-weight: 700;
  color: #222;
}

.why-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-card h6 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

@media (max-width: 576px) {
  .why-card {
    padding: 20px 15px;
  }

  .why-card h6 {
    font-size: 15px;
  }
}
.seo-description {
  background-color: #ffffff;
  padding: 3rem 1rem;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}

.seo-description h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0c3c78;
  margin-bottom: 1.5rem;
}

.seo-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444444;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  text-align: center;
}

@media (min-width: 768px) {
  .seo-description h2 {
    font-size: 2.5rem;
  }

  .seo-description p {
    font-size: 1.1rem;
    text-align: justify;
  }
}
