* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #cbd5e1;
}

.hero-text h1 span {
    color: #f83838;
}

.hero-text p {
    margin: 20px 0;
    color: #cbd5e1;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #f83838;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e90e0e;
    transform: translateY(-3px);
}

.hero-img {
    flex: 1;
    text-align: center;
}

.hero-img img {
    width: 300px;
    border: 3px solid #f83838;
    box-shadow: 0 0 30px #000;
}

/* ABOUT */

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #cbd5e1;
}

.about p {
    margin: 0 auto 10px;
    color: #cbd5e1;
}

/* PORTFOLIO SLIDER */
.portfolio {
    padding: 80px 0;
    overflow: hidden;
    margin: 0 auto;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #cbd5e1;
    font-size: 32px;
}

/* PORTFOLIO SLIDER */
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .swiper {
      width: 100%;
      height: 300px;
      margin-left: auto;
      margin-right: auto;
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
    }

    .mySwiper2 {
      height: 80%;
      width: 100%;
    }

    .mySwiper {
      height: 20%;
      box-sizing: border-box;
      padding: 10px 0;
    }

    .mySwiper .swiper-slide {
      width: 35%;
      height: 100%;
    }

    .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 5)); }
}

/* CONTACT */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact a {
    color: #f83838;
    text-decoration: none;
}
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0f172a;
}
/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #0b1120;
    color: #64748b;
}

@media(max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 36px;
    }
}