:root {
  --primary-color: #000;
  --barlow: 'Barlow Condensed', sans-serif;
}



h1{
    font-size: 60px;
}

h2{
    font-size: 45px;
    color: var(--primary-color);
}

h3{
    font-size: 30px;
}

h4{
    font-size: 24px;
}

h5{
    font-size: 21px;
}

h6{
    font-size: 18px;
}


p,a,li,ul,span,div{
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 15px;
}



/* ========================================
   HERO SLIDER SECTION
======================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-section .swiper {
    width: 100%;
    height: 700px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Dark overlay gradient */
.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(30, 30, 30, 0.55) 0%,
        rgba(20, 20, 20, 0.40) 40%,
        rgba(20, 20, 20, 0.40) 60%,
        rgba(30, 30, 30, 0.55) 100%
    );
    z-index: 2;
}

/* Slide content */
.hero-slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 60px;
}

.hero-slide-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.hero-slide-content p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

/* ========================================
   SWIPER NAVIGATION ARROWS
======================================== */
.hero-slider-section .swiper-button-prev,
.hero-slider-section .swiper-button-next {
    color: #ffffff;
    width: 44px;
    height: 44px;
    z-index: 10;
}

.hero-slider-section .swiper-button-prev::after,
.hero-slider-section .swiper-button-next::after {
    font-size: 28px;
    font-weight: 300;
}

.hero-slider-section .swiper-button-prev {
    left: 18px;
}

.hero-slider-section .swiper-button-next {
    right: 18px;
}

.hero-slider-section .swiper-button-prev:hover,
.hero-slider-section .swiper-button-next:hover {
    opacity: 0.7;
}

.hero-slider-section .swiper-pagination {
    display: none;
}








































/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hero-slider-section .swiper {
        height: 550px;
    }

    .hero-slide-content h2 {
        font-size: 42px;
    }

    .hero-slide-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section .swiper {
        height: 450px;
    }

    .hero-slide-content {
        padding: 0 50px;
    }

    .hero-slide-content h2 {
        font-size: 34px;
    }

    .hero-slide-content p {
        font-size: 15px;
        max-width: 90%;
    }

    .hero-slider-section .swiper-button-prev,
    .hero-slider-section .swiper-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider-section .swiper {
        height: 380px;
    }

    .hero-slide-content h2 {
        font-size: 28px;
    }

    .hero-slide-content p {
        font-size: 14px;
    }
}