/* header */
.header-anchor {
    color: #ffffff;
}

.header-anchor:hover{
    color: #ffffff;
}
/* footer */
.footer-anchor{
    color: #ffffff;
    font-size: 16px !important;
}
.footer-anchor:hover{
    color: #ffffff;
}
.footer a{
    color:#9ba2ad;
    font-size: 17px;
}
.footer a :hover{
   opacity: 0.5;
}

/*Whatsapp CTA starts*/
.whatsapp-float {
    position: fixed;
    bottom: 115px;
    right: 37px;
    z-index: 9999;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
    width: 40px;
    height: 40px;
}
@media (max-width: 1024px) {
    .whatsapp-float {
        bottom: 70px;
        right: 15px;
    }
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}
/*Whatsapp CTA ends*/
/*common*/
.text-justify{
    text-align: justify;
}
.text-center{
    text-align: center;
    color: #1F2747 !important;
}

.text{
     text-align: center !important;
}

/* Our Expertise */
.list{
    margin-top: 30px;
    color: #FF7700;
    margin-right: 15px;
    
}
.tab-btn {
    border: 1px solid #FF7700;
    background: transparent;
    color: #FF7700;
    padding: 8px 20px;
    margin: 10px 8px;
    border-radius: 5px;
    transition: 0.3s ease;
  }
  .tab-btn:hover,
  .tab-btn.active {
    background-color: #FF7700;
    color: #fff;
  }
  .tab-content ul {
    list-style: none;
    padding-left: 0;
  }
  .tab-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }
  .tab-content ul li i {
    color: #FF7700;
    margin-right: 8px;
  }
/* why choose us*/
 .col {
    color: #ffffff;
 } 
 
  /* services*/            
 .single{
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}
.border{
    border-radius: 10px;
}

/* === Theme Colors === */
:root {
    --theme-dark: #101e24;
    --theme-red: #ff7700;
}

/* === Breadcrumb Section === */
.ltn__breadcrumb-dark {
    background-color: var(--theme-dark);
    padding: 100px 0;
}
.ltn__breadcrumb-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 10px 0 0;
}
.ltn__breadcrumb-list li,
.ltn__breadcrumb-list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.ltn__breadcrumb-list i {
    color: var(--theme-red);
    font-size: 12px;
}

/* === Error Page Section === */
.section-padding {
    padding: 80px 0;
}
.error-content-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 50px 30px;
}
.error-image img {
    max-width: 350px;
    width: 100%;
    height: auto;
}
.error-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 10px;
}
.error-text h2 span {
    color: var(--theme-red);
}
.error-text p {
    color: #555;
    font-size: 16px;
}

/* === Button === */
.theme-btn-1 {
    background-color: var(--theme-red);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.theme-btn-1:hover {
    background-color: var(--theme-dark);
    color: #fff;
}

/* === Responsive === */
@media (max-width: 767px) {
    .error-text h2 {
        font-size: 26px;
    }
    .error-content-wrap {
        padding: 30px 20px;
    }
}