:root {
    --main-color: #0462a2;
    --white-color: #fff;
    --primary-color: #091216;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: "Urbanist", sans-serif;

}

span,
p,
strong {
    font-family: "Marcellus", serif;
}

.top-header {
    background-color: var(--primary-color);
    padding: 10px 0px;
    display: none;
}

.top-header-inner {
    justify-content: space-around;
    align-items: center;
}

.top-icon img {
    width: 35px;
    margin: 0px 5px;

}

.top-icon a {
    text-decoration: none;
    color: var(--white-color);
    font-weight: 600;
    padding: 3px 0px;
    font-size: 18px;
}

.border-left {
    border-left: 1px inset var(--white-color);
}

/* navbar start here  */
/* Desktop Navbar */
/* .desktop-navbar {
    background-color: var(--white-color);
    padding: 16px 0;
} */
.desktop-navbar {
    background-color: var(--white-color);
    padding: 5px 0;
    position: absolute;
    top: 48px;
    z-index: 10;
    width: 80%;
    transform: translateX(13%);
    border-radius: 67px;
    transition: all 0.3s ease;
}

.desktop-navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    transform: translateX(0);
    border-radius: 0;
    z-index: 9990;
}

/* Before/after for shadow or border */
.desktop-navbar.sticky::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    /* just below nav */
    width: 100%;
    height: 3px;
    /* or 1px for thin line */
    background: var(--main-color);
    /* or your brand color or gradient */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* subtle shadow */
}


.desktop-navbar .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
}

.desktop-navbar .nav-link {
    position: relative;
    /* important for pseudo-element positioning */
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 5px;
    transition: color 0.3s ease;
    font-size: 20px;
    text-decoration: none;
}

.desktop-navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 5px;
    /* adjust how far below the text */
    left: 0;
    width: 0;
    height: 2px;
    /* thickness of the line */
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

.desktop-navbar .nav-link:hover {
    color: var(--main-color);
}

.desktop-navbar .nav-link:hover::before {
    width: 100%;
}


.get-btn a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 10px;
}

.desktop-navbar .estimate-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    /* border-radius: 30px; */
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.desktop-navbar .estimate-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.navbar-brand img {
    width: 218px;
}

.navbar-nav {
    padding: 20px;
}

/* Mobile Navbar */
.mobile-navbar {
    background-color: var(--secondary-color);
    padding: 15px 0;
    display: none;
}

.mobile-navbar .navbar-brand {
    margin-left: 15px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1050;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding-top: 70px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    right: 0;
}

.navbar-toggler img {
    width: 40px;
}

.mobile-menu .nav-link {
    color: var(--white);
    padding: 12px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    color: var(--primary-color);
}

.mobile-menu .estimate-btn {
    display: block;
    margin: 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

.close-btn img {
    width: 40px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 25px;
    cursor: pointer;
}

/* hero section start here  */
/* Hero Slider Area */
.roofing-slider-area {
    position: relative;
    overflow: hidden;
}

.slide-img {
    position: absolute;
    /* or relative to your container */
    top: 0;
    /* stick to bottom */
    left: 0;
    width: 200%;
    /* double for smooth loop */
    height: 70px;
    /* or your image height */
    background: url('../images/pattern-1.png') repeat-x;
    background-size: auto 100%;
    animation: slidePattern 20s linear infinite;
    z-index: 1;
    /* adjust if needed */
}

@keyframes slidePattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    display: none;
}

.roofing-slider-wrap {
    position: relative;
    z-index: 1;
}

.roofing-slider-item {
    height: 1000px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.it-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 33%);
}

.it-slider-overlay::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(91deg, #091216 0%, rgba(9, 18, 22, 0) 100%);
}

.it-slider-content {
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 315px 0px;
}

.it-slider-subtitle {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.01em;
    margin-bottom: 23px;
    padding: 9px 17px;
    display: inline-block;

    color: var(--white-color);
    background: linear-gradient(90deg, #0462a2 0%, rgba(9, 18, 22, 0) 100%);
}

.it-slider-title {
    font-weight: 700;
    font-size: 80px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
}

.it-slider-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.it-slider-title img {
    width: 200px !important;

    border-radius: 100px;
}

.owl-carousel .owl-item img {
    display: inline !important;

}

.it-slider-title span {
    color: #2caaff;
}

.it-slider-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 40px;
}

/* Button Styles */
.it-btn-orange {
    background: var(--main-color);
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.it-btn-orange:hover {
    background: var(--primary-color);
    color: #fff;
}

.it-btn-orange i {
    margin-left: 10px;
}

/* Author Box */
.it-slider-author {
    margin-left: 30px;
}

.it-slider-author-avater img {
    width: 60px;
    height: 60px;
    /* border-radius: 50%; */
    /* border: 3px solid #fff; */
}

.it-slider-author-designation {
    margin-left: 15px;
}

.it-slider-author-designation i {
    font-style: normal;
    font-size: 14px;
    color: #ccc;
    display: block;
}

.it-slider-author-designation span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.owl-prev,
.owl-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot span {
    width: 18px;
    height: 18px;
    margin: 5px 7px;
    background: #ffffff;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--main-color);
}

/* Owl Carousel Dots */
.owl-dots {
    position: absolute;
    top: 411px;
    right: 43px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-color);
}

.owl-theme .owl-dots .owl-dot {

    margin: 8px 0px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--main-color);
    width: 30px;
    border-radius: 15px;
}


/* about us start here  */

.section-padding {
    padding: 100px 0;
}

.highlight-title {
    font-size: 40px;
    text-transform: uppercase;
}

.highlight-title span {
    color: var(--main-color);
}

.about-description a {
    text-decoration: none;
    font-weight: 600;
}

.about-subtitle {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--main-color);
}

.about-section {
    position: relative;

    background: linear-gradient(to bottom, #f6f6f6 0%, #ffffff 100%);
    overflow: hidden;
}

.about-pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url(assets/images/background/pattern-1.png);
    background-repeat: repeat-x;
    animation: slidePattern 30s linear infinite;
}

.about-cap-icon {
    position: absolute;
    right: 0;
    bottom: 100px;
    width: 348px;
    height: 205px;
    background-image: url(assets/images/icons/about-cap.png);
    background-repeat: no-repeat;
    z-index: 1;
}

/* Section Header */
.section-header {
    position: relative;
    margin-bottom: 4px;
    /* padding-left: 20px; */
}

.section-subtitle-1 {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    max-width: 600px;
}

/* Content Layout */
.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-images-column {
    flex: 0 0 calc(58.333% - 15px);
    max-width: calc(58.333% - 15px);
}

.about-text-column {
    flex: 0 0 calc(41.667% - 15px);
    max-width: calc(41.667% - 15px);
    padding-top: 40px;
}

/* Image Grid */
.image-grid {
    display: flex;
    gap: 30px;
}

.small-image-wrapper {
    flex: 0 0 calc(33.333% - 15px);
    max-width: calc(33.333% - 15px);
    position: relative;
}

.large-image-wrapper {
    flex: 0 0 calc(66.667% - 15px);
    max-width: calc(66.667% - 15px);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.large-image-wrapper .about-image {
    margin-top: 100px;
}

.construction-icon {
    position: absolute;
    left: 21px;
    bottom: 130px;
    z-index: 2;
}

.construction-icon img {
    width: 200px;
}

.about-one_button {
    position: relative;
    margin-top: 300px;
}

/* Button */

.about-one_button {
    position: relative;
    margin-top: 30px;
}

.theme-btn {
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-style-three {
    position: relative;
    font-weight: 700;
    font-size: 14px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    padding: 8px 8px 8px 28px;
    color: var(--white-color);
    text-transform: uppercase;
    font-family: "Lexend Deca", sans-serif;
    background-color: var(--main-color);
    border: none;
    outline: none;
}

.btn-style-three:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -200%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background-color: var(--primary-color);
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
}

.btn-style-three:hover:before {
    top: -50%;
}

.btn-style-three .btn-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one,
.btn-style-three .btn-wrap .text-two {
    position: relative;
    display: block;
    color: var(--white-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.btn-style-three .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.btn-style-three:hover .btn-wrap .text-one {
    transform: translateY(-100%);
}

.btn-style-three:hover .btn-wrap .text-two {
    transform: translateY(-100%);
}

.btn-style-three i {
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    padding: 5px;
}

.btn-style-three i img {
    width: 16px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Adjust the button position in about section */
.about-one-button {
    position: absolute;
    bottom: 16px;
    left: 28px;
    margin-top: 0;
    z-index: 3;
}

/* Feature Blocks */
.feature-block_two {
    position: relative;
    margin-bottom: 30px;
}

.feature-block_two-inner {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    padding: 12px 25px 30px;
    background-image: linear-gradient(to bottom, #010101, #0c0c0c, #141414, #1a1a1a, #202020) !important;
}

.feature-block_two-inner:hover {
    background-image: linear-gradient(to bottom, #0462a2, #0462a2, #0462a2, #0462a2, #0462a2) !important;
    color: var(--white-color) !important;
}

.feature-block_two-title {
    position: relative;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.40;
    color: var(--white-color) !important;
    text-transform: uppercase;
    font-family: "Lexend Deca", sans-serif;
}

.feature-block_two_count {
    color: var(--white-color);
}

.feature-block_two-icon {
    position: relative;
    display: block;
    text-align: right;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--white-color);
}

.feature-block_two-icon i {
    position: relative;
    display: inline-block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.feature-block_two-inner:hover .feature-block_two-icon i {
    transform: rotateY(180deg);
}

.feature-block_two_count {
    position: relative;
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    color: var(--white-color);
    font-family: "Lexend Deca", sans-serif;
}

.feature-block_two_count sup {
    position: relative;
    color: var(--main-color);
}

.feature-block_two-inner:hover .feature-block_two_count sup {
    color: var(--white-color);
}

.feature-block_two_text {
    position: relative;
    font-size: 12px;
    color: var(--white-color);
    text-transform: capitalize;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-block {
    flex: 1;
    background: var(--white-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}



.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 5px;
}

.stat-number span {
    font-size: 24px;
    color: var(--main-color);
}

.stat-description {
    font-size: 14px;
    color: var(--white-color);
}

/* Animation */
@keyframes slidePattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}



/* Services Section Styles */
.services-section {
    position: relative;
}

.it-service-shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}

.section-header span {
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--main-color);
}

.service-image-wrap {
    height: 100%;
    min-height: 300px;
}

.service-item {
    padding: 40px 26px !important;
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
}

.service-para p {
    font-size: 18px;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--main-color);
    transition: height 0.4s ease;
    z-index: -10;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item:hover::after {
    height: 100%;
    bottom: auto;
    top: 0;
}

.service-item:hover h3 a,
.service-item:hover p {
    color: white !important;
}

.service-item:hover .service-arrow {
    background-color: var(--primary-color) !important;
}


.service-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-hover-dark {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #222;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-hover-dark:hover::before {
    width: 100%;
}

.btn-hover-dark .btn-text {
    position: relative;
    transition: all 0.3s ease;
}

.btn-hover-dark:hover .btn-text {
    color: white;
}


/* testimonial section start here  */
.testimonial-top {
    padding-bottom: 50px;
}

.slider-author {
    display: flex;
    align-items: center;
}

.slider-author-avatar img {
    /* border-radius: 50%; */
    width: 100%;
}

.slider-author-designation {
    margin-left: 15px;
}

.slider-author-designation i {
    font-style: italic;
    color: #6c757d;
}

.slider-author-designation span {
    display: block;
    color: #000;
    font-weight: 500;
}

.view-all-btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--main-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    border: none;
}

.view-all-btn .text-1,
.view-all-btn .text-2 {
    display: block;
    transition: transform 0.3s ease;
}

.view-all-btn .text-2 {
    position: absolute;
    top: 12px;
    left: 30px;
    transform: translateY(100%);
}

.view-all-btn:hover .text-1 {
    transform: translateY(-100%);
}

.view-all-btn:hover .text-2 {
    transform: translateY(0);
}

.view-all-btn i {
    margin-left: 10px;
    vertical-align: middle;
}

.testimonial-item {
    padding: 30px;
    box-shadow: rgb(213 213 213 / 34%) 5px 8px 7px 6px !important;
    border-radius: 20px;
}

.testimonial-text p {
    font-style: italic;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.6;
    text-decoration: underline;
    color: #000;
    margin-bottom: 40px;
}

.testimonial-avatar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-avatar-info img {
    width: 150px !important;
}

.testimonial-avatar-info h5 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.28;
    position: relative;
    padding-left: 40px;
}

.testimonial-avatar-info h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: #000;
}

.testimonial-avatar-info span {
    display: block;
    margin-top: 5px;
}





/* project start here  */

.project-section {
    background: url(../images/project-1-1.png);
    /* object-fit: cover; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.project-item {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.project-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(23, 36, 38, 0) 0%, #17242675 100%);
    z-index: 1;
}

.project-thumb img {
    transition: transform 0.7s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    z-index: 2;
    transition: all 0.3s ease;
}

.project-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3.2%;
    width: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    /* background: var(--main-color); */
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.project-tag .badge {
    font-weight: 400;
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
}

.project-arrow {
    transition: all 0.3s ease;
}

.project-arrow svg {
    transition: transform 0.6s ease;
}

.project-item:hover .project-thumb img {
    transform: scale(1.2);
}

.project-item:hover .project-content::after {
    height: 100%;
}

.project-item:hover .project-arrow {
    background-color: var(--primary-color) !important;
}

.project-item:hover .project-arrow svg {
    transform: rotate(390deg);

}

.project-client-info-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 82%;
    border-radius: 1000px;
    z-index: -1;
    background-color: #000;
}

.project-client-btn {
    transition: all 0.3s ease;
}

.project-client-btn:hover svg {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

.project-client-info-box:hover img {
    transform: translateX(-10px);
    transition: transform 0.4s ease;
}

/* Owl Carousel Custom Styles */
.project-carousel .owl-stage {
    display: flex;
}

.project-carousel .owl-item {
    padding: 0 15px;
}

.project-carousel .owl-nav {
    display: none;
}

.project-dots .owl-dot {
    position: relative;
    width: 25%;
    height: 4px;
    background-color: rgba(121, 121, 121, 0.3);
    border-radius: 0;
}

.project-dots .owl-dot::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #000;
    transition: width 0.3s ease;
}

.project-dots .owl-dot.active::after {
    right: auto;
    left: 0;
    width: 100%;
}


/* contact section start here */
.contact-section {
    padding: 130px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 18, 22, 0.9);
    z-index: -1;
}

.section-subtitle {
    display: block;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 18px;
}

.section-title-1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-info-box {
    margin-bottom: 40px;
}

.contact-info-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
}

.contact-info-content {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-content:hover {
    color: #ffffff;
}

.contact-info-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.contact-info-content:hover::after {
    width: 100%;
}

.contact-social-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    display: block;
}

.contact-social-link {
    display: inline-block;
    color: var(--white-color);
    font-size: 30px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    color: var(--main-color);
    transform: translateY(-3px);
}

.contact-form-box {
    background: #ffffff;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.contact-form-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    height: 70%;
    width: 10px;
    background: var(--main-color);
}

.form-control-custom {
    border: none;
    border-bottom: 1px solid #797979;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    height: 55px;
}

.form-control-custom:focus {
    box-shadow: none;
    border-bottom-color: var(--main-color);
}

textarea.form-control-custom {
    height: 120px;
    resize: none;
}

.submit-btn {
    background: var(--main-color);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.submit-btn i {
    margin-left: 10px;
}

.contact-shape {
    position: absolute;
    z-index: -1;
}

.contact-shape-1 {
    bottom: 0;
    right: 0;
}

.contact-shape-2 {
    bottom: 0;
    left: 0;
}



/* footer section start here  */
.footer {
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Social Media Icons Styles */
.footer-social {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.social-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Adjust contact items for better spacing */
.contact-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-bg-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 0;
    opacity: 0.1;
}

.footer-widget {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Get In Touch Widget Styles */
.footer-contact-info {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.contact-item i {
    color: var(--main-color);
    width: 20px;
    margin-right: 12px;
    text-align: center;
    font-size: 25px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px !important;
}

.contact-item a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.footer-title {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
}

.footer-title:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--main-color);
    margin-top: 10px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-links li {
    list-style: none;
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 4px;
    font-size: 17px;
}

.footer-links a:hover {
    padding-left: 20px;
}

.footer-links a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-links a:hover:before {
    opacity: 1;
    left: 5px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.footer-gallery a:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.btn-quote {
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}



.btn-quote i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-quote:hover i {
    transform: translateX(3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.copyright a {
    text-decoration: none;
    color: var(--white-color);
}

/* Working Hours Styles */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-hours .day {
    font-weight: 500;
}

.footer-hours .hours {
    text-align: right;
}


/* about us page start here  */
.inner-section {

    background: linear-gradient(rgb(2 2 2 / 78%), rgb(0 0 0 / 46%)), url(../images/inner.webp) center / cover no-repeat;
}

.inner-heading {
    padding: 200px 0px;
    position: relative;
    text-align: center;
}

.inner-heading h3 {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
    width: 100%;
}

.section-full {
    padding: 120px 0 90px;
    width: 100%;
    position: relative;
}

/* Content Styles */
.wt-small-separator {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--main-color);
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.wt-small-separator i {
    margin-right: 10px;
    font-size: 20px;
}

.wt-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Marcellus", serif;
    color: var(--primary-color);
    font-weight: 400;
}

.section-head p {
    color: #6c6c6c;
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: "Urbanist", sans-serif;
}

/* Button Styles */
.site-button {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.site-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Right Side Styles */
.company-exp-position {
    display: block;
}

.company-exp {
    position: relative;
    z-index: 1;
    padding: 0 0 0 100px;
}

.company-exp-media {
    position: relative;
    max-width: 428px;
    margin-left: auto;
    margin-right: 70px;
}

.company-exp-media img {
    width: 100%;
    display: block;
}

.company-exp-tagline {
    background-color: #f9f3ea;
    max-width: 310px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    padding: 30px;
    outline-width: 3px;
    outline-offset: 15px;
    outline-color: #f5ead8;
    outline-style: double;
    border-top: 10px solid #fff;
    border-left: 10px solid #a19d9c;
    border-bottom: 10px solid var(--primary-color);
    border-right: 10px solid #a19d9c;
}

.company-exp-tagline span {
    display: block;
    font-size: 18px;
    font-weight: 400;

    color: var(--primary-color);
    padding: 20px 0px;
}

.site-button-link {
    position: relative;
    font-weight: 600;
    color: var(--main-color);
    font-size: 16px;
    z-index: 1;
    transition: 0.5s all ease;

    text-transform: uppercase;
    padding-left: 40px;
    text-decoration: none;
}

.site-button-link:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background-color: var(--main-color);
    transition: 0.5s;
}

.company-exp:after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    width: 300px;
    left: 230px;
    transform: skew(-20deg);
    z-index: -1;
    top: -30px;
    bottom: -30px;
}

/* Circle Text Styles */
.circle-text1 {
    position: absolute;
    right: 0px;
    z-index: 1;
    bottom: 30px;
    top: auto;
    border-radius: 50%;
}

.emblem-wrap {
    position: relative;
    width: 200px;
    height: 200px;

}

.emblem {
    margin: 0 auto;
    width: 235px;
    height: 235px;
    border-radius: 50%;
    color: var(--primary-color);
    animation: spinZ 20s linear infinite;
    text-align: center;
    background-color: #fff;
}



.emblem span {
    padding: 6px;
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 18px;
    transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}

@keyframes spinZ {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.emblem-wrap i {
    margin: 0 auto;
    width: 133px;
    text-align: center;
    display: block;
    position: absolute;
    top: 58%;
    left: 58%;
    transform: translate(-50%, -50%);
    height: 151px;
    overflow: hidden;
    border-radius: 50%;
}

.emblem-wrap img {
    width: 105px;
}

/* Generate the circle text positions */
.emblem span:nth-child(1) {
    transform: rotate(11.25deg) translate(0, -10px);
}

.emblem span:nth-child(2) {
    transform: rotate(22.5deg) translate(0, -10px);
}

.emblem span:nth-child(3) {
    transform: rotate(33.75deg) translate(0, -10px);
}

.emblem span:nth-child(4) {
    transform: rotate(45deg) translate(0, -10px);
}

.emblem span:nth-child(5) {
    transform: rotate(56.25deg) translate(0, -10px);
}

.emblem span:nth-child(6) {
    transform: rotate(67.5deg) translate(0, -10px);
}

.emblem span:nth-child(7) {
    transform: rotate(78.75deg) translate(0, -10px);
}

.emblem span:nth-child(8) {
    transform: rotate(90deg) translate(0, -10px);
}

.emblem span:nth-child(9) {
    transform: rotate(101.25deg) translate(0, -10px);
}

.emblem span:nth-child(10) {
    transform: rotate(112.5deg) translate(0, -10px);
}

.emblem span:nth-child(11) {
    transform: rotate(123.75deg) translate(0, -10px);
}

.emblem span:nth-child(12) {
    transform: rotate(135deg) translate(0, -10px);
}

.emblem span:nth-child(13) {
    transform: rotate(146.25deg) translate(0, -10px);
}

.emblem span:nth-child(14) {
    transform: rotate(157.5deg) translate(0, -10px);
}

.emblem span:nth-child(15) {
    transform: rotate(168.75deg) translate(0, -10px);
}

.emblem span:nth-child(16) {
    transform: rotate(180deg) translate(0, -10px);
}

.emblem span:nth-child(17) {
    transform: rotate(191.25deg) translate(0, -10px);
}

.emblem span:nth-child(18) {
    transform: rotate(202.5deg) translate(0, -10px);
}

.emblem span:nth-child(19) {
    transform: rotate(213.75deg) translate(0, -10px);
}

.emblem span:nth-child(20) {
    transform: rotate(225deg) translate(0, -10px);
}

.emblem span:nth-child(21) {
    transform: rotate(236.25deg) translate(0, -10px);
}

.emblem span:nth-child(22) {
    transform: rotate(247.5deg) translate(0, -10px);
}

.emblem span:nth-child(23) {
    transform: rotate(258.75deg) translate(0, -10px);
}

.emblem span:nth-child(24) {
    transform: rotate(270deg) translate(0, -10px);
}

.emblem span:nth-child(25) {
    transform: rotate(281.25deg) translate(0, -10px);
}

.emblem span:nth-child(26) {
    transform: rotate(292.5deg) translate(0, -10px);
}

.emblem span:nth-child(27) {
    transform: rotate(303.75deg) translate(0, -10px);
}

.emblem span:nth-child(28) {
    transform: rotate(315deg) translate(0, -10px);
}

.emblem span:nth-child(29) {
    transform: rotate(326.25deg) translate(0, -10px);
}

.emblem span:nth-child(30) {
    transform: rotate(337.5deg) translate(0, -10px);
}






/* service details page start here  */
/* Sidebar Styles */
.sidebar-side {
    margin-bottom: 30px;
}

.sticky-top {
    position: sticky;
    top: 100px;
    z-index: 1020;
}

.sidebar-widget {
    position: relative;
    margin-bottom: 40px;

}

.sidebar-widget ul {
    list-style: none;
    padding: 0px;
}

.sidebar-title {
    position: relative;
    margin-bottom: 20px;
}

.sidebar-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Marcellus", serif;
}

/* Category List */
.category-list {
    position: relative;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li span {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 55px;
    height: 55px;
    padding: 0px 0px;
    line-height: 55px;
    border-radius: 50px;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.category-list li a {
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 18px;
    z-index: 1;
    font-weight: 600;
    border-radius: 50px;
    color: var(--primary-color);
    text-transform: capitalize;
    padding: 22px 15px 22px 30px;
    font-family: "Lexend Deca", sans-serif;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid rgba(0, 0, 0, 0.50);
}

.category-list li a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transform: translateX(5px);
}

.category-list li a .icon {
    margin-right: 10px;
    color: var(--white-color);
}

.category-list li a:hover .icon {
    color: var(--white-color);
}

/* Rating Widget */
.rating-widget .widget-content {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.rating-widget_rating {
    position: relative;
    font-size: 128px;
    font-weight: 700;
    line-height: 1em;
    text-align: center;
    color: var(--white-color);
}

.rating-widget_title-button a {
    text-decoration: none;
}
.rating-widget_title-button a:hover{
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
}
.rating-widget_authors {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.rating-widget_authors ul {
    display: flex;
}

.rating-widget_authors ul li {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -15px;
    border: 3px solid var(--white-color);
}

.rating-widget_authors ul li:first-child {
    margin-left: 0;
}

.rating-widget_authors ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-widget_reviews {
    font-size: 16px;
    margin-bottom: 20px;
}

.company-logo {
    margin: 20px 0;
}

.rating-widget_phone {
    font-size: 18px;
    margin-bottom: 20px;
}

.rating-widget_phone a {
    color: var(--white-color);
    font-weight: 700;
    font-size: 24px;
    display: block;
    margin-top: 5px;
}

/* Button Styles */
.theme-btn {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Content Side Styles */
.service-detail_image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-detail_tag {
    position: absolute;
    bottom: 20px;
    right: 0;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px 0 0 5px;
}

.service-detail_title {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: "Marcellus", serif;
}

.service-detail_subtitle {
    font-size: 28px;
    margin: 30px 0 20px;
    font-family: "Marcellus", serif;
}

.service-detail p {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Service Blocks */
.service-block_two-inner {

    padding: 30px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    padding-left: 90px;
}

.service-detail_image-two img {
    width: 100%;
}

.service-block_two-number {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.service-block_two strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Service List */
.service-detail_list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
}

.service-detail_list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--main-color);
}

.service-detail_list li span {
    font-weight: 700;
    color: var(--primary-color);
}

/* Accordion */
.accordion-box {
    margin-top: 30px;
}

.accordion-box .accordion {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.accordion-box .acc-btn {
    padding: 15px 20px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.accordion-box .acc-btn .icon-outer {
    margin-right: 15px;
}

.accordion-box .acc-btn .icon {
    transition: all 0.3s ease;
}

.accordion-box .active .acc-btn .icon {
    transform: rotate(90deg);
}

.accordion-box .acc-content {
    display: none;
    padding: 20px;
    background-color: var(--white-color);
}

.accordion-box .current .acc-content {
    display: block;
}


/* service page start here  */
.section-title {
    text-align: center;

    width: 100%;
    margin: auto;
    padding: 20px 0px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle:before,
.section-subtitle:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
}

.section-subtitle:before {
    left: -60px;
}

.section-subtitle:after {
    right: -60px;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .section-heading {
        font-size: 36px;
    }

    .section-subtitle:before,
    .section-subtitle:after {
        width: 30px;
    }

    .section-subtitle:before {
        left: -40px;
    }

    .section-subtitle:after {
        right: -40px;
    }
}

.service-detail_inner ul{
    list-style: none;
    padding: 0;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background-color: var(--white);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-title a:hover {
    color: var(--primary-color);
}

.service-desc {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.view-all-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-container {
    text-align: center;
}














/* service area start here  */
.service-area-item {
    display: block;
    background: var(--primary-color);
    /* Your theme primary */
    color: #fff;
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-area-item:hover {
    background: var(--main-color);
    /* Accent color on hover */
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* service area start here  */



.content-column {
    padding: 30px;
    background-color: #f8f9fa;
    height: 100vh;
    overflow-y: auto;
}

.map-column h3{
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;

}

.comn-list-service-area {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    /* Gap between items */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.comn-list-service-area li{
   
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 4px;
}

.service-area-section{
    padding: 20px;
}












/* gallery start here  */
.project-img-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-img-wrapper img {
    transition: transform 0.4s ease;
    display: block;
    width: 100%;
}

.project-img-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-img-wrapper::after {
    content: "\f00e";
    /* FontAwesome search icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.project-img-wrapper:hover img {
    transform: scale(1.1);
}

.project-img-wrapper:hover::before {
    opacity: 1;
}

.project-img-wrapper:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    background: transparent;
    border: none;
    text-align: center;
}

.modal-header {
    border-bottom: none;
    justify-content: flex-end;
}

.modal-header .btn-close {
    background: #fff;
    padding: 1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.lightbox-nav i {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-nav i:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* blog page start here  */
   .blog-box {
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .blog-box img {
      width: 100%;
      height: auto;
      display: block;
    }

    .blog-content {
      padding: 20px;
    }

    .sidebar-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    .sidebar-item img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
      margin-right: 15px;
    }

    .sidebar-text {
      flex: 1;
    }

    .sidebar-text h6 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }

    .sidebar-date {
      font-size: 12px;
      color: #888;
      margin-top: 5px;
    }