.hero-swiper {
    width: 100%;
    height: 90vh;
}

.heroSwiper,
.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.heroSwiper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay content */
.hero-content {
    position: absolute;
    z-index: 2;
    left: 20%;
    bottom: 20%;
    color: #fff;
    max-width: 600px;
}

.hero-content h6 {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin: 10px 0 20px;
}



.hero-btn:hover {
    background: #fff;
    color: #000;
}

/* Pagination Right Bottom */
.heroSwiper .swiper-pagination {
    right: 40px !important;
    left: auto !important;
    /*bottom: 40px !important;*/
    text-align: right;
}

.heroSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
    height: 20px;
    width: 20px;
    border-radius: 0;
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-section h1 {
        font-size: 20px;
    }
    .hero-swiper {
        width: 100%;
        height: 25vh;
    }
    .hero-btn {
        padding: 2px 2px;
        border: 1px solid #fff;
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }
}
.media-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.media-wrap video,
.media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay content */
.hero-content {
    position: absolute;
    z-index: 3;
    left: 20%;
    bottom: 25%;
    color: #fff;
    max-width: 600px;
}

/* Optional dark overlay */
/*.swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 2;
}*/
.media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.hero-title {
    color: #E4C474; /* text color */
    -webkit-text-stroke: 1px #000; /* stroke color */
    text-stroke: 1px #000;
}
/* MOBILE FIX */
@media (max-width: 768px) {
    .media-wrap video {
        /*object-fit: contain;*/
    }
    .hero-btn {
        padding: 5px 5px;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all .35s ease;
    }
    .hero-desc {
        font-size: 16px;
        line-height: 1.8;
        opacity: .85;
        color: white;
    }
}
.hero-content-wrapper {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    color: #fff;
}

/* Small tagline */
.hero-tagline {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .9;
    color: whitesmoke;
}

/* Main title */
.hero-title {
    font-size: 70px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Description */
.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    opacity: .85;
    margin-bottom: 32px;
    color: white;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 18px;
}

.hero-btn {
    padding: 14px 34px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .35s ease;
}

/* Button styles */
.hero-btn.primary {
    background: #fff;
    color: #000;
}

.hero-btn.primary:hover {
    background: #eaeaea;
}

.hero-btn.outline {
    border: 1px solid rgba(255,255,255,.6);
    color: #fff;
}

.hero-btn.outline:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Hero Contact Section */
.hero-contact-section {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 50;
    display: flex;
    align-items: center;
}

.hero-contact-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
}

/* Phone left */
.phone-contact {
    display: grid;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.phone-contact .phone-icon {
    width: 24px;
    height: 24px;
}

/* Categories center */
.categories {
    display: flex;
    justify-content: center;
    gap: 50px;
    /*position: absolute;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    z-index: 10;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: scale(1.1);
}

.category-icon {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.category-item:hover .category-icon {
    background: rgba(255,255,255,0.2);
}

.category-icon img {
    width: 60px;
    height: 60px;
}

/* Category text */
.category-item span {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .hero-contact-section .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .category-icon img {
        width: 30px;
        height: 30px;
    }

    .phone-contact {
        margin-bottom: 20px;
    }

    .categories {
        position: static;
        transform: none;
        justify-content: center;
        gap: 30px;
        width: 100%;
    }
}

/* Project Carousel */
.project-card .card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-card .card:hover {
    transform: scale(1.05);
}

.project-card .card-hover-overlay {
    background: rgba(0,0,0,0.7);
    transition: opacity 0.3s ease;
}

.project-card:hover .card-hover-overlay {
    opacity: 1;
}

.project-card .card-title-overlay {
    backdrop-filter: blur(4px);
}

.project-card img {
    object-fit: cover;
    /*height: 240px;*/
    width: 100%;
}
.project-card {
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.project-card .card-hover-overlay {
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .card-hover-overlay {
    opacity: 1;
}

/* Optional: Hover zoom effect on image */
.project-card img {
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Button styling */
.project-card .btn {
    padding: 8px 20px;
    font-weight: 500;
}


