@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
  padding: 0%;
  margin: 0%;
  font-family: "Roboto Slab", serif;
}
body {
  font-family: "Roboto Slab", serif;
}


/* 🔹 Responsive Title (Company Name) */
.responsive-title {
  font-size: clamp(16px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* 🔹 Responsive Small Text (Call us now) */
.responsive-small {
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
  line-height: 1.2;
}


/* Offcanvas full height for top */
#mobileMenu.offcanvas-top {
  height: 100vh !important; 
  max-height: 100vh !important;
  overflow-y: auto; 
}

/* 🔹 Offcanvas Main Nav Links */
.offcanvas-custom-nav .nav-link {
  display: block;
  width: 100%;             
  padding: 10px 15px;       
  border-radius: 0;       
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
}


/* Default hr style (white line) */
.offcanvas-custom-nav hr {
  border: none;
  border-top: 1px solid #fff;   
  margin: 0;                    
}

/* Hover effect for main nav links (including hr) */
.offcanvas-custom-nav li:hover,
.offcanvas-custom-nav li:hover + hr {
  background-color: #fff !important;  
}

.offcanvas-custom-nav li:hover .nav-link {
  color: #AE0F07 !important;          
}

/* 🔹 Dropdown Menu Items */
.offcanvas-custom-nav .dropdown-menu .dropdown-item {
  padding: 10px 15px;
  font-family: var(--bs-body-font-family);
  transition: 0.3s ease;
}

/* Hover effect for dropdown items */
.offcanvas-custom-nav .dropdown-menu .dropdown-item:hover {
  background-color: #AE0F07 !important;
  color: #fff !important;
}


/* Disable Bootstrap active completely */
.desktop-nav-links .nav-link.active,
.desktop-nav-links .nav-item.show > .nav-link {
  background: none !important;
  color: #fff !important;
  box-shadow: none !important;
}
  .navbar-nav .nav-link.active,
  .dropdown-menu .dropdown-item.active {
    background-color: #AE0F07 !important;  
  }

/* Main nav links (with rounded pill shape) */
.desktop-nav-links .nav-link {
  color: #fff !important;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  padding: 8px 20px;
}

/* Hover effect for main nav links */
.desktop-nav-links .nav-link:hover,
.desktop-nav-links .dropdown-toggle:hover {
  background-color: #AE0F07 !important;
  color: #fff !important;
}

/* Services main button when dropdown is open */
.desktop-nav-links .nav-item.show > .dropdown-toggle {
  background-color: #AE0F07 !important;
  color: #fff !important;
  border-radius: 50px;
}

/* Dropdown menu items (flat style, no radius) */
.desktop-nav-links .dropdown-menu .dropdown-item {
  font-family: "Roboto", sans-serif;
  border-radius: 0;
  transition: 0.3s ease;
  padding: 8px 20px;
}

/* Hover effect for dropdown items */
.desktop-nav-links .dropdown-menu .dropdown-item:hover {
  background-color: #AE0F07 !important;
  color: #fff !important;
}


/* Global font */
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

/* Carousel container */
.carousel-item {
  background-color: #020303; 
  padding: 40px 0;
}

/* Headings */
.carousel-item h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

/* Paragraph */
.carousel-item p {
  font-size: 1.2rem;
  margin-bottom: 20px; 
}

/* Learn More Button */
.learn-btn {
  display: inline-flex;
  align-items: center;
  background-color: black;
  color: #AE0F07;
  border: 2px solid #AE0F07;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 15px;
}

/* Hover */
.learn-btn:hover {
  color:pink;
}

/* Arrow circle */
.learn-btn span {
  background-color: #AE0F07;
  color: white;
  border-radius: 40px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .carousel-item h1 {
    font-size: 2rem;
  }
  .carousel-item p {
    font-size: 1rem;
  }
  .learn-btn {
    margin-bottom: 30px; 
  }
}


/* Carousel images higt */
.carousel-item {
  height: 700px;  
}

.carousel-item img {
  width: 100%;
  height: 600px;   
  object-fit: cover; 
  display: block;
}




/* Services / Image Cards Section  */

 .card-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    cursor: pointer;
  }

  .card-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); 
    transition: opacity 0.4s ease;
    opacity: 1;
  }

  .card-container:hover .overlay {
    opacity: 0;
  }

  .card-img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
  }

  .card-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #AE0F07;
    color: white;
    border: none;
    border-radius: 0;
    font-weight: bold;
    padding: 12px 0;
    text-align: center;
  }

  /* Small screens adjustments */
  @media (max-width: 575.98px) {
    .card-btn {
      font-size: 0.9rem;
      padding: 10px 0;
    }
  }

  /* Optional: Image slide animation */
  @keyframes slideInRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }

  .img-slide-right {
    animation: slideInRight 1s ease-out forwards;
  }


.services-section {
  position: relative;
  background-image: url('/images/shutterstock_1123334372-356741e3-1920w.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.services-section .overlay-red {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.5);
  z-index: 1;
}

.z-2 { z-index: 2; }

.section-hr {
  width: 100px;
  height: 5px;
  background-color: #AA0F08;
  border: none;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  margin-left: 0;
}

.fw-bold { font-weight: bold; }

.img-slide-right {
  animation: slideInRight 1s ease-out forwards;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.responsive-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
 /* Default HR Style */
  .section-hr {
    width: 50px; /* Same as your design */
    border: 2px solid #fff;
    margin: 8px 0;
  }

  /* Small screens me HR center */
  @media (max-width: 767px) {
    .section-hr {
      margin-left: auto;
      margin-right: auto;
    }
  }

@media (max-width: 767.98px) {
  .responsive-img {
    height: 550px; 
    width: 80%;     
    max-height: none;
    object-fit: cover;
    margin: 0 auto; 
  }
  .services-section h2,
  .services-section h3,
  .services-section p {
    text-align: center !important;
  }
}

/* Image slide animation */
@keyframes slideInRight {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Small screens adjustments */
@media (max-width: 767.98px) {
  .responsive-img {
    height: auto;
    max-height: 400px;
  }
  .services-section h2,
  .services-section h3,
  .services-section p {
    text-align: center !important;
  }
}


/* EXTERNAL CSS  */
.clients-section {
  font-family: "Roboto", sans-serif;
}


.clients-icon path {
  fill: #AA0F08;
}

.clients-hr {
  width: 100px;
  height: 5px;
  background-color: #AA0F08;
  border: none;
  margin: 1rem auto;
  display: block;
}

.text-red {
  color: #AA0F08;
}

/* Responsive: small screens */
@media (max-width: 767.98px) {
  .clients-section .col-12 {
    text-align: center !important;
  }
}

/* IMAGE CARD SECTION START  */
.image-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  transition: background-color 0.4s ease;
}

.image-card:hover .overlay {
  background-color: rgba(0,0,0,0.25); 
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .image-card img {
    height: 200px;
  }
}

.contact-section {
  background-color: #000; 
  position: relative;
}

/* Divider image */
.divider-img {
  object-fit: contain;
  max-height: 300px;
}

/* Contact Form */
.contact-section form {
  width: 100%;
  max-width: 600px; 
  margin: 0 auto;
}

/* Button same as before with hover effect */
/* .contact-section button {
  background-color: #000;
  color: red;
  border: 2px solid red;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease, background-color 0.3s ease;
} */

.contact-section button:hover {
  color: pink;
}

/* Small screen adjustments */
@media (max-width: 576px) {
  .contact-section form {
    width: 95%; 
  }
  .contact-section .text-md-start,
  .contact-section .text-md-center {
    text-align: center !important;
  }
  .contact-section .mb-md-0 {
    margin-bottom: 1.5rem !important;
  }
  .contact-section .form-check p {
    font-size: 0.9rem; 
  }
}


/* Footer nav buttons */
.nav-btn {
  background-color: #fff;
  color: #a00f08;
  border: 1px solid #a00f08;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #a00f08;
  color: #fff;
}

/* Small screen adjustments */
@media (max-width: 576px) {
  .footer .d-grid {
    width: 100%;
  }
  .footer iframe {
    height: 200px; 
  }
}

@media (max-width: 576px) {
  footer p {
    line-height: 2.3;
  }
}
.justify-text {
  text-align: justify;
  text-justify: inter-word; 
}


.nav-btn:hover {
  background-color: #aa0f08 !important;
  color: white !important;
}
    /* animetion */
    /* Fade-in Animation */
/* Image Animation (Bottom to Top) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text Animation (Right to Left) */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply Animation */
.carousel-item.active img {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

.carousel-item.active h1,
.carousel-item.active p,
.carousel-item.active a {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Delay for staggered text effect */
.carousel-item.active h1 { animation-delay: 0.2s; }
.carousel-item.active p  { animation-delay: 0.4s; }
.carousel-item.active a  { animation-delay: 0.6s; }



/* About Section */
.about-section {
  background-color: #9c2c26;
  color: white;
  padding: 60px 20px 120px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  text-align: center;
  overflow: visible;
  font-family: 'Bootstrap', sans-serif;
}

.about-section .text-animate {
  max-width: 800px;
  margin: auto;
  animation: fadeSlide 1.3s ease-out;
}

.about-section h3 {
  text-transform: uppercase;
  color: red;
  font-size: 1rem;
}

.about-section h2 {
  font-weight: bold;
  font-size: 2rem;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.5;
}

.about-section a {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: red;
  border: 2px solid red;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 15px;
}

.about-section a:hover {
  color: pink;
}

.about-section a span {
  background-color: red;
  color: white;
  border-radius: 40px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Image Animation */
.animated-img {
  animation: slideUp 1.5s ease-out;
  position: relative;
  bottom: 100px;
  max-width: 90%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-family: 'Bootstrap', sans-serif;
}

/* Animations */
@keyframes slideUp {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeSlide {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .about-section { padding: 40px 15px 100px; }
  .about-section h2 { font-size: 1.5rem; }
  .about-section p { font-size: 0.95rem; }
  .animated-img { bottom: 80px !important; max-width: 95% !important; }
}

@media (max-width: 576px) {
  .about-section { padding: 30px 10px 80px; }
  .about-section h2 { font-size: 1.3rem; }
  .about-section p { font-size: 0.9rem; }
  .animated-img { bottom: 60px !important; }
}

/* servise */
.service-hero, 
.service-hero h2, 
.service-hero h3, 
.service-hero p, 
.service-hero a {
  font-family: 'Roboto', sans-serif;
}

/* Section Styling */
.service-hero {
  background-color: #9c2c26;
  color: white;
  padding: 60px 20px 120px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  text-align: center;
  overflow: visible;
  max-width: 100%;
  margin: auto;
}

.service-hero h3 {
  text-transform: uppercase;
  color: red;
  font-size: 1rem;
}

.service-hero h2 {
  font-weight: bold;
  font-size: 2rem;
}

/* Button Styling */
.btn-outline-danger {
  border: 2px solid red;
  color: red;
  font-weight: bold;
  border-radius: 50px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-danger:hover {
  color: pink;
  border-color: pink;
}

.btn-outline-danger span {
  background-color: red;
  color: white;
  border-radius: 40px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Image Styling */
.image-container {
  position: relative;
  text-align: center;
}

.animated-img {
  animation: slideUp 1.2s ease-out;
  position: relative;
  bottom: 100px;
  max-width: 90%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes slideUp {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeSlide {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.text-animate { animation: fadeSlide 1.3s ease-out; }
.btn-animate { animation: fadeSlide 1.5s ease-out; }

/* Responsive */
@media (max-width: 992px) {
  .service-hero {
    padding: 40px 15px 100px;
  }
  .service-hero h2 { font-size: 1.5rem; }
  .animated-img { bottom: 80px !important; max-width: 95% !important; }
}

@media (max-width: 576px) {
  .service-hero {
    padding: 30px 10px 80px;
  }
  .service-hero h2 { font-size: 1.3rem; }
  .animated-img { bottom: 60px !important; }
}
 /* sevics crds section */
 /* ------------------ Card Hover ------------------ */
.detail-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.detail-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* ------------------ Reduce Top Padding for Section ------------------ */
.section-cards {
  padding-top: 2rem; 
  padding-bottom: 2rem;
}



/* ------------------ Section Height & Overlay ------------------ */
.coating-section {
  background: url('https://images.pexels.com/photos/337909/pexels-photo-337909.jpeg') center/cover no-repeat;
  height: 80vh;
  position: relative;
}
.coating-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

/* ------------------ Text Alignment ------------------ */
.coating-text {
  color: white;
}
@media (max-width: 768px) {
  .coating-text {
    text-align: center !important;
  }
}

/* ------------------ Accordion Styles ------------------ */
.accordion-button {
  background-color: transparent !important;
  color: white !important;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  position: relative;
}
.accordion-button:after {
  display: none; 
}
.toggle-icon {
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed) .toggle-icon {
  transform: rotate(45deg); 
}
.accordion-body {
  color: white;
}


/* ------------------ Card Hover ------------------ */
.detail-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.detail-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* ------------------ Buttons ------------------ */
.btn-red {
  border: 2px solid #b02121;
  color: #b02121;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-red:hover {
  background-color: #b02121;
  color: white;
}

/* ------------------ Small Screen Text Center ------------------ */
@media (max-width: 768px) {
  .card-title, .btn-red, ul {
    text-align: center !important;
  }
  .card-body ul {
    padding-left: 0;
    list-style-position: inside;
  }
}


/* ------------------ Stats Row ------------------ */
.stats-row h3 {
  margin: 0;
}

/* ------------------ Buttons ------------------ */
.btn-red {
  background-color: #b02121;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-red:hover {
  background-color: #8a1717;
  color: white;
}

/* ------------------ Cards ------------------ */
.bottom-card {
  background: white;
  color: black;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
}

/* ------------------ Small Screen ------------------ */
@media (max-width: 768px) {
  .text-center-sm {
    text-align: center !important;
  }
  .row.text-white {
    text-align: center;
  }
  .bottom-card {
    margin-bottom: 20px;
  }
}

/* Additional Services List */
.additional-services-list {
  line-height: 1.8;
  font-size: 1.1rem;
  list-style-type: disc;
  padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .additional-services-list {
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
  }
}


/* Additional Services List */
.additional-services-list {
  line-height: 1.8;
  font-size: 1.1rem;
  list-style-type: disc;
  padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .additional-services-list {
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
  }
}

/* sub pages */
/* Air Duct Cleaning Section */
.page-heading {
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container.py-5 .row {
    text-align: center;
  }

  .container.py-5 .row p {
    text-align: center;
  }

  .container.py-5 .row img {
    margin: 0 auto;
    display: block;
  }
}
 
/* carpet css */
/* Page */
.page-heading {
  font-weight: bold;
}

/* Responsive adjustments for Air Duct and Carpet Cleaning sections */
@media (max-width: 768px) {
  .container.py-5 .row {
    text-align: center;
  }

  .container.py-5 .row p {
    text-align: center;
  }

  .container.py-5 .row img {
    margin: 0 auto;
    display: block;
  }
}

/* tem section */
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* For small screens */
}

.team-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.team-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.team-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.team-text h2 {
  color: #ff0000;
  margin-bottom: 10px;
}

.team-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

/* Small screen adjustments */
@media (max-width: 768px) {
  .team-text {
    text-align: center;
  }
}

.call-btn {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  background-color: #fff; 
  color:  #b02121; 
  font-weight: bold;
  border: 2px solid  #b02121;
  border-radius: 30px;
  padding: 12px 20px;
  text-decoration: none; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  z-index: 9999; 
  transition: all 0.3s ease;

    /* ✅ Animation */
  animation: floatUpDown 2s ease-in-out infinite;
}

.call-btn:hover {
  background-color:  #b02121;
  color: #fff;
}


/* ✅ Keyframes for floating effect */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px); /* moves up slightly */
  }
}