/* Import Poppins font */
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Navigation Styles */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2000;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #1a1a1a;
}

.title h1 {
    font-size: 24px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
}

.navBtns {
    display: flex;
    gap: 50px;
    position: fixed;
    top: 0;
    right: 0;
    padding: 40px;
}

.navBtn {
    font-size: 18px;
    color: #e1e1e1;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.navBtn a {
    text-decoration: none;
    color: inherit;
}

.navBtn:focus,
.navBtn:hover {
    color: #fff;
}

.navBtn:focus:after,
.navBtn:hover:after {
    width: 100%;
    left: 0%;
}

.navBtn:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

#active {
    color: rgb(0, 119, 216);
}

#active:after {
    background-color: rgb(0, 119, 216);
    width: 100%;
    left: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Body Content Styles */
.body {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 120px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    background: #121212;
}

.contactSect {
    width: 65%;
    margin-top: 10%;
    position: relative;
    padding: 30px;
    color: #464646;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contactSect h1 {
    font-size: 50px;
    font-weight: 700;
    color: #0084ff;
    margin-bottom: 20px;
}

.contactSect p {
    text-align: left;
    font-size: 20px;
    color: #464646;
}

.contactLinks {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.contactLinks a {
    display: inline-block;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.contactLinks a:hover {
    transform: scale(1.1);
}

.contactLinks img {
    width: 50px;
    height: 50px;
}

.iconCard {
    position: relative;
    width: 350px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.iconCard img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .body {
        flex-direction: column;
        align-items: center;
        padding: 100px 20px 20px;
    }

    .contactSect {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .contactSect h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .contactSect p {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    .contactLinks {
        justify-content: center;
        gap: 15px;
    }

    .contactLinks img {
        width: 40px;
        height: 40px;
    }

    .iconCard img {
        width: 250px;
        height: 330px;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .navBtns {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background-color: #1a1a1a;
        padding: 100px 20px 20px;
        text-align: center;
        transition: right 0.3s ease;
    }

    .navBtns.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .navBtn {
        margin: 20px 0;
        font-size: 18px;
        font-family: "Poppins", sans-serif;
        font-weight: 800;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
    }

    .overlay.active {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .contactSect h1 {
        font-size: 28px;
    }

    .contactSect p {
        font-size: 14px;
    }

    .contactLinks img {
        width: 35px;
        height: 35px;
    }

    .iconCard {
        width: 200px;
        height: 260px;
    }
}
