/*#region Master*/
:root {
    --main-colour: #03989e;
    --off-black: #292929;
    --text-gray: #80858d;
    --screen-sm-padding: 45px 0;
    --screen-lg-padding: 75px 0;
}

body {
    position: relative;
    padding: 0;
    text-rendering: optimizeSpeed;
    font-size: 14px;
    color: var(--off-black);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a, input {
    outline: 0;
    text-decoration: none;
}

    /* Change Autocomplete styles in Chrome*/
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        -webkit-text-fill-color: #353535;
        -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
        transition: background-color 5000s ease-in-out 0s;
    }

a {
    color: var(--main-colour);
}

    a:hover {
        text-decoration: none;
        color: var(--main-colour);
    }

ul {
    list-style: none;
}

li {
    font-size: 14px
}

.modal-loading {
    position: fixed;
    z-index: 1056;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background-color: Black;
    opacity: 0.85;
    -moz-opacity: 0.85;
}


#Progress {
    position: fixed;
    width: 64px;
    height: 64px;
    text-align: center;
    z-index: 1058;
    top: 40%;
    margin: 0 auto;
    display: flex;
    left: 0;
    right: 0;
    color: #fff;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 1rem;
    z-index: 99999;
}

    #back-top a {
        background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
        height: 40px;
        text-decoration: none;
        width: 40px;
        transition: all 200ms linear 0s;
        border-radius: 10px;
        align-items: center;
        display: grid;
    }

        #back-top a:hover, #back-top a:active {
            background-color: var(--main-colour);
            color: var(--darker-text-gray);
        }

        #back-top a i {
            color: #fff;
            display: block;
            font-size: 15px;
            margin: 0 auto;
            text-align: center;
        }

.back-top-captcha {
    bottom: 6.5rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--blue);
    opacity: 1;
}

.form-switch .form-check-input {
    margin-top: 2.3px !important;
    width: 2.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(69, 85, 96,1)'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: var(--text-gray) !important;
    border-color: var(--text-gray) !important;
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255,1)'/%3e%3c/svg%3e");
}

p {
    font-size: 14px;
}

.section-title {
    margin-bottom: 20px;
}

    .section-title p {
        font-size: 12px;
        font-weight: 500;
        padding: 0;
        margin: 0 0 5px 0;
        text-transform: uppercase;
        color: #aaaaaa;
        margin-bottom: 10px;
    }

        .section-title p:after {
            content: "";
            width: 120px;
            height: 4px;
            display: inline-block;
            background: var(--main-colour);
            margin: 2px 10px;
        }

    .section-title h2 {
        margin: unset;
        font-size: 24px;
        font-weight: 700;
        color: var(--off-black);
    }

    .section-title span {
        color: var(--main-colour);
    }

.btn-main {
    display: inline-block;
    font-weight: 700;
    background-color: transparent;
    border: 2px solid var(--main-colour);
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    color: var(--main-colour);
    font-size: 14px;
    padding: 15px 25px;
    transition: all 235ms ease-in-out;
}

    .btn-main:hover {
        box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
        transform: translate3d(0, 2px, 0);
        color: var(--main-colour);
        border: 2px solid var(--main-colour);
    }

.block-icon {
    height: 42px;
    width: 42px;
    background: rgba(3, 152, 158, 0.12);
    border-radius: 12px;
    color: var(--main-colour);
    transition: 0.5s;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-colour);
    flex: none;
}

    .block-icon i {
        color: var(--main-colour);
        font-size: 16px;
    }

.text-blue {
    color: var(--main-colour) !important;
}

.text-orange {
    color: var(--orange-colour) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--main-colour);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transform: translateY(-3px);
    }

/*#endregion*/

/*#region Navbar*/

.navbar {
    background: #fff;
    padding: 15px 0;
    transition: all 0.5s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    .navbar .navbar-brand {
        width: 180px;
    }

    .navbar .navbar-nav .nav-item {
        border-bottom: 1px solid #f3f3f3;
    }

        .navbar .navbar-nav .nav-item .nav-link {
            font-size: 14px;
            position: relative;
            font-weight: 600;
            padding: 10px 20px;
        }

/*#endregion*/

/*#region Banner*/

.banner.carousel {
    height: 626px;
}

.banner .carousel-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background-size: cover;
    background-position-x: 41%;
    background-image: url(/media/banner/house.jpg);
}

    .banner .carousel-item::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 3;
        background-color: #000;
        opacity: 0.4;
    }

.banner .carousel-caption {
    left: 5%;
    text-align: left;
    z-index: 3;
    top: 15%;
}

    .banner .carousel-caption h1 {
        font-size: 40px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 10px;
    }

    .banner .carousel-caption p {
        font-size: 20px;
        margin-bottom: 20px;
    }

.banner .btn-main:hover {
    border-color: #fff;
    background-color: transparent;
    outline: 0;
    color: #fff;
}

.banner .btn-main {
    border-color: #fff;
    color: #fff;
}

/*#endregion*/

/*#region About*/

.about-section {
    background: linear-gradient(135deg, #f9fbff 0%, #f2f6f8 100%);
}

    .about-section img {
        border-radius: 18px;
    }

    .about-section .card {
        border-radius: 18px;
        border: 1px solid #e7ecf1;
    }

        .about-section .card .card-body {
            padding: 2rem;
        }

    .about-section .about-subtitle {
        font-size: 18px;
        font-weight: 700;
        color: var(--off-black);
    }

    .about-section .about-text p {
        color: var(--text-gray);
        margin-bottom: 12px;
    }

        .about-section .about-text p:last-child {
            margin-bottom: 0;
        }

/*#endregion*/

/*#region Info Section*/

.info-section {
    padding: var(--screen-sm-padding);
    background: #F8F9FA;
}

    .info-section h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .info-section p:last-child {
        margin: unset;
    }

/*#endregion*/

/*#region Services*/

.services-section {
    background: linear-gradient(135deg, #f8fbff 0%, #f3f7f9 100%);
}

    .services-section img {
        border-radius: 18px;
    }

    .services-section .service-card {
        display: flex;
        gap: 12px;
        padding: 18px 16px;
        border-radius: 14px;
        background: #fff;
        border: 1px solid #e7ecf1;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

        .services-section .service-card:hover {
            transform: translateY(-4px);
            border-color: rgba(3, 152, 158, 0.45);
            box-shadow: 0 18px 50px rgba(3, 152, 158, 0.08);
        }

    .services-section .service-title {
        margin-bottom: 6px;
        font-size: 18px;
        font-weight: 700;
        color: var(--main-colour);
    }

    .services-section p {
        color: var(--text-gray);
    }

/*#endregion*/

/*#region Owner*/

.owner-section {
    background: #F8F9FA;
}

    .owner-section img {
        border-radius: 18px;
    }

    .owner-section .owner-role {
        position: absolute;
        bottom: 16px;
        left: 16px;
        background: rgba(0, 0, 0, 0.65);
        color: #fff;
        padding: 8px 14px;
        border-radius: 14px;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    .owner-section .card {
        border-radius: 18px;
    }

    .owner-section .owner-lead {
        font-size: 14px;
        font-weight: 600;
        color: var(--off-black);
    }

    .owner-section .owner-feature {
        display: flex;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #e9edf2;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        height: 100%;
    }

        .owner-section .owner-feature:hover {
            transform: translateY(-4px);
            border-color: rgba(3, 152, 158, 0.45);
            box-shadow: 0 18px 50px rgba(3, 152, 158, 0.08);
        }

    .owner-section p {
        color: var(--text-gray);
        margin: 0;
    }

    .owner-section .owner-social .owner-social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #fff;
        color: var(--main-colour);
        border: 1px solid rgba(3, 152, 158, 0.2);
        transition: all 0.2s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    }

        .owner-section .owner-social .owner-social-icon:hover {
            background: var(--main-colour);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(3, 152, 158, 0.25);
        }

        .owner-section .owner-social .owner-social-icon:hover {
            background: var(--main-colour);
            box-shadow: 0 12px 30px rgba(3, 152, 158, 0.25);
        }

/*#endregion*/

/*#region Mid Banner with Parallax Effect*/

.mid-banner {
    height: auto !important;
    position: relative;
}

    .mid-banner .section-title p {
        color: var(--off-black);
    }

    .mid-banner .bottom-banner-item {
        display: flex;
        min-height: 500px;
        position: relative;
    }

    .mid-banner .bottom-banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

        .mid-banner .bottom-banner-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
            z-index: 1;
        }

        .mid-banner .bottom-banner-bg img {
            display: block;
            width: 100%;
            height: 120%;
            object-fit: cover;
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
        }

    .mid-banner .bottom-banner-content {
        padding: 2.5em;
        align-self: center;
        background: rgba(255, 255, 255, 0.7);
        min-width: 320px;
        border-radius: 16px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
        transform: translateY(0);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(8px);
        position: relative;
        z-index: 2;
    }

        .mid-banner .bottom-banner-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
        }

    .mid-banner .banner-text p.lead-text {
        margin-bottom: 2rem;
    }

    .mid-banner label {
        color: var(--off-black);
        font-size: 14px;
    }

    .mid-banner .feature-grid .feature-item {
        display: flex;
        gap: 12px;
        height: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.7);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

        .mid-banner .feature-grid .feature-item:hover {
            transform: translateY(-4px);
            border-color: rgba(3, 152, 158, 0.45);
            box-shadow: 0 18px 50px rgba(3, 152, 158, 0.08);
        }

    .mid-banner .feature-grid .feature-text {
        color: #27303a;
        line-height: 1.45;
        font-size: 14px;
        margin: 0;
    }

/*#endregion*/

/*#region Portfolio*/

.portfolio {
    padding: var(--screen-sm-padding);
    background-color: #f7f7f7;
}

    .portfolio .slide {
        padding: 25px;
        background-color: #fff;
        border-radius: 15px;
        margin-right: 20px;
    }

    .portfolio .slider {
        height: 100%;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: auto;
    }

        .portfolio .slider .slide-track {
            animation: scroll 80s linear infinite;
            display: flex;
            width: calc(250px * 40);
        }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 20));
    }
}

.portfolio .logo-container {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .portfolio .logo-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/*#endregion*/

/*#region Projects*/

.projects {
    padding: var(--screen-sm-padding);
}

.nav-wrapper {
    margin-bottom: 20px;
}

    .nav-wrapper ul {
        border-bottom: none !important;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

        .nav-wrapper ul li {
            margin-left: 5px;
            margin-bottom: 5px;
        }

    .nav-wrapper .nav-link {
        font-size: 14px;
        background-color: transparent !important;
        border-radius: 5px;
        padding: 12px 15px;
        color: var(--main-colour) !important;
        border: 1px solid var(--main-colour);
    }

        .nav-wrapper .nav-link.active, .nav-wrapper .nav-link:hover {
            background-color: var(--main-colour) !important;
            border: 1px solid var(--main-colour);
            color: #fff !important;
        }

.projects img {
    transition: all ease-in-out 0.4s;
    margin-bottom: 10px;
}

    .projects img:hover {
        cursor: pointer;
    }

/*#region Loading Styles*/

/* Modern Loading Overlay */
.page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

    .page-loading-overlay.hidden {
        opacity: 0;
        visibility: hidden;
    }

/* Modern Spinner Animation */
.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loading Text */
.loading-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-subtext {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 300px;
    margin-bottom: 30px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Alternative: Dots Animation */
.loading-dots {
    display: inline-block;
    margin-left: 5px;
}

    .loading-dots::after {
        content: '';
        animation: dots 2s linear infinite;
    }

@keyframes dots {
    0%, 20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%, 100% {
        content: '...';
    }
}

/* Gallery Skeleton Loader */
.skeleton-gallery {
    width: 100%;
    max-width: 1140px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-top: 30px;
}

.skeleton-gallery-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.skeleton-gallery-image {
    width: 100%;
    height: 170px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: shimmer 2s ease-in-out infinite;
    margin-bottom: 12px;
}

/* Add staggered animation delays for more realistic effect */
.skeleton-gallery-item:nth-child(1) .skeleton-gallery-image {
    animation-delay: 0s;
}

.skeleton-gallery-item:nth-child(2) .skeleton-gallery-image {
    animation-delay: 0.2s;
}

.skeleton-gallery-item:nth-child(3) .skeleton-gallery-image {
    animation-delay: 0.4s;
}

.skeleton-gallery-item:nth-child(4) .skeleton-gallery-image {
    animation-delay: 0.6s;
}

/* Skeleton loader for table preview */
.skeleton-table {
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
}

.skeleton-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.skeleton-cell {
    height: 20px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmer 2s ease-in-out infinite;
}

    .skeleton-cell:nth-child(1) {
        width: 15%;
    }

    .skeleton-cell:nth-child(2) {
        width: 25%;
    }

    .skeleton-cell:nth-child(3) {
        width: 20%;
    }

    .skeleton-cell:nth-child(4) {
        width: 15%;
    }

    .skeleton-cell:nth-child(5) {
        width: 15%;
    }

    .skeleton-cell:nth-child(6) {
        width: 10%;
    }

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

    .gallery-image-wrapper:hover {
        transform: scale(1.05);
        filter: brightness(0.7);
    }

    .gallery-image-wrapper label {
        text-align: center;
        font-weight: 600;
        font-size: 14px;
    }

.projects .modal .modal-content {
    border-radius: 18px;
}

    .projects .modal .modal-content .modal-header h5 {
        color: #fff;
        margin-right: auto;
    }

    .projects .modal .modal-content .modal-header .btn-close-modal {
        color: #fff;
        background: unset;
        border: unset;
        padding: unset;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

        .projects .modal .modal-content .modal-header .btn-close-modal:hover {
            transform: scale(1.07);
        }

        .projects .modal .modal-content .modal-header .btn-close-modal i {
            font-size: 25px;
        }

    .projects .modal .modal-content img {
        cursor: default;
    }

        .projects .modal .modal-content img:hover {
            transform: unset;
        }

/*#endregion*/

/*#endregion*/

/*#region Contact*/

.contact {
    padding: var(--screen-sm-padding);
    background: linear-gradient(135deg, rgb(248, 251, 255) 0%, rgb(243, 247, 249) 100%);
}

    .contact .padding-block {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        padding: 25px;
        margin: 0;
    }

    .contact .form-check {
        margin: 2rem 0;
    }

    .contact .form-check-input {
        border: 2px solid #e9ecef;
        border-radius: 4px;
        width: 1.2em;
        height: 1.2em;
        margin-top: 0.2em;
    }

        .contact .form-check-input:checked {
            background-color: var(--main-colour);
            border-color: var(--main-colour);
        }

    .contact .form-check-label {
        color: var(--text-gray);
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .contact .form-check-label a {
            color: var(--main-colour);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

            .contact .form-check-label a:hover {
                color: var(--secondary-colour);
            }


    .contact .btn-main:hover {
        transform: translateY(-2px);
    }

.contact-info {
    padding: 2rem;
    background: linear-gradient(135deg, var(--off-black) 0%, var(--main-colour) 100%);
    border-radius: 15px;
    color: #fff;
    height: 100%;
}

    .contact-info h3 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

    .contact-info-icon i {
        color: #fff;
        font-size: 18px;
    }

.contact-info-content h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-info-content a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

    .contact-info-content a:hover {
        opacity: 0.8;
    }

.message {
    height: 200px !important;
}

/*#endregion*/

/*#region Footer*/

.footer {
    padding-top: 45px;
    background: var(--off-black);
}

    .footer .container {
        padding-bottom: 45px;
    }

    .footer .footer-block img {
        margin-bottom: 20px;
        filter: brightness(0) invert(1);
    }

    .footer .footer-block h6 {
        font-size: 16px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .footer .footer-block ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .footer .footer-block ul li {
            margin-bottom: 8px;
        }

            .footer .footer-block ul li:last-child {
                margin: unset;
            }

            .footer .footer-block ul li a {
                position: relative;
                color: rgba(255, 255, 255, 0.8);
                transition: 0.5s;
                font-weight: 600;
                white-space: normal;
            }

                .footer .footer-block ul li a::before {
                    content: "\f061";
                    font-weight: 600;
                    left: 0;
                    opacity: 0;
                    transition: 0.5s;
                    position: absolute;
                    font-family: "Font Awesome 7 Free";
                }

                .footer .footer-block ul li a:hover {
                    padding-left: 20px;
                    color: var(--main-colour);
                }

                    .footer .footer-block ul li a:hover::before {
                        opacity: 1;
                        color: var(--main-colour);
                    }

    .footer .footer-block .contact-footer-info i {
        color: var(--main-colour);
    }

    .footer hr {
        border-color: Black;
        margin: 2rem 0 1rem;
    }

    .footer .copyright_area {
        background: #fff;
        color: var(--off-black);
        text-align: center;
        padding: 20px 15px;
        font-size: 14px;
    }

        .footer .copyright_area a {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--main-colour);
        }

    .footer .footer-block .sa-council-img {
        height: 85px;
    }

/*#endregion*/

/*#region Privacy Policy*/

.privacy {
    padding-top: 45px;
    padding-bottom: 50px;
    position: relative;
}

    .privacy h2 {
        font-size: 30px;
        font-weight: bold;
    }

    .privacy p {
        font-size: 16px;
        line-height: 33px;
    }

/*#endregion*/

/*#region Error*/

.error-page-1 {
    padding: 50px 0;
}

    .error-page-1 img {
        margin-bottom: 25px;
    }

    .error-page-1 h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .error-page-1 h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .error-page-1 p {
        font-size: 14px;
    }

/*#endregion*/



/*RESPONSIVE STYLES PER BREAK POINT*/

/* SM Screen (600px and up) */
@media (min-width: 600px) {
}

/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {

    /*#region Banner*/

    .banner p {
        font-size: 25px;
    }

    /*#endregion*/

    /*#region Info Block*/

    .mid-banner .bottom-banner-content {
        padding: 2em;
        margin: 60px 0;
    }

    /*#endregion*/

    /*#region Mid Banner*/

    .mid-banner .bottom-banner-item {
        min-height: auto;
        padding: 40px 0;
    }

    .mid-banner .bottom-banner-content {
        min-width: auto;
        width: 100%;
        padding: 2rem;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 35px;
    }

    /*#endregion*/
}

/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {

    /*#region Navbar*/

    .navbar .navbar-nav .nav-item {
        border: unset;
    }

        .navbar .navbar-nav .nav-item .nav-link {
            font-size: 16px;
        }

            .navbar .navbar-nav .nav-item .nav-link::after {
                content: "";
                display: block;
                position: absolute;
                bottom: 0;
                left: 0;
                right: 100%;
                top: 100%;
                transition: transform 0.6s cubic-bezier(0.19,1,0.22,1);
                border-bottom: 3px solid var(--main-colour);
                transition: right 0.5s;
                margin: 0px 10px 0 10px;
            }

            .navbar .navbar-nav .nav-item .nav-link:hover {
                color: var(--main-colour);
            }

                .navbar .navbar-nav .nav-item .nav-link:hover::after {
                    right: 0;
                    transform: scaleX(1);
                    transform-origin: left center;
                    transition-duration: 0.4s;
                }

            .navbar .navbar-nav .nav-item .nav-link.active::after {
                right: 0;
            }

            .navbar .navbar-nav .nav-item .nav-link.active {
                color: var(--main-colour);
            }

    /*#endregion*/

    /*#region info Section*/

    .info-section {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Mid Banner*/

    .mid-banner .bottom-banner-content {
        max-width: 620px;
    }

    .mid-banner .banner-text p.lead-text {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Contact*/

    .contact {
        padding: var(--screen-lg-padding);
    }

        .contact .padding-block {
            padding: 30px;
        }

    /*#endregion*/

    /*#region Portfolio*/

    .portfolio {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Projects*/

    .projects {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

        .footer .container {
            padding-bottom: 50px;
        }

        .footer .footer-block .sa-council-img {
            height: 100px;
        }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy {
        padding: var(--screen-lg-padding);
    }

        .privacy h2 {
            font-size: 40px;
        }

    /*#endregion*/

}


/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .section-title {
        margin-bottom: 40px;
    }

        .section-title p {
            font-size: 20px;
        }

        .section-title h2 {
            font-size: 34px;
        }

    p {
        font-size: 16px;
    }

    /*#region Banner*/

    .banner .carousel-caption {
        top: 10%;
        left: 9%;
    }

    .banner.carousel {
        height: 775px;
    }

    .banner .carousel-caption h1 {
        font-size: 75px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .banner .carousel-caption p {
        font-size: 30px;
    }

    /*#endregion*/

    /*#region Mid Banner*/

    .mid-banner label {
        font-size: 16px;
    }
    /*#endregion*/

    /*#region Services*/

    .services-grid .service-title {
        font-size: 20px;
    }

    /*#endregion*/

    /*#region Owner*/

    .owner-section label {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Contact*/

    .contact .contact-info-content h5 {
        color: #fff;
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer .footer-block h6 {
        font-size: 20px;
    }

    /*#endregion*/

    /*#region Error Page*/

    .error-page-1 h1 {
        font-size: 85px;
    }

    .error-page-1 h2 {
        font-size: 75px;
        margin-bottom: 30px;
    }

    .error-page-1 p {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 45px;
    }

    /*#endregion*/
}

/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {

    /*#region Info Block*/

    .mid-banner .bottom-banner-content {
        max-width: 825px;
    }

    /*#endregion*/
}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {
}

/*Extra Large Screen 32 Inch ( (Resolution 3840x2160 ) 3840px and up) */
@media (min-width: 3840px) {
}
