.full-width-bg {
    background-image: url('/assets/images/services_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    color: white;
    margin-bottom: 10px;
}
.full-width-bg-services {
    background-image: url('/assets/images/process.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    color: white;
    margin-bottom: 10px;
}

.full-width-bg-services h1 {
    margin: 0;
    font-size: 4vw;
}

/* Overlay styling for steps */
.content-overlay {
    background-color: rgba(210, 208, 208, 0.6);
    padding: 20px;
    border-radius: 15px;
    color: #000;
}

/* Text overlay styling for image */
.image-text-overlay {
    position: absolute;
    top: 70px;
    right: 30px;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    z-index: 1;
    width: 50%;
}
.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .image-text-overlay {
        top: 70px;
        right: 15px;
        font-size: 0.9rem;
        padding: 8px;
    }
    .content-overlay {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .image-text-overlay {
        top: 70px;
        right: 10px;
        font-size: 0.85rem;
        padding: 6px;
        max-width: 80%;
    }
    .content-overlay {
        font-size: 0.85rem;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .image-text-overlay {
        position: static;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }
    .content-overlay {
        padding: 10px;
        font-size: 0.8rem;
    }
    .col-md-7, .col-md-5 {
        width: 100%;
    }
}
.card-toggle {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-toggle {
    transition: background-color 0.3s, color 0.3s;
}

.btn-toggle:hover {
    background-color: #007bff;
    color: #fff;
}

.btn-wide {
    width: 30%;
    padding: 10px;
}

.card-img {
    transition: transform 0.3s;
}

.card-toggle:hover .card-img {
    transform: scale(1.1);
}

.overlapping-text {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    max-width: 60%;
}

.img-fluid-custom {
    border-radius: 8px;
    max-width: 50%;
    margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overlapping-text {
        position: relative;
        transform: translateY(0); /* Remove vertical centering on smaller screens */
        top: auto; /* Reset top positioning */
        left: 0; /* Center-align */
        max-width: 100%; /* Full width on small screens */
        margin-bottom: 20px; /* Add spacing below */
    }
    .img-fluid-custom {
        max-width: 100%; /* Full width on small screens */
    }
}

@media (max-width: 1200px) {
    nav.navbar {
        width: 90%;
    }
}
@media (max-width: 992px) {
    nav.navbar {
        width: 95%;
    }
    .navbar-brand img {
        width: 60px;
        height: 40px;
    }
    .navbar-nav .nav-item {
        margin-left: 2px;
    }
    .nav-link, .btn {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    nav.navbar {
        width: 100%;
    }
    .navbar-brand img {
        width: 50px;
        height: 35px;
    }
    .navbar-nav .nav-item {
        margin-left: 1px;
    }
    .nav-link, .btn {
        font-size: 0.8rem;
    }
    .btn {
        padding: 8px 16px;
    }

}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1rem; /
    }
    .carousel-caption h2 {
        font-size: .85rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .carousel-caption h5,
    .carousel-caption h2 {
        display: none;
    }

    .carousel-caption a {
        width: 100%;
        max-width: 500px;
        padding: 12px;
    }
}
@media (max-width: 420px) {
    .carousel-caption {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .carousel-caption h5,
    .carousel-caption h2 {
        display: none;
    }

    .carousel-caption a {
       font-size: 11px !important;
    }
}


.sig-color{
    background-color: #007e7c;
}

.ico-color{
    background-color: #ffa726;
}

.fixed-card {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 576px) {
    .fixed-card {
        height: 150px;
    }
}

.card-body p {
   text-align: justify;
}

.sig-color:hover {
    background-color: #014c4f;
}


    .text-wrap {
        word-wrap: break-word; /* Break long words */
        overflow-wrap: anywhere; /* Ensure long strings like emails or links break correctly */
        white-space: normal; /* Prevent text from staying in a single line */
        overflow: hidden; /* Hide overflowing text */
    }

    .text-truncate {
        overflow: hidden;
        text-overflow: ellipsis; /* Add ellipsis (...) for long text */
        white-space: nowrap; /* Keep the text on one line */
    }

    .info {
        max-width: 100%; /* Ensure the text fits within its container */
    }



