header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99
}

header .top-header .main-top-header {
    background-color: #041b34;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px
}

header .top-header .main-top-header a {
    color: #fff;
    font-size: 14px;
    font-weight: 300
}

header .top-header .main-top-header ul {
    display: flex;
    gap: 20px;
    align-items: center
}

header .top-header .main-top-header ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px
}

@media(max-width: 500px) {
    header .top-header .main-top-header {
        flex-direction: column
    }
}

header .bottom-header .main-bottom-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

header .bottom-header .main-bottom-header .logo a {
    display: flex
}

header .bottom-header .main-bottom-header .logo a img {
    width: 170px
}

header .bottom-header .main-bottom-header .primary-menu ul {
    display: flex;
    align-items: center;
    gap: 20px
}

header .bottom-header .main-bottom-header .primary-menu ul a {
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 15px;
    background-color: rgba(215, 215, 215, .11);
    transition: all .2s linear
}

header .bottom-header .main-bottom-header .primary-menu ul a.active-nav {
    background-color: #dda03e
}

header .bottom-header .main-bottom-header .primary-menu ul a:hover {
    background-color: #b0833c
}

.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none
}

.about-us .main-about {
    display: flex;
    gap: 50px
}

.about-us .main-about .about-img {
    width: 50%;
    position: relative
}

.about-us .main-about .about-img .img-box {
    display: flex
}

.about-us .main-about .about-img .img-box img {
    border-radius: 10px;
    box-shadow: 0 0 12px #ccc
}

.about-us .main-about .about-img img {
    width: auto
}

.about-us .main-about .about-img .black-men {
    position: absolute;
    bottom: 0;
    width: 250px;
    margin-bottom: -50px;
    right: 0
}

.about-us .main-about .about-content {
    width: 50%
}

.about-us .main-about .about-content .group-box {
    display: flex;
    gap: 30px;
    margin-top: 30px
}

@media(max-width: 500px) {
    .about-us .main-about .about-content .group-box {
        flex-direction: column
    }
}

.about-us .main-about .about-content .about-bottom {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #ccc
}

.text-slide {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #b7b7b7;
    margin-bottom: -60px
}

.text-slide .big {
    font-size: 100px;
    line-height: normal
}

.service-section {
    background-color: #f6f3ec
}

.service-section .service-lists {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px
}

.service-section .service-lists .item {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(156, 156, 156, .3098039216)
}

.service-section .service-lists .item .item-img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0
}

.service-section .service-lists .item .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .2s linear
}

.service-section .service-lists .item .service-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
    position: relative;
    background-color: #fff;
    transition: all .3s ease
}

.service-section .service-lists .item .service-content a {
    color: #041b34
}

.service-section .service-lists .item .service-content .service-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.service-section .service-lists .item .service-content .service-content-header .service-title {
    font-size: 24px
}

.service-section .service-lists .item .service-content .service-content-header .count {
    font-size: 20px
}

.service-section .service-lists .item .service-content .icon-wrap {
    text-align: center
}

.service-section .service-lists .item .service-content .icon-wrap img {
    width: 80px
}

.service-section .service-lists .item .service-content .service-button-scroll {
    display: none
}

.service-section .service-lists .item .service-content .service-button-scroll a {
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
    padding: 0 10px
}

.service-section .service-lists .item:hover .item-img {
    opacity: 1
}

.service-section .service-lists .item:hover .service-content {
    background: rgba(0, 0, 0, .2862745098);
    color: #fff
}

.service-section .service-lists .item:hover .service-content a,
.service-section .service-lists .item:hover .service-content p {
    color: #fff
}

.service-section .service-lists .item:hover .icon-wrap {
    display: none
}

.service-section .service-lists .item:hover .service-button-scroll {
    display: block
}

.service-section .service-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
    position: relative;
    z-index: 1
}

.service-section .service-footer a {
    font-weight: 600;
    color: #dda03e
}

.projects.section-padding {
    padding: 100px 0 0 0
}

.projects .heading {
    position: relative
}

.projects .heading .heading-texture {
    text-align: center;
    background: linear-gradient(to top, #f0f8ff 13%, #9b9999 844px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    font-size: 200px;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    width: 100%;
    bottom: 55px
}

.projects .heading .section-heading {
    text-align: center
}

.projects .heading .section-heading span {
    display: inline
}

.projects .project-gallery {
    margin-top: 50px
}

.projects .project-gallery .item {
    border-radius: 20px;
    overflow: hidden
}

.projects .project-gallery .item img {
    transition: all .4s linear
}

.projects .project-gallery .item:hover img {
    transform: scale(1.2)
}

.why-choose-us {
    display: flex;
    flex-wrap: wrap
}

.main-why-choose-us {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(107, 107, 107, .2039215686)
}

.main-why-choose-us .why-choose-us-container {
    background-color: #031b34;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

.main-why-choose-us .why-choose-us-container p {
    color: #fff
}

.main-why-choose-us .image-side {
    flex: 1;
    min-width: 50%
}

.main-why-choose-us .image-side img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.main-why-choose-us .content-side {
    flex: 1;
    min-width: 50%;
    padding: 60px;
    box-sizing: border-box
}

.main-why-choose-us .section-label {
    background-color: #dda03e;
    color: #fff;
    border: none;
    padding: 6px 14px;
    font-size: 12px;
    margin-bottom: 20px;
    border-radius: 4px
}

.main-why-choose-us .content-side h2 {
    font-size: 36px;
    margin-bottom: 15px
}

.main-why-choose-us .content-side p {
    margin-bottom: 30px;
    line-height: 1.6
}

.main-why-choose-us .progress-bar {
    margin-bottom: 20px
}

.main-why-choose-us .progress-bar .label {
    font-weight: bold;
    margin-bottom: 5px
}

.main-why-choose-us .progress-bar .label span {
    margin-left: 10px;
    font-weight: normal
}

.main-why-choose-us .bar-bg {
    background-color: #ccc;
    height: 6px;
    border-radius: 10px;
    overflow: hidden
}

.main-why-choose-us .bar-fill {
    height: 6px;
    background-color: #dda03e;
    border-radius: 10px
}

.main-why-choose-us .fill-90 {
    width: 90%
}

.main-why-choose-us .fill-95 {
    width: 95%
}

.main-why-choose-us .cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px
}

.main-why-choose-us .btn-orange {
    background-color: #dda03e;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px
}

.main-why-choose-us .call-info small {
    font-size: 12px
}

.main-why-choose-us .call-info p {
    font-size: 20px
}

.main-why-choose-us .call-info a {
    color: #fff
}

.main-why-choose-us .call-info p {
    font-size: 20px;
    margin: 5px 0 0
}

.main-why-choose-us .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center
}

.main-why-choose-us .step {
    flex: 1 1 200px;
    padding: 20px
}

.main-why-choose-us .circle {
    background-color: #dda03e;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold
}

.main-why-choose-us .step h4 {
    margin: 10px 0;
    font-size: 18px
}

.main-why-choose-us .step p {
    font-size: 14px;
    color: #666
}

footer {
    background-color: #222;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: "Arial", sans-serif
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f1c40f
}

.footer-column p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 15px
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color .3s
}

.footer-links a:hover {
    color: #f1c40f
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.social-links a {
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
}

.social-links a:hover {
    background-color: #f1c40f;
    transform: translateY(-3px)
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #444;
    color: #fff;
    font-size: .9rem
}

.footer-bottom a {
    color: #fff
}

.footer-bottom img {
    width: auto
}

@media(max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr
    }

    .footer-column {
        margin-bottom: 30px
    }
}

/* ==========================
 */

.inner-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/other/inner-banner.jpg);
    background-position: center;
    background-size: cover;
    padding: 200px 0 50px 0;
    text-align: center;
    color: #fff;
}

.inner-banner-heading {
    font-size: 40px;
}

.album {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 10px;
    margin: 40px 0px;
}

.album img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease-in;
}

.gallery-wrap {
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-wrap:hover img {
    transform: scale(1.1);
}


.main-contact-section {
    display: flex;
    gap: 50px;

    .contact-details {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 20px;

        .details-main {
            display: flex;
            flex-direction: column;
            gap: 50px;
            margin-top: 30px
        }

        .item {
            display: flex;
            gap: 20px;
            align-items: center;

            img {
                width: 44px
            }

            h5 {
                font-size: 18px;
            }

            a {
                font-size: 18px;
                color: #222
            }
        }
    }

    .contact-form {
        width: 50%;

        .main-form {
            padding: 20px;
            background-color: #ffffff;
            border-radius: 20px;
            box-shadow: 0 0 10px #88888830;
        }
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;

    .group-box {
        display: flex;
        gap: 20px;

        .box {
            width: 50%
        }
    }

    .box {
        width: 100%
    }

    label {
        display: block;
        margin-bottom: 5px
    }

    input,
    textarea,
    select {
        width: 100%;
        padding: 10px
    }

    input[type="submit"] {
        padding: 15px 15px;
        font-size: 16px;
        background-color: #000;
        color: #fff;
        width: 170px;
        border: none;
        display: inline-block;
        cursor: pointer;
    }
}


.service-details {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4ff 50%, #fff 50%);
    font-family: "Segoe UI", sans-serif;
    position: relative;
    overflow: hidden;
}

.service-details .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* Image Section */
.service-img {
    flex: 1;
    position: relative;
}
.service-img img {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}
.service-img .img-overlay {
    position: absolute;
    top: 20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: rgba(42, 122, 228, 0.1);
    border-radius: 20px;
    z-index: 1;
}

/* Content Section */
.service-content {
    flex: 1;
    z-index: 2;
}
.service-content .tagline {
    font-size: 14px;
    font-weight: bold;
    color: #2a7ae4;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.service-content h1 {
    font-size: 32px;
    margin: 15px 0;
    color: #222;
}
.service-content p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}
.feature-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Button */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #2a7ae4;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.btn:hover {
    background: #1e5bbf;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        text-align: center;
    }
    .service-content {
        margin-top: 20px;
    }
}

.seo-none{ display: none;}