:root {
    --Primary: #28a745;
}

.HeaderContent {
    border-bottom: none;
    padding: 0px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 -1px 0 0 rgba(186, 186, 197, 0.5);
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.wall {
    position: relative;
}

.wall::after {
    content: "";
    height: 20px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-menu.services-dropdown {
    padding: 7px;
}

@media screen and (max-width: 768px) {
    .dropdown-menu.services-dropdown {
        position: absolute;
        transform: translateX(0%);
    }

    .navbar-collapse {
        position: absolute;
        transform: translateX(-47%);
    }
}

.dropdown-menu.services-dropdown .dropdown-item {
    font-size: 16px;
    padding: 7px 14px;
    border-radius: 0.2rem;
}

.dropdown-menu.services-dropdown .dropdown-item:hover {
    background-color: var(--Primary);
    color: #fff;
}

.bg-primary-color {
    background-color: var(--Primary);
}

.hero-content {
    background-color: #165261;
}

.hero-showcase-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
    font-size: 14px;
    color: #fff;
}

.ribbon {
    --f: 0.5em;
    /* control the folded part */

    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    border-image: conic-gradient(#0008 0 0) 51% / var(--f);
    clip-path: polygon(
        100% calc(100% - var(--f)),
        100% 100%,
        calc(100% - var(--f)) calc(100% - var(--f)),
        var(--f) calc(100% - var(--f)),
        0 100%,
        0 calc(100% - var(--f)),
        999px calc(100% - var(--f) - 999px),
        calc(100% - 999px) calc(100% - var(--f) - 999px)
    );
    transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
    transform-origin: 100% 100%;
    background-color: var(--Primary);
    /* the main color  */
}

.main-text {
    font-size: 25px;
    color: #ffffff;
    background-color: var(--Primary);
    padding: 3px 8px;
    text-shadow: 1px 1px 1px #000, /* bottom right */ -1px -1px 1px #555,
        /* top left */ 1px -1px 1px #444, /* top right */ -1px 1px 1px #444;
    /* bottom left */
    font-weight: bold;
}
@media (max-width: 768px) {
    .main-text {
        font-size: 20px;
    }
}

.special-btn {
    border: 1px solid #fff;
    padding: 7px 14px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: black;
    background-color: white;
    transition: all 0.5s;
}

.special-btn:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
}

.myLabel {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    margin: 0;
    margin-bottom: 5px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    border-color: var(--Primary);
}

.custom-file {
    height: 1.5rem;
    /* Smaller height */
    width: 100%;
    /* Adjust width as needed, e.g., 50% or 200px */
}

/* Reduce padding and font size of the label */
.custom-file-label {
    font-size: 0.8rem;
    /* Smaller font size */
    line-height: 1.5rem;
    /* Match the height for vertical centering */
    padding: 0.2rem 0.5rem;
    /* Reduce padding for a compact look */
    height: 2rem;
    /* Match the container height */
}

.nav-pills .nav-link.active {
    color: #fff !important;
    font-weight: 500 !important;
    background-color: #165261 !important;
}

/* Optional: Style for hover state on non-active tabs */
.nav-pills .nav-link {
    font-size: 16px !important;
    color: #000 !important;
    font-weight: normal !important;
    border: 1px solid #000 !important;
}

/* Ensure the input itself aligns properly */
.custom-file-input {
    height: 1.5rem;
    /* Match the container height */
}

.artwork-container {
    background-color: #165261;
}

.artwork-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Our Work styling */
.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-content {
    opacity: 0;
}

@media (max-width: 768px) {
    .portfolio-content {
        opacity: 1;
    }
}

.portfolio-item:hover .portfolio-content {
    opacity: 1;
}

/* Service Section */
.service-card {
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.service-icon {
    display: flex;
    justify-content: start;
    align-items: start;
}

.service-icon-img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: #fffafa;
    border: 1px solid #ccc;
    position: absolute;
    top: 12px;
    right: 12px;
    outline: 2px solid #16526186;
    outline-offset: 3px;
}

.service-card h5 {
    font-weight: 600;
    color: #000;
    width: fit-content;
    border-radius: 3px;
    font-size: 17px;
}

.service-card p {
    text-align: start;
    width: 85%;
}

/* Client Review */
.ReviewBox p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.ReviewBox .stars {
    font-size: 26px;
    color: goldenrod;
}

.ReviewBox i {
    color: #00000037;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #165261;
    background: rgba(255, 255, 255, 0.9);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #165261;
    color: white;
    border: 1px solid white;
}

.drag-right-arrow {
    transition: all 0.3s ease;
}

.infoLink a:hover i.drag-right-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .HeaderMenu.sticky-top {
        position: static;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 50px;
        background: white;
        z-index: 2;
        /* width: fit-content; */
        width: 325px;
        padding: 15px 30px;
        border-radius: 12px;
        left: -108px;
    }
}

@media (min-width: 768px) {
    .w-md-75 {
        width: 75% !important;
    }
}

.choose-us-card-container {
    height: 350px;
}
@media (max-width: 768px) {
    .choose-us-card-container {
        height: auto;
        margin-bottom: 15px;
    }
}
.choose-us-card-content {
    height: 220px;
}
@media (max-width: 768px) {
    .choose-us-card-content {
        height: auto;
    }
}

/* Faqs Section Styles */
.Faqs_Section .card {
    border: none;

    .btn-link {
        color: #000;
    }

    .btn-link:hover {
        text-decoration: none;
    }
}

.Faqs_Section .card-header {
    background-color: transparent !important;
    text-align: start !important;
    border-bottom: 1.5px solid #00000088;
    position: relative;
}

.Faqs_Section .card-header .btn::after {
    content: "+";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 25px;
    right: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #165261d2;
    color: white;
    text-align: center;
}

.Faqs_Section .card-body {
    background-color: rgb(0, 0, 0, 0.03) !important;
    padding: 10px 30px;
}

.FooterSec {
    color: white;
}

.infoLink a {
    display: block;
    color: white !important;
    text-decoration: none;
    padding: 5px 0;
}
.infoLink ul {
    gap: 18px;
}
.FooterSec {
    background: #165261;
}
.infoLink h3 {
    color: white;
}
.infoLink h4 {
    color: white;
}

.infoLink ul li a {
    font-size: 25px;
    color: white;
}
.copyRightSec {
    background: #165261;
    color: white;
}
.copyRightSec p {
    color: var(--White);
}
