* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

body {
    overflow-x: hidden;
}

.main-width {
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0px 20px;
}

.hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/joy2.jpg) no-repeat;
    background-size: 110% auto;
    background-position: center 30%;
    /*position: relative;*/
}

header {
    /*padding: 40px 0 30px;*/
    padding: 20px 0;
    display: flex;
    /*flex-wrap: nowrap;*/
    align-items: center;
    justify-content: space-between;
}

.logo i {
    height: 55px;
    width: 55px;
    background: transparent;
    border: 2px solid #8D72E1;
    color: #8D72E1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

nav .hamb {
    width: 35px;
    height: 24px;
    right: 3%;
    top: 60px;
    z-index: 5;
    background: transparent;
    position: absolute;
    cursor: pointer;
    display: none;
}

nav .hamb span {
    display: block;
    background: #8D72E1;
    width: 100%;
    height: 3px;
    transition: 0.3s;
    transition-property: transform, opacity;
}

nav .hamb span:nth-child(2) {
    margin: 7px 0px;
}

nav .nav-list {
    list-style: none;
}

nav .nav-list li {
    display: inline-block;
}

nav .nav-list li a {
    display: inline-block;
    color: #eee;
    margin-left: 55px;
    font-size: 15px;
    font-weight: 600;
}

nav .nav-list li:not(:last-child) a:hover {
    color: #8D72E1;
    transition: 0.4s;
}

nav .nav-list li.btn a {
    display: inline-block;
    background: transparent;
    border: 2px solid #8D72E1;
    padding: 9px 28px;
    border-radius: 30px;
    line-height: 1.3;
    color: #8D72E1;
    font-weight: 500;
}

nav .nav-list li.btn:hover a {
    background: #8D72E1;
    color: white;
    border: 2px solid transparent;
    transition: 0.4s;
}

.container {
    padding-top: 190px;
}

.container .hero-text {
    margin-bottom: 40px;
}

.container .hero-text h1 {
    color: white;
    font-size: 47px;
    font-weight: 900;
    line-height: 1.2;
}

.container .hero-text h1 span {
    color: #8D72E1;
}

.container .hero-text h3 {
    color: #eee;
    font-weight: 400;
    font-size: 17px;
}

.container .hero-text p {
    color: #eee;
    width: 440px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.container .hero-text a {
    color: #eee;
    background: #8D72E1;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #8D72E1;
    border-radius: 30px;
    line-height: 24px;
    padding: 8px 30px;
}

.container .hero-text a:hover {
    background: transparent;
    border: 2px solid #8D72E1;
    color: #8D72E1;
    transition: 0.4s;
}

.bottom {
    /*margin-top: 643px;
    padding-bottom: 40px;*/
    text-align: bottom;
}

.bottom p {
    color: #eee;
    letter-spacing: 2px;
    font-size: 15px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-text .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.about-text .btn:hover {
    background: #555;
}

.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #000; /* Black background */
    color: #fff; /* White text for contrast */
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff; /* White text */
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

#contact-form {
    flex: 1;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff; /* White text */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background: #333; /* Dark input fields */
    color: #fff; /* White text */
}

.form-group textarea {
    resize: vertical;
}

#contact-form .btn {
    padding: 10px 20px;
    background: #fff; /* White button */
    color: #000; /* Black text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact-form .btn:hover {
    background: #ddd; /* Light gray on hover */
}

.contact-info {
    flex: 1;
    text-align: left;
    padding: 20px;
    background: #111; /* Dark background for contact info */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); /* White shadow for contrast */
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff; /* White text */
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc; /* Light gray text */
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ccc; /* Light gray text */
}

.contact-info ul li i {
    margin-right: 10px;
    color: #fff; /* White icons */
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5rem;
    color: #fff; /* White icons */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ddd; /* Light gray on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content, .contact-content {
        flex-direction: column;
    }

    .about-image, .contact-info {
        text-align: center;
    }
}

@media screen and (max-width: 930px) {
    nav .hamb {
        display: initial;
    }

    .click {
        top: 46px;
    }

    .click span {
        position: absolute;
        margin-top: 12px;
    }

    .click span:first-child {
        transform: rotate(-40deg);
    }

    .click span:nth-child(2) {
        opacity: 0;
        margin: 0;
    }

    .click span:last-child {
        transform: rotate(40deg);
        top: 0;
    }

    nav .nav-list {
        position: absolute;
        top: 90px;
        right: -65%;
        bottom: 0;
        width: 60%;
        height: 50%;
        background: black;
        z-index: 2;
        padding: 6% 9%;
        transition: 0.3s right;
        border-radius: 10px;
        display: none;
    }

    nav .nav-list li {
        display: block;
    }

    nav .nav-list li a {
        display: block;
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        margin-left: 0;
        margin-bottom: 40px;
    }

    nav .nav-list li.btn a {
        position: absolute;
        bottom: 0%;
        right: 20%;
        left: 20%;
        padding: 7px 15px;
        font-size: 14px;
    }

    nav .nav-list.open {
        right: 0;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 30px 0 20px;
    }

    .container {
        padding-top: 120px;
    }

    .container .hero-text h1 {
        font-size: 35px;
    }

    .container .hero-text h3 {
        font-size: 15px;
    }

    .container .hero-text p {
        font-size: 14px;
        width: 100%;
    }

    .container .hero-text a {
        font-size: 14px;
        padding: 6px 20px;
    }

    .bottom {
        margin-top: 400px;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 20px 0 10px;
    }

    .container {
        padding-top: 100px;
    }

    .container .hero-text h1 {
        font-size: 28px;
    }

    .container .hero-text h3 {
        font-size: 14px;
    }

    .container .hero-text p {
        font-size: 13px;
    }

    .container .hero-text a {
        font-size: 12px;
        padding: 5px 15px;
    }

    .bottom {
        margin-top: 300px;
    }
}

@media screen and (max-width: 320px) {
    .container .hero-text h1 {
        font-size: 24px;
    }

    .container .hero-text h3 {
        font-size: 12px;
    }

    .container .hero-text p {
        font-size: 12px;
    }

    .container .hero-text a {
        font-size: 11px;
        padding: 4px 10px;
    }

    .bottom {
        margin-top: 250px;
    }
}
