* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to left, #3d7dff, white);
    padding: 10px 0px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000;
    background-color: #fff;
}

h1 {
    color: #3177FF;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Gradient effect  #58a6ff */
    color: white;
    width: 75%;
}

.navbar .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 0;
}

.navbar .logo img {
    width: 50%;
}

.navbar .logo h1 {
    color: #3177FF;
    text-wrap: nowrap;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.navbar .nav-links a:hover {
    text-decoration: underline;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 100px;

    background: linear-gradient(to left, #3d7dff, white);
    /* Gradient effect  #58a6ff */
    color: black;
}

.hero-section .hero-content {
    max-width: 100%;
    margin-left: 12%;
}

.hero-section .hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
}

.hero-section .hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-section .hero-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #3177FF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-section .hero-btn:hover {
    background-color: #58a6ff;
    color: white;
}

.hero-section .hero-image img {
    max-width: 100%;
    height: auto;
    padding-left: 20%;
}

#making-of {
    padding: 50px 100px;
    background-color: #fff;
}

.phase-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    margin: auto;
    width: 60%;
}

.phase-content {
    flex-basis: 50%;
}

.phase-image {
    flex-basis: 50%;
    text-align: center;
}

.phase-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #3177FF;
    width: 80%;
    margin-top: 20%;
}

.phase-reverse {
    flex-direction: row-reverse;
}

.phase-content h2 {
    color: #3177FF;
    margin-bottom: 20px;
}

.phase-content p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #000;
}

.phase-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.phase-content li {
    margin-bottom: 10px;
    color: #343A48;
}

.showcase-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3177FF;
    color: white;
    padding: 50px 100px;
}

.showcase-content {
    flex-basis: 40%;
    padding-right: 20px;
    margin-left: 20%;
}

.showcase-content h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.showcase-content p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.showcase-video {
    flex-basis: 60%;
    text-align: right;
    margin-right: 15%;
}

.video-responsive {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 100px;
    background-color: #fff;
    color: #000;
    margin: auto;
}

.about-image {
    flex-basis: 40%;
    text-align: left;
}

.about-image .about-portrait {
    width: 100%;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    margin-left: 60%;
}

.about-content {
    flex-basis: 60%;
    max-width: 40%;
    margin-right: 10%;
}

.about-content h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.about-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 1em;
}

.contact-section {
    background-color: #3177FF;
    color: white;
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    margin-left: 30px;
}

.contact-details {
    text-align: center;
}

.contact-details h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.contact-details p,
.contact-details a {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 1em;
    color: white;
}

.contact-details a:hover {
    text-decoration: underline;
}

.qr-code img {
    width: 10%;
    height: auto;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form form input,
.contact-form form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form form button {
    padding: 10px;
    background-color: #3177FF;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form form button:hover {
    background-color: #58a6ff;
}



/* Responsive design adjustments */
@media (max-width: 768px) {
    .navbar {
        width: 90%;
        align-items: stretch;
    }

    .navbar .logo img {
        width: 25%;
    }

    .nav-links {
        display: flex;
        align-items: center;
        justify-content: right;
        gap: 0px 20px;
        text-wrap: nowrap;
        flex-wrap: wrap;
    }

    section {
        display: flex;
        flex-direction: column;
        padding: 50px 32px !important;
    }

    .hero-section {
        text-align: center;
    }

    .hero-section .hero-content,
    .hero-section .hero-image {
        max-width: 100%;
    }

    .hero-section .hero-content {
        margin-left: 0px;
    }

    .hero-section .hero-image img {
        margin-top: 20px;
        padding-left: 0%;
    }

    #making-of {
        gap: 50px;
        display: flex;
        flex-direction: column;
        padding: 50px 32px;
    }

    .phase-section {
        flex-direction: column;
        width: 100%;
        gap: 32px;
    }

    .phase-reverse {
        flex-direction: column;
    }

    .phase-content,
    .phase-image {
        flex-basis: 100%;
    }

    .phase-image img {
        max-width: 100%;
        margin-top: 0px;
    }

    #video-showcase {
        flex-direction: column;
    }

    .showcase-section {
        padding: 50px 32px;
    }

    .showcase-content {
        margin-left: 0px;
        padding-right: 0px;
    }

    .showcase-video {
        margin-right: 0px;
    }

    .video-content,
    .video-container {
        flex-basis: 100%;
    }

    .video-container {
        margin-top: 20px;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        flex-basis: 100%;
        text-align: center;
    }

    .about-image .about-portrait {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content {
        flex-basis: 100%;
        padding-left: 0;
        max-width: unset;
        margin-right: unset;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        flex-basis: 100%;
        text-align: center;
    }

    .contact-form form {
        width: 100%;
    }

    .qr-code img {
        max-width: 75%;
        width: unset;
    }
}