*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: #f6f6f6;
    color: #333;
    line-height: 1.6;
}
:root {
    --primary: #199aa1;
    --primary-dark: #0d7a80;
    --primary-light: #e1f5f7;
    --accent: #f5a623;
    --dark: #2d3748;
    --light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.form-valid{
    color: #000;
}

/* =========sticky-button====== */

/* WhatsApp Sticky Button */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #129b44;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .whatsapp-sticky-btn i {
    font-size: 28px;
    transition: all 0.3s ease;
  }
  
  .whatsapp-sticky-btn span {
    position: absolute;
    font-size: 0;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 600;
  }
  
  .whatsapp-sticky-btn:hover {
    width: 160px;
    border-radius: 30px;
    background: #128C7E;
  }
  
  .whatsapp-sticky-btn:hover i {
    transform: translateX(-30px);
  }
  
  .whatsapp-sticky-btn:hover span {
    font-size: 14px;
    opacity: 1;
    transform: translateX(20px);
  }
  
  /* Pulse Animation */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
  
  .whatsapp-sticky-btn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    animation: pulse 2s infinite;
  }
  
  /* Mobile Responsiveness */


/* =======================header==================== */

header {
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.top-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--dark) 0%, #1a202c 100%);
    padding: 12px 70px;
    color: var(--white);
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

/* Top Header Styles */
.top-header-contact {
    display: flex;
    gap: 30px;
}

.top-header-contact-icon-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.top-header-contact-icon-box i {
    color: var(--primary);
    font-size: 16px;
}

.top-header-contact a {
    color: var(--white);
    transition: var(--transition);
}

.top-header-contact a:hover {
    color: var(--primary-light);
}

.top-header-right-social {
    display: flex;
    gap: 16px;
}

.top-header-right-social a {
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: rgba(255,255,255,0.1);
}

.top-header-right-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Main Header Styles */
.main-header {
    display: flex;
    align-items: center;
    padding: 20px 70px;
    justify-content: space-between;
}

.main-header-logo img {
    height: 50px;
    transition: var(--transition);
}

.main-header.scrolled .main-header-logo img {
    height: 40px;
}

.main-header-menus ul {
    display: flex;
    gap: 45px;
}

.main-header-menus li {
    position: relative;
}

.main-header-menus a {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-header-menus a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-header-menus a:hover:after,
.main-header-menus .current-menu-item a:after {
    width: 100%;
}

.main-header-menus a:hover {
    color: var(--primary);
}

.submenu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px 0;
    display: block !important;
}

.main-header-menus li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
    display: block;
    width: 250px;
}

.submenu li {
    padding: 0;
}

.submenu a {
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 400;
    transition: var(--transition);
}

.submenu a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding-left: 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(25, 154, 161, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 154, 161, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: var(--primary);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--primary-dark);
}

/* ======================
  bannner
   ====================== */
   .banner{
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  /* ======================
     SLIDE STYLES
     ====================== */
  .slide {
    position: relative;
    width: 100%;
    display: flex;
    background-image: url('../images/banner-1.webp');
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:  3rem 0;
    height:550px;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 39, 53, 0.7);
    z-index: 1;
  }
  
  /* ======================
     CONTENT CONTAINER
     ====================== */
  .slide-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    text-align: center;
  }
  
  /* ======================
     TYPOGRAPHY
     ====================== */
  .slide-content h5 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 1rem ;
    line-height: 1.4;
  }
  
  .slide-content h5 span {
    font-weight: 600;
    color: #18C7D0;
    font-size: 20px;
  }
  
  .slide-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }
  
  .slide-content h1 span {
    color: #18C7D0;
  }
  
  .slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
 
  }
  
  /* ======================
     SERVICES GRID
     ====================== */
  .services {
    gap: 1rem;
    margin:30px 0 24px 0 ;
  }
  
  .services > div {
    flex: 1 1 200px;
     padding: 10px ;
    background-color: #EBF2F7;
    border-radius: 5px;
    color: #222937;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    transition: all 0.3s;
  }
  
  .services > div:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-5px);
  }
  
  /* ======================
     BUTTONS
     ====================== */
  .buttons {
    gap: 1rem;
    margin-top: 30px;
  }
  
  .btn-whatsapp, .btn-book {
    padding: 14px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 19px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
  }
  
  .btn-whatsapp {
    background: #25D366;
    color: white;
  }
  
  .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
  }
  
  .btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.2rem;
  }
  
  .btn-book {
    background: #4e9af1;
    color: white;
    margin-left: 10px;
  }
  
  .btn-book:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
  }
#about{
    padding: 40px 0;
    width: 100%;
    /*background: #fff;*/
}
.about-box{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.about-image{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.about-image img{
    width: 85%;
}
.about-box-content{
    padding: 10px;
}
.about-box-content h5{
    background: #46a5a52a;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: 600;
}
.about-box-content h2{
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.about-box-content p{
    font-size: 16px;
    margin-bottom: 35px;
    color: var(--dark);
}
.about-box-content a{
    color: var(--white);
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

/* ==================services======== */

#services{
    padding: 40px 0;
    width: 100%;
}
.service-heading{
    text-align: center;
    margin-bottom: 40px;
}
.service-heading h5{
    /* background: #46a5a52a; */
    background-color: #f5a623;
    color: #fff;
    border: 2px solid #e89202cc;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 50px;
    margin: 0 auto 2px auto;
    font-weight: 600;
}
.service-heading h2{
    font-size: 2.8rem;
    margin-bottom: 7px;
    color: var(--primary);
}
.service-heading p{
    font-size: 16px;
    margin-bottom: 35px;
    width: 70%;
    margin: 0 auto;
}
.service-box{
    padding: 20px 15px;
    width: 90%;
    height: 100%;
    border-radius: 15px;
    background: #fff;
}
.service-box:hover{
    border-bottom: 5px solid  var(--dark);
    transition: 1s ease all;
}
.service-box-image{
    width: 100%;
}
.service-box-image img{
    width: 100%;
}
.service-box-title{
    padding: 10px 0;
}
.service-box-title h3{
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.service-box-desc{
    font-size: 14px;
    margin-bottom: 30px;
    color: var(--dark);
}
.service-box-button a{
    color: var(--white);
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}


/* ===================why-choose=========== */

#why-choose{
    padding: 40px 0;
    width: 100%;
    background: var(--white);
}
.why-choose-heading{
    text-align: center;
    margin-bottom: 40px;
}
.why-choose-heading h5{
    /* background: #46a5a52a; */
    background-color: #f5a623;
    border: 2px solid #e89202cc;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 50px;
    margin: 0 auto 2px auto;
    font-weight: 600;
    color: #fff;
}
.why-choose-heading h2{
    font-size: 2.8rem;
    margin-bottom: 7px;
}
.why-choose-heading p{
    font-size: 16px;
    margin-bottom: 35px;
    width: 70%;
    margin: 0 auto;
}
.why-choose-box{
    padding: 10px;
    height: 100%;
}
.why-choose-inner-box{
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    gap: 40px;
    margin-bottom: 30px;
    height: 150px;
    transition: var(--transition);
}
.why-choose-inner-box:hover{
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.why-choose-inner-icon{
    width: 120px;
}
.why-choose-inner-icon img{
    width: 100%;
}
.why-choose-content h3{
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.why-choose-content p{
    font-size: 14px;
    color: var(--dark);
}

/* ======================service-sectors=========== */

#service-sector{
    padding: 40px 0;
    width: 100%;
}
.service-sector-box{
    padding: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}
.service-sector-box-content h4{
    font-size: 2rem;
    margin-bottom: 25px;
}
.service-sector-box-content p{
    margin-bottom: 30px;
    color: var(--dark);
}
.sector-main-box{
    display: block;
    padding: 20px 10px;
    background: #fff;
    border-radius: 8px;
}
.service-sector-image{
    width: 60%;
    height: 40%;
    margin: 0 auto;
}
.service-sector-image img{
    width: 100%;
    height: 100%;
}
.service-sector-image-content{
    text-align: center;
    margin-top: 20px;
}
.service-sector-image-content h3{
    background: var(--primary-light);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin: 15px 0 10px 0;
}
.service-sector-image-content p{
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 20px;
}
.service-sector-image-content a{
    color: var(--white);
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

/* ==================service-pricing========== */

#service-pricing{
    padding: 40px 0;
    width: 100%;
    background: var(--white);
}
.service-pricing-heading{
    text-align: center;
    margin-bottom: 40px;
}
.service-pricing-heading h5{
    /* background: #46a5a52a; */
    background-color: #f5a623;
    color: #fff;
    border: 2px solid #e89202cc;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 50px;
    margin: 0 auto 2px auto;
    font-weight: 600;
}
.service-pricing-heading h2{
    font-size: 2.8rem;
    margin-bottom: 7px;
}
.service-pricing-heading p{
    font-size: 16px;
    margin-bottom: 35px;
    width: 70%;
    margin: 0 auto;
}
.service-pricing-box{
    padding: 20px;
    height: 400px;
    /* background: #e1e1e1; */
    box-shadow: -1px 0px 7px 4px rgba(26, 26, 26, 0.1);
    margin: 30px 0 20px 0;

}
.service-pricing-image{
    width: 80%;
    height: 50%;
    margin: 0 auto;
}
.service-pricing-image img{
    width: 100%;
    height: 100%;
    border-bottom: 1px solid var(--primary);
    opacity: 0.9;
}
.service-pricing-content{
    text-align: center;
    margin-top: 20px;
}
.service-pricing-content h5{
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.service-pricing-content h4{
    font-size: 1.1rem;
    margin-bottom: 40px;
    border: 1px solid var(--primary);
    padding: 5px 10px;
}
.service-pricing-content h4 span{
    font-size: 1.1rem;
    color: var(--primary);
}
.service-pricing-content a{
    color: var(--white);
    background: #5f5f5f;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}
.pricing-second{
    margin-left:-55px;
}
/* =================service-process========== */

#service-process{
    padding: 40px 0;
    width: 100%;
}
.service-process-heading{
    text-align: center;
    margin-bottom: 40px;
}
.service-process-heading h5{
    /* background: #46a5a52a; */
    background-color: #f5a623;
    color: #fff;
    border: 2px solid #e89202cc;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 50px;
    margin: 0 auto 2px auto;
    font-weight: 600;
}
.service-process-heading h2{
    font-size: 2.5rem;
    margin-bottom: 7px;
}
.service-process-heading p{
    font-size: 16px;
    margin-bottom: 35px;
    width: 70%;
    margin: 0 auto;
}
.service-box-wrapper {
  display: flex;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.service-process-box {
  background: white;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(18, 156, 163, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e1f0f1;
}

.service-process-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(18, 156, 163, 0.15);
}

.step-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 50px;
  font-weight: 800;
  color: rgba(18, 156, 163, 0.08);
  line-height: 1;
  z-index: 1;
}

.service-box-content {
  position: relative;
  z-index: 2;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: #e1f7f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-wrapper svg {
  color: #129ca3;
  width: 28px;
  height: 28px;
}

.service-box-content h3 {
  font-size: 1.5rem;
  color: #2a3436;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-box-content p {
  color: #5a6a72;
  line-height: 1.6;
  font-size: 16px;
}

.box-arrow {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: #129ca3;
  font-size: 24px;
  opacity: 0.6;
  display: none;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.whatsapp-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: #05a440;
  color: white;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.secondary-btn {
  background: #129ca3;
  color: white;
}

.secondary-btn:hover {
  background: #0d7a80;
  transform: translateY(-2px);
}

/* ===================specialze========= */

#specialize{
    width: 100%;
    padding: 40px 0;
    background: #fff;
}
.specialize-box{
    padding: 10px;
}
.specialize-box-content{
    padding: 10px 0;
}
.specialize-box-content h5{
    background: #46a5a52a;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}
.specialize-box-content h2{
    font-size: 1.9rem;
    padding-bottom: 10px;
}
.specialize-box-content p{
    text-align: justify;
}
.specialize-box-image{
    width: 90%;
    height: 400px;
    margin: 0 auto;
}
.specialize-box-image img{
    width: 100%;
    height: 100%;
}

/* ===============faqs============ */

#faq{
    width: 100%;
    padding: 40px 0;
}
.faq-box{
    padding: 10px;
}
.faq-image{
    width: 85%;
    float: right;
}
.faq-image img{
    width: 100%;
    
}
.accordion {
  max-width: 600px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #e1e8eb;
  margin-bottom: 10px;
}

.accordion-header {
  width: 100%;
  padding: 20px 0;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #2a3436;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: #129ca3;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;

}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 20px;
}

.accordion-content p {
  color: #5a6a72;
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-cta p {
  font-size: 18px;
  color: #5a6a72;
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #05a440;
  color: white;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}


/* =========================cta============ */

#cta {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.cta-box {
    height: 100%;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

.cta-box-image {
    background-image: url('../images/services-2.webp');
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
}

.right-cta {
    background: var(--primary);
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
}

.cta-box-content {
    width: 100%;
}

.emergency-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.right-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.phone-number svg {
    width: 20px;
    height: 20px;
}

.phone-number a {
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.phone-number a:hover {
    opacity: 0.9;
}

.right-cta p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
}

/* ====================breadcrumbs====== */

#breadcrumbs{
    width: 100%;
    position: relative;
}
.breadcrums-image{
    width: 100%;
    height: 350px;
    position: relative;
}
.breadcrums-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breadcrums-image::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222a38d2;
}
.breadcrums-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.breadcrums-content h5{
    background: #9bf2f27b;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}
.breadcrums-content h1{
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.breadcrums-content p{
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.breadcrumb-icon{
    position: absolute;
    bottom: -36px;
    left: 47%;
    background: #2b313e;
    padding: 15px 17px;
    border-radius: 50%;
    border: 8px solid #fff;
}
.breadcrumb-icon i{
    font-size: 1.5rem;
    color: var(--white);
}

/* ==============contact-page-details========= */

#contact-details {
    width: 100%;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-details-box {
    width: 90%;
    padding: 30px 20px;
    height: 100%;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    margin: 0 auto;
}

.contact-details-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-details-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    background: rgba(52, 152, 219, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact-details-box h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-details-box p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
}

.contact-link i {
    margin-left: 5px;
    font-size: 0.9rem;
}

/* ==============contact form and map============ */

#contact-form-map {
    padding: 80px 0;
    background: #fff;
}

.contact-form-container, .map-container {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    height: 100%;
}

.contact-form-container h2, .map-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.subtitle {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Form Styling */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
    background: #fff;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #95a5a6;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #ffffff;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #03474a
}

/* Submit Button */
.submit-btn {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.submit-btn i {
    margin-left: 8px;
}

/* Map Styling */
.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==================service-pages========== */

.service-content-i{
    width: 100%;
    padding: 70px 0 40px 0;
    background: #fff;
}
.service-content-i-title{
    text-align: center;
}
.service-content-i-title h2{
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.service-content-i-title p{
    font-size: 1rem;
    margin-bottom: 20px;
}

/* ===================pricing======== */

.pricing-section {
    padding: 40px 0;
    width: 100%;
    /* background: #f8f9fa; */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary-dark);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.service-category {
    margin-bottom: 40px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    /* border-bottom: 2px solid #3498db; */
    padding-bottom: 10px;
    display: inline-block;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3a3a3a !important;
}
.service-includes{
    font-size: 1rem;
    font-weight: 600;
    color: #3a3a3a !important;
}
.benefits-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: #2ecc71;
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #129b44;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ==================installation procing======== */

.installation-pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.package-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary);
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.premium {
    border-top: 4px solid var(--primary);
}

.package-header {
    padding: 25px;
    background: #f7fafc;
    border-bottom: 1px solid #edf2f7;
    position: relative;
}

.package-header h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.install-price {
    padding-top: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}


.package-includes {
    padding: 20px 25px;
    border-bottom: 1px solid #edf2f7;
}

.package-includes h4 {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.package-includes h4 i {
    color: #38a169;
    margin-right: 8px;
}

.package-includes ul {
    list-style: none;
    padding-left: 25px;
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.package-includes li {
    position: relative;
    padding: 5px 0;
    color: #4a5568;
}

.package-includes li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.addons-section {
    padding: 20px 25px;
}

.addons-section h4 {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.addons-section h4 i {
    color: #3182ce;
    margin-right: 8px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.addon-item {
    background: #f7fafc;
    padding: 12px 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-name {
    font-weight: 500;
    color: #2d3748;
}

.addon-price {
    font-weight: 600;
    color: var(--primary);
}

.benefits-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    margin-top: 30px;
}

.benefits-section h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.benefits-section h3 i {
    color: #f6ad55;
    margin-right: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #718096;
    font-size: 0.95rem;
}

.cta-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cta-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.cta-btn.phone {
    background: #2d3748;
    color: white;
}

.cta-btn.phone:hover {
    background: #1a202c;
    transform: translateY(-3px);
}

.cta-btn.whatsapp {
    background: #25d366;
    color: white;
}

.cta-btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ================content-ii========== */

.content-ii{
    width: 100%;
    padding: 10px 0 10px 0;
    background: #fff;
}
.content-ii h3{
    color: var(--primary);
    font-size: 1.9rem;
    padding: 20px 0;
}
.content-ii ul{
    padding: 20px 0;
}
.content-ii li{
    margin-left: 30px;
    list-style: disc;
}

/* ===============installation services===== */

.installation-services {
    padding: 80px 0;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header .subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsive Design */


/* ====================residential========== */

.inner-banner {
    width: 100%;
    position: relative;
}

.inner-hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.741);
    display: flex;
    align-items: center;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
    gap: 40px;
}

.text-content {
    flex: 1;
    max-width: 50%;
}

.text-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.feature-item i {
    color: #3498db;
}

.form-content {
    flex: 0 0 450px;
}

.booking-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-form h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
    background: white;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}



/* =================aircon-solutions=========== */

.aircon-solutions-section {
    padding: 40px 0 20px 0;
    background: #fff;
}
.solutions-header {
    text-align: center;
    margin-bottom: 50px;
}

.solutions-main-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.solutions-main-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.solutions-intro {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-content-wrapper {
    display: flex;
    gap: 40px;
}

.solutions-main-content {
    flex: 2;
}

.solutions-description {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.unit-types-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.unit-type-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.unit-type-card:hover {
    transform: translateY(-5px);
}

.unit-type-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.unit-type-description {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.unit-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 3rem;
    color: rgba(52, 152, 219, 0.1);
    z-index: 1;
}

/* Sidebar Styles */
.solutions-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-package-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #3498db;
}

.package-icon {
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 15px;
}

.package-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.package-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.package-link {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.package-link i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.package-link:hover {
    color: #2980b9;
}

.package-link:hover i {
    transform: translateX(5px);
}

/* ==================we solve============== */

/* Comprehensive Repair Section Styling */
.comprehensive-repair {
    padding: 40px 0;
    background: #f8fafc;
}

.comprehensive-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.comprehensive-section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.comprehensive-section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.comprehensive-section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    background: #3498db;
    color: white;
    font-size: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px auto 20px;
    position: relative;
    z-index: 1;
}

.problem-card h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding: 0 20px;
}

.problem-content {
    padding: 0 25px 25px;
    color: #4a5568;
    line-height: 1.7;
}

.issue-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.issue-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.issue-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #3498db;
    position: absolute;
    left: 0;
}

.repair-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #3498db;
    padding: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-top: 1px solid #edf2f7;
}

.repair-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.repair-cta:hover {
    background: #3498db;
    color: white;
}

.repair-cta:hover i {
    transform: translateX(5px);
}

/*=================privacy-policy=========*/

#privacy-policy{
    width: 100%;
    padding: 40px 0;
}

.privacy-policy-content{
    width: 100%;
}
.privacy-policy-content h2{
    font-size: 1.6rem;
    color: var(--primary-dark);
    padding: 10px 0;
}
.privacy-policy-content h3{
    font-size: 1.3rem;
    color: var(--primary-dark);
    padding-top: 15px;
}
.privacy-policy-content p{
    padding: 10px 0 5px 0;
}


/* ==================above-footer============ */

#above-footer{
    width: 100%;
    padding: 40px 0;
}
.above-footer-heading{
    text-align: center;
    padding: 10px 0;
}
.above-footer-heading h3{
    font-size: 2.5rem;
    font-weight: 600;
}
.above-footer-heading p{
    font-size: 1.1rem;
    margin-top: 10px;
}
.location-title{
    padding: 10px 0;
    text-align: center;
}
.location-title h4{
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0;
    color: var(--white);
    background: var(--primary);
}
.locations{
    margin: 10px 20px;
    border-right: 1px solid #ccc;
}
.locations ul li{
    padding: 7px 0 0 25px;
    position: relative;

}
.locations ul li::before{
    left: 0;
    position: absolute;
    content: '\27A4';
    color: var(--primary-color);
}

/* ==================footer================= */

footer{
    width: 100%;
    background: #212836;
    color: #fff;
    padding: 40px 0;
}
.footer-box{
    width: 100%;
    padding: 15px;
}
.footer-logo{
    background: #fff;
    width: 180px;
    padding: 10px;
    border-radius: 8px;
    margin: 0 0 20px 0;
}
.footer-logo img{
    width: 100%;
}
.footer-desc{
    padding: 10px 0;
}
.footer-desc p{
    font-size: 1rem;
}
.footer-title{
    padding: 10px 0;
}
.footer-title h4{
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.footer-links ul li{
    padding: 5px 0;
}
.footer-links ul li a{
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-links ul li a:hover{
    color: var(--primary-light);
    margin-left: 5px;
}
.footer-contact{
    padding: 5px 0;
}
.f-contact-phone,
.f-contact-email,
.f-contact-address{
    display: flex;
    gap: 20px;
    padding: 10px 0;
}
.f-icon i{
    font-size: 1.3rem;
    color: var(--primary);
}
.f-text p{
    font-size: 1rem;
}
.f-text p a{
    color: #fff;
}
.f-text p a:hover{
    color: #f59a31;
}

/* ==================media queries========== */

@media (max-width: 1200px) {
    .main-header-menus ul {
        gap: 15px;
    }
    .why-choose-inner-box {
        padding: 20px;
        height: 161px;
    }
    .service-box {
        width: 100%;
    }
    .service-sector-box-content h4 {
        font-size: 1.5rem;
    }
    .service-sector-box-content p {
        font-size: 14px;
    }
    .service-sector-image-content h3 {
        font-size: 1rem;
    }
    .service-sector-image-content p {
        font-size: 14px;
    }
    .service-pricing-heading h2 {
        font-size: 2.2rem;
    }
    .service-process-heading h2 {
        font-size: 2.3rem;
        margin-bottom: 7px;
    }
}

@media (max-width: 992px) {
    .main-header-mid,
    .main-header-right {
        display: none;
    }
    .main-header-mid.active {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .main-header-menus ul {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-header {
        padding: 12px 60px;
    }
    
    .top-header-contact {
        gap: 15px;
        flex-wrap: wrap;
    }
    .box-arrow {
        display: block;
      }
      
      .service-box-wrapper {
        flex-wrap: nowrap;
      }
      .cta-box-image {
        min-height: 250px;
    }
    
    .right-cta {
        margin-top: 20px;
        padding: 30px;
    }
    
    .right-cta h3 {
        font-size: 24px;
    }
    
    .phone-number a {
        font-size: 20px;
    }
    .solutions-content-wrapper {
        flex-direction: column;
    }
    
    .solutions-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .service-package-card {
        flex: 1 1 300px;
    }
    .banner-content {
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .text-content,
    .form-content {
        flex: 1;
        max-width: 100%;
    }
    
    .hero-banner {
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 12px 30px;
    }
    .main-header {
        padding: 12px 30px;
    }
    .about-box {
        text-align: center;
    }
    .about-box-content h5 {
        margin: 0 auto;
    }
    .service-box {
        width: 60%;
        margin: 0 auto 20px auto;
    }
    .service-sector-box{
        width: 70%;
        margin: 0 auto 20px auto;
        height: auto;
    }
    .service-pricing-box{
        width: 60%;
        margin: 0 auto 20px auto;
    }
    .faq-image{
        width: 100%;
        float: left;
    }
    .why-choose-box{
        padding: 0;
    }
    .service-process-heading h2 {
      font-size: 2rem;
    }
    
    .service-process-box {
      max-width: 100%;
    }
    .right-cta {
        padding: 25px;
    }
    
    .right-cta h3 {
        font-size: 22px;
    }
    
    .phone-number a {
        font-size: 18px;
    }
    
    .emergency-badge {
        font-size: 13px;
    }
    .section-title {
        font-size: 2rem;
      }
      
      .accordion-header {
        font-size: 16px;
        padding: 15px 0;
      }
      .service-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .whatsapp-sticky-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
      }
      
      .whatsapp-sticky-btn i {
        font-size: 24px;
      }
      
      .whatsapp-sticky-btn:hover {
        width: 140px;
      }
      .pricing-tabs {
        flex-direction: column;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    .solutions-main-title {
        font-size: 2rem;
    }
    
    .unit-types-container {
        grid-template-columns: 1fr;
    }
    .comprehensive-repair {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .repair-grid {
        grid-template-columns: 1fr;
    }
    .main-header-menus{
        position: absolute;
        z-index: 99;
        background: #fff;
        width: 100%;
        padding: 20px;
        left: 0;
        top: 133px;
    }
    .inner-hero-banner {
        height: 830px;
    }
    .text-content, .form-content {
        text-align: center;
    }
    .service-features {
        justify-content: center;
    }
    .form-content {
        width: 368px;
    }
    .text-content h1 {
        font-size: 2.3rem;
    }
    .lead {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .slide {
    height: 702px;
    }
    .top-header {
       display: none;
    }
    
    .main-header-logo img {
        height: 40px;
    }
    .text-content h1 {
        font-size: 2.2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .booking-form {
        padding: 25px 20px;
    }
    .service-box-wrapper {
        flex-wrap: wrap;
    }
    .service-sector-box {
        width: 90%;
    }
    .service-box {
        width: 90%;
        height: auto;
    }
    .about-box-content h2 {
        font-size: 1.8rem;
    }
    .service-pricing-box {
        width: 90%;
    }
    .why-choose-content h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .breadcrums-content h1 {
        font-size: 1.5rem;
    }
    .breadcrums-content p {
        font-size: 0.8rem;
    }
    .breadcrumb-icon {
        left: 40%;
    }
    .breadcrums-image {
        width: 100%;
        height: 270px;
    }
    .service-content-i-title h2 {
        font-size: 1.3rem;
    }
    .why-choose-heading h2 {
        font-size: 1.5rem;
        margin-bottom: 7px;
    }
    .why-choose-heading p {
        width: 90%;
    }
    .why-choose-content p {
        font-size: 13px;
    }
    .why-choose-inner-box {
        gap: 15px;
    }
    .section-header h2 {
        font-size: 1.2rem;
    }
    .content-ii h3 {
        font-size: 1.2rem;
    }
    .content-ii li {
        margin: 0;
    }
    .above-footer-heading h3 {
        font-size: 1.7rem;
    }
    .above-footer-heading p {
        font-size: 0.9rem;
    }
    .whatsapp-sticky-btn i {
        font-size: 32px;
    }
    .main-header-menus{
        position: absolute;
        z-index: 99;
        background: #fff;
        width: 100%;
        padding: 20px;
        left: 0;
        top: 70px;
    }
    .inner-hero-banner {
        height: 1003px;
    }
    .text-content, .form-content {
        text-align: center;
    }
    .service-features {
        justify-content: center;
    }
    .form-content {
        width: 368px;
    }
    .service-process-heading h2 {
        font-size: 1.5rem;
    }
    .service-pricing-heading h2 {
        font-size: 1.5rem;
    }
    .service-pricing-heading p {
        width: 95%;
    }
    .service-process-heading p {
        width: 95%;
    }
}



  
  /* ======================
     RESPONSIVE ADJUSTMENTS
     ====================== */
  @media (max-width: 992px) {
    
    .services > div {
      flex: 1 1 160px;
      padding: 0.8rem;
      font-size: 12px;
    }
  }
  
  @media (max-width: 768px) {
    .slide-content {
      padding: 1.5rem;
    }
    
    .slide-content h1 {
      font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    
    .services > div {
      flex: 1 1 120px;
      font-size: 0.9rem;
      padding: 0.6rem;
      margin:0 auto;
    }
    
    .buttons {
      flex-direction: column;
      align-items: center;
      display:flex;
    }
    
    .btn-whatsapp, .btn-book {
      width: 100%;
      max-width: 280px;
    }
  }
  
  @media (max-width: 480px) {
    .slide{
        padding: 1rem 0;
        height:auto;
    }
    .slide-content {
      padding: 1.2rem;
    }
    
    .services > div {
      flex: 1 1 100%;
      max-width: 200px;
    }
    
    .btn-whatsapp, .btn-book {
      min-width: 100%;
      
    }
  }

  .pricing-container {
    display: flex;
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
  }
  
  .pricing-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: var(--border);
  }
  
  .pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .card-header {
    padding: 20px 24px;
    background-color: var(--white);
    color: var(--primary-dark);
    border-bottom: var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .card-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  .card-icon {
    font-size: 1.5rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-category {
    padding: 20px 24px;
  }
  
  .category-header {
    margin-bottom: 18px;
  }
  
  .category-header h3 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
  }
  
  .divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    opacity: 0.2;
    border-radius: 2px;
  }
  
  .service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
  }
  
  .service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: var(--border);
    transition: var(--transition);
  }
  
  .service-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
  }
  
  .service-item.highlight {
    background-color: var(--primary-light);
    border-left: 3px solid var(--primary);
  }
  
  .service-details {
    display: flex;
    flex-direction: column;
  }
  
  .service-name {
    font-weight: 500;
    margin-bottom: 2px;
  }
  
  .service-desc {
    font-size: 0.8rem;
    color: var(--dark);
    opacity: 0.7;
  }
  
  .price {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 12px;
  }
  
  .price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 14px;
  }
  
  .price-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-item {
    background: var(--white);
    border: var(--border);
    border-radius: var(--border-radius);
    padding: 16px 12px;
    text-align: center;
    position: relative;
    transition: var(--transition);
  }
  
  .grid-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
  }
  
  .grid-item.popular {
    border: 1px solid #c0e7ea;
  }
  
  .popular-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
  }
  
  .grid-label {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 500;
  }
  
  .grid-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  
  .price-subtext {
    font-size: 0.75rem;
    color: var(--dark);
    opacity: 0.6;
  }
  
  @media (max-width: 900px) {
    .pricing-container {
      flex-direction: column;
    }
    
    .price-grid.three-col {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 500px) {
    .price-grid.three-col {
      grid-template-columns: 1fr;
    }
    
    .card-header {
      padding: 16px 20px;
    }
    
    .service-category {
      padding: 16px 20px;
    }
  }