/* Custom Stylesheet to replace inline styles */

.breadcrumb-bg-cover {
    background-image: url('../images/breadcrumb-shape.webp');
}

/* About Page Service Items */
.about-service-box {
    padding: 30px 20px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.about-service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(172, 16, 16, 0.1);
    border-radius: 50%;
}
.about-service-icon i {
    font-size: 1.8rem;
    color: var(--theme);
}

/* About Page Icon Items */
.about-icon-box-1 {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    height: 100%;
}
.about-icon-box-1 i {
    font-size: 2rem;
    color: var(--theme);
}
.about-icon-box-1 p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

/* Index Page Service Items */
.index-service-box {
    padding: 40px 20px;
    height: 100%;
}
.index-service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(172, 16, 16, 0.1);
    border-radius: 50%;
}
.index-service-icon i {
    font-size: 2rem;
    color: var(--theme);
}

/* Index Page About Icon Items Option 1 (lines 289+) */
.index-about-icon-box-1 {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}
.index-about-icon-box-1 i {
    font-size: 2.5rem;
    color: var(--theme);
}
.index-about-icon-box-1 p {
    color: #aaa;
    font-size: 14px;
}

/* Index Page About Icon Items Option 2 (lines 449+) */
.index-about-icon-box-2 {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    height: 100%;
}
.index-about-icon-box-2 i {
    font-size: 2rem;
    color: var(--theme);
}
.index-about-icon-box-2 p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

/* Contact Page Styles */
.contact-iframe {
    border: 0;
}
.contact-text-muted {
    color: #aaa;
}
.contact-select {
    width: 100%;
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    color: #aaa;
    border-radius: 8px;
    outline: none;
    height: 58px;
}

/* Services Page Styles */
.services-well {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}
.services-well h3 {
    color: var(--theme2);
    font-size: 20px;
}
.services-well hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}
.services-well ul.unstyled {
    list-style: none;
    padding-left: 0;
    color: #ccc;
    line-height: 2;
}
.services-img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
    max-height: 400px;
}

/* Projects Page Styles */
.project-badge-ongoing {
    background: #e67e22 !important;
}






     .filter-btn {
    background: #ddd;
    color: #000;
        border: 1px solid rgba(255,255,255,0.1);
        padding: 10px 24px;
        margin: 5px;
        border-radius: 30px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
        outline: none;
      }
      .filter-btn.active, .filter-btn:hover {
        background: var(--theme);
        color: #fff;
        border-color: var(--theme);
      }
      .project-card-col {
        transition: opacity 0.4s ease, transform 0.4s ease;
      }
      .project-card {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-bottom: 30px;
        height: calc(100% - 30px);
        position: relative;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      }
      .project-card:hover {
        transform: translateY(-5px);
        border-color: var(--theme);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }
      .project-img-wrapper {
        position: relative;
        overflow: hidden;
        height: 260px;
        background: #111;
      }
      .project-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .project-card:hover .project-img-wrapper img {
        transform: scale(1.06);
      }
      .project-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--theme);
        color: #fff;
        padding: 5px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 10;
      }
      .project-details {
        padding: 25px;
      }
      .project-details h4 {
        font-size: 19px;
        color: #111111;
        margin-bottom: 12px;
        font-weight: 600;
      }
      .project-info-item {
        font-size: 14px;
        color: #555555;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
      }
      .project-info-item i {
        color: var(--theme2);
        width: 20px;
        margin-right: 8px;
      }
      .project-info-item strong {
        color: #222222;
        margin-right: 5px;
      }

/* Form Message Handling */
.form-message {
    display: none;
}
.form-message.success,
.form-message.error,
.form-message.sending {
    display: flex;
}
.form-message.sending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
.form-message.sending i {
    color: #ffc107;
    font-size: 18px;
}

/* ==========================================
   Floating WhatsApp Button and Tooltip Styles
   ========================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 32px;
    color: #fff;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float .whatsapp-tooltip {
    visibility: hidden;
    opacity: 0;
    width: 230px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;
    border-radius: 30px;
    padding: 10px 16px;
    position: absolute;
    z-index: 1000;
    right: 75px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(15px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    font-family: inherit;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(17, 17, 17, 0.95);
}

.whatsapp-float:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* Adjust Back to Top button position to avoid overlap with WhatsApp */
.back-to-top {
    bottom: 105px !important;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}