p,h3,h2,h4,h5,h6{
  font-family: 'Montserrat', Sans-serif !important;
}
.logo{
  max-width: 150px;
  height: 40px;
}
.nav-link{
  color: var(--dark);
  font-weight: 500;
}
.nav-link:hover{
  color: var(--accent);
  font-weight: 600;
}
/* Custom Button Styles */
.btn-primary-custom {
  background: linear-gradient(90deg, #FF6B00, #FF4500);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(255, 107, 0, 0.4);
  text-decoration: none;
}
.btn-primary-custom:hover {
  background: linear-gradient(90deg, #FF4500, #FF6B00);
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(255, 107, 0, 0.6);
  color: #fff;
}

/* Secondary Button */
.btn-secondary-custom {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary-custom:hover {
  background: #fff;
  color: #FF6B00;
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(255, 255, 255, 0.3);
}




.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.btn-enquiry {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, #FF6B00, #FF4500);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-enquiry:hover {
  background: linear-gradient(90deg, #FF4500, #FF6B00);
  box-shadow: 0 4px 15px rgba(255,107,0,0.5);
}

 .footer-links li {
    margin-bottom: 8px;
  }
  .footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #ffc107; /* Golden highlight on hover */
  }
  .hover-warning:hover {
    color: #ffc107 !important;
  }

  /* services button */
  .service-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Filled button */
.service-button .btn-filled {
  width: 100%;
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #FF6B00, #FF4500);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-button .btn-filled:hover,
.service-button .btn-filled:focus {
  background-color: #0056b3;
  outline: none;
}

/* Outline button */
.service-button .btn-outline {
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  background-color: transparent;
  color: #ff6900;
  border: 2px solid #ff6900;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-button .btn-outline:hover,
.service-button .btn-outline:focus {
  background-color: #007bff;
  color: white;
  outline: none;
}


/* Container card */
.k-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.k-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Icon styles */
.k-card .icon {
  color: #ef6c00; /* vibrant orange as per text-orange */
  font-size: 3.5rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.k-card:hover .icon {
  color: #ff8f00;
}

/* Heading number styles */
.k-card h3 {
  font-weight: 900;
  font-size: 3.2rem;
  color: #333;
  margin-bottom: 0.25rem;
  letter-spacing: 1.5px;
}

/* Small description text */
.k-card small {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Section title and text */


.eyebrow {
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  color: #ef6c00;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* Paragraph text */

.projectcompletepara{
  font-size: 13px !important;
}
/* Responsive tweaks for smaller devices */
@media (max-width: 575.98px) {
  .k-card h3 {
    font-size: 1.6rem;
  }

  .k-card .icon {
    font-size: 3rem;
  }

  
}


.faq-section {
  background-color: #f2f5f5; /* light gray background */
  padding: 3rem 0;
}

.faq-section .section-title {
  font-weight: 900;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 2rem;
  text-align: center;
}

/* Accordion container */
.accordion {
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
}

/* Accordion item */
.accordion-item {
  border: none;
  border-bottom: 1px solid #dee2e6;
}

/* Remove last border */
.accordion-item:last-child {
  border-bottom: none;
}

/* Accordion header button */
.accordion-button {
  background-color: transparent;
  color: #333;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

/* Closed state */
.accordion-button.collapsed {
  color: white;
  background-color: #ef6c00; /* text-orange color */
  margin-top: 5px;
}

/* Open state */
.accordion-button:not(.collapsed) {
  background-color: #ef6c00; /* text-orange color */
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 108, 0, 0.4);
}

/* Accordion body */
.accordion-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .faq-section .section-title {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .accordion-button {
    font-size: 1rem;
  }
}
p {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1rem; /* Base font size */
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Medium devices and up */
@media (min-width: 768px) {
  p {
    font-size: 1.125rem; /* Slightly larger font on tablets and desktops */
    line-height: 1.75;
  }
}

/* Large devices and up */
@media (min-width: 992px) {
  p {
    font-size: 1.125rem;
    max-width: 720px; /* Limit line length for easier reading */
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small devices adjustments */
@media (max-width: 575.98px) {
  p {
    font-size: 0.95rem; /* Slightly smaller font on small phones */
    line-height: 1.5;
  }
}


.videoauto{
  border-radius: 10px;
}

  /* Buttons container fixed bottom on mobile only and full width */
  @media (max-width: 768px) {
    .mobile-contact-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      width: 100%;
      z-index: 9999;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    }
    .mobile-contact-buttons a {
      width: 50%;
      padding: 12px 0 !important;
      text-align: center;
      color: white;
      font-size: 18px;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s;
    }
    .whatsapp-btn {
      background-color: #ff6600;
    }
    .call-btn {
      background-color: #f5b301;
    }
    .mobile-contact-buttons a:hover {
      filter: brightness(0.9);
    }
  }
  /* Hide on desktop */
  @media (min-width: 769px) {
    .mobile-contact-buttons {
      display: none;
    }
  }