* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    background: url("images/bg_image.png") center/cover no-repeat;
    position: relative;
    color: #fff;
}

/* Dark Overlay */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Container */
.container {
    position: relative;
    height: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    margin-top: 10px;
}

.logo_img {
    max-width: 320px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
}

/* Heading */
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ff5a5a;
    line-height: 1.2;
    margin-bottom: 20px;
}


/* Paragraph */
.hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
    margin-left: 650px;
}

/* Social */

.social {
    text-align: right;
    margin-right: 250px;
}

.social a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    transition: 0.3s ease;
}

.social a:hover {
    color: #ff5a5a;
    transform: scale(1.1);
}


@media (max-width: 1000px) {
    .social {
        margin-right: 150px;
    }
}

/* Tablet */
@media (max-width: 900px) {

    .container {
        text-align: center;
    }

    .hero p {
        max-width: 100%;
        margin-left: 0px;
        text-align: center;
    }

    .hero h1 {
        font-size: 38px;
    }

    .social {
        text-align: center;
        margin-right: 0px;
    }

}

/* Mobile */
@media (max-width: 600px) {

    header {
        margin-top: 5px;
    }

    .logo_img {
        max-width: 260px;
    }

    .container {
        text-align: left;
    }

    .hero p {
        text-align: left;
        /* align-items: center; */
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero p {
        font-size: 16px;
    }

    .social {
        justify-content: center;
    }
}