.header .logo_img {
    width: 250px !important;
}
.main-header img{
 width: 250px !important;
}
@media screen and (min-width: 1023.98px) {
    .header .logo_img {
       
        width: 165px !important ;
    }
}

.footer-logo img{
     width: 250px !important ;
}
/* .sticky  {
    background-color: #EABD46!important;
} */
 .services_main-banner_title{
    color: #ffffff !important;
 }
 .page_cover{
        background: url(../img/contacts/cover.png) center center / cover no-repeat !important;
}

/* About block enhancements */
.about_main {
    position: relative;
}

.about_ovals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about_ovals .oval {
    position: absolute;
    color: rgba(255, 255, 255, 0.607);
}

/* Size/placement tuned to sit behind the text block */
.about_ovals .oval--light {
    top: -60px;
    left: 420px;
    color: rgba(129, 75, 9, 0.123)
    /* transform: translateZ(0); */

}

.about_ovals .oval--dark {
    bottom: -40px;
    left: 560px;
    top: 0px;
    color: rgba(255, 255, 255, 0.766);
    z-index: -1;
}

.about_main .about_main-wrapper,
.about_main .section_header {
    position: relative;
    z-index: 1;
}

/* Feature list styling */
.feature-list {
    margin: 0;
}

.feature-item {
    display: block;
    margin-bottom: 6px;
    white-space: nowrap;
}

.feature-icon {
    vertical-align: -2px;
    margin-right: 8px;
    color: var(--bs-body-color, currentColor);
}
.about-counter{
    z-index: 11;
}
.page_breadcrumbs{
    background-color: transparent !important;
    position: absolute;
    top: 375px;
    left: 650px;
}

/* Responsive media queries: center breadcrumbs on all screens */
@media (max-width: 575.98px) {
  .page_breadcrumbs {
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    z-index: 2;
    padding: 0 12px;
  }
  .page_breadcrumbs-list { gap: 6px 10px; font-size: 14px; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .page_breadcrumbs {
    top: 260px;
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
    text-align: center;
    z-index: 2;
  }
}

/* 576px to 767.98px (small tablets/large phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .page_breadcrumbs {
    top: 200px;
    width: 88%;
  }
}

/* Explicit tablet portrait/landscape around 768px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .page_breadcrumbs {
    top: 199px; /* a bit lower for taller header on tablets */
    width: 82%;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .page_breadcrumbs {
    top: 320px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
  }
}

@media (min-width: 1400px) {
  .page_breadcrumbs {
    top: 360px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
  }
}

.service-link{
    color: #B38E6A;
}
.service-link:hover{
    color: #534931;
}





/* Container for the buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999; /* Ensure it sits on top of everything */
    display: flex;
    flex-direction: column;
   
}

/* Common button styling */
.action-btn {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

/* Phone Button Specifics */
.call-btn {
    background-color: #007bff; /* Blue */
}

/* WhatsApp Button Specifics */
.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Green */
}

/* Hover Effects */
.action-btn:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    color: white; /* Keep icon white */
}

/* SVG sizing */
.action-btn svg {
    width: 30px;
    height: 30px;
}

/* Tooltip (Text label on hover) */
.action-tooltip {
    position: absolute;
    right: 70px; /* Position to the left of the button */
    background-color: #E5DCD2;
    color: #534931;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    font-family: sans-serif;
}

/* Show tooltip on hover (Desktop only) */
.action-btn:hover .action-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments for Mobile */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 15px;
        /* gap: 10px; */
    }

    .action-btn {
        width: 50px;
        height: 50px;
    }

    .action-btn svg {
        width: 24px;
        height: 24px;
    }
    
    /* Hide tooltip on mobile to prevent clutter */
    .action-tooltip {
        display: none;
    }
}