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

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;
}

#header {
    width: 100%;
    height: 100vh;
    background: #000000;
    position: relative;
    padding-top: 60px;
}

.container {
    padding: 10px 10%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Semi-transparent */
    backdrop-filter: blur(15px);
    /* Glassmorphism */
    z-index: 1000;
    /* Increased z-index */
    padding: 15px 10%;
    /* Increased padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    transition: all 0.3s ease;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.logo .logo-highlight {
    color: #ff004f;
}

.logo:hover {
    color: #ababab;
    transform: scale(1.05);
}

.logo:hover .logo-highlight {
    color: #ff004f;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 5px 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav .fa-solid {
    display: none;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hide mobile header on desktop */
.mobile-header-li {
    display: none;
}

.mobile-menu-header {
    display: none;
}

/* Hide the dedicated mobile menu on desktop by default */
#mobile-app-menu {
    display: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
    min-height: calc(100vh - 60px);
    padding: 20px 0;
}

.header-text {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertically center */
    height: 100%;
}

.header-text h1 {
    font-size: 60px;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.header-text h1 span {
    color: #ff004f;
}

.header-text h2 {
    font-size: 35px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 25px;
    line-height: 1.4;
    color: #fff;
}

.header-text h2 .auto-type {
    color: #ff004f;
    font-weight: 600;
}

.btn-connect {
    display: inline-block;
    margin-top: 20px;
    background: #ff004f;
    font-size: 18px;
    padding: 16px 40px;
    transition: all 0.3s;
}

.btn-connect:hover {
    background: transparent;
    border-color: #ff004f;
    transform: scale(1.05);
}

.header-quote {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 500px;
    height: 100%;
}

.quote-box {
    background: linear-gradient(135deg, rgba(255, 0, 79, 0.1), rgba(255, 0, 79, 0.05));
    border: 2px solid #ff004f;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 0, 79, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 420px;
}

.quote-box i {
    color: #ff004f;
    font-size: 35px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.quote-box p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 300;
}

.quote-author {
    color: #ff004f;
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-align: right;
    margin-top: 15px;
}

/* ----------about---------- */
#about {
    padding: 80px 0;
    color: #ababab;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    width: 100%;
    border-radius: 15px;
}

.about-col-2 {
    flex-basis: 60%;

}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}

.tab-titles {
    display: flex;
    margin: 20px 0 40px;
}

.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    width: 50%;
}

.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span {
    color: #b54769;
    font-size: 14px;
}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;
}

/* ----------services---------- */
/* ----------services---------- */
#services {
    padding: 30px 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Slightly wider minimum */
    grid-gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    padding: 40px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 300;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    /* Glass-like feel */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Icon Styling */
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 0, 79, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.service-card i {
    font-size: 30px;
    color: #ff004f;
    transition: color 0.4s ease;
}

.service-card h2 {
    font-size: 26px;
    /* Slightly smaller for better hierarchy */
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
}

.service-card a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-card {
    cursor: pointer;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff004f;
    box-shadow: 0 10px 40px rgba(255, 0, 79, 0.2);
    background: linear-gradient(145deg, #222, #2a2a2a);
}

.service-card:hover .icon-wrapper {
    background: #ff004f;
    box-shadow: 0 0 20px rgba(255, 0, 79, 0.6);
}

.service-card:hover i {
    color: #fff;
}

.service-card:hover a {
    background: transparent;
    border-color: #ff004f;
    color: #ff004f;
}

.service-quote {
    padding: 15px 0;
    margin: 10px 0;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    /* Subtle divider */
    padding-left: 15px;
}

.service-quote p {
    color: #dcdcdc;
    /* Lighter for readability */
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
    /* Removed italic for modern look */
    font-weight: 400;
}

/* ---------portfolio---------- */
#portfolio {
    padding: 50px 0;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 79, 0.2);
    border-color: #ff004f;
}

.achievement-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.1);
}

.achievement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.achievement-card:hover .achievement-overlay {
    opacity: 1;
}

.achievement-overlay i {
    color: #ff004f;
    font-size: 30px;
}

.achievement-content {
    padding: 25px;
}

.achievement-content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.achievement-org {
    color: #ff004f;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achievement-desc {
    color: #ababab;
    /* Keep readable gray */
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.achievement-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff004f, #ff6b6b);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hidden-achievement {
    display: none;
}

/* Responsive design for achievements */
@media only screen and (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .achievement-card {
        margin: 0 10px;
    }

    .achievement-image {
        height: 180px;
    }

    .achievement-content {
        padding: 20px;
    }

    .achievement-content h3 {
        font-size: 18px;
    }
}

.layer {
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), #ff004f);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}

.layer h3 {
    font-weight: 500;
    margin-bottom: 20px;
}

.layer a {
    margin-top: 20px;
    color: #ff004f;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.work:hover img {
    transform: scale(1.1);
}

.work:hover .layer {
    height: 100%;
}

.hidden-work {
    display: none;
}

.btn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
}

.btn:hover {
    background: #ff004f;
}

/* -------contact---------- */
#contact {
    padding: 80px 0;
    color: #ababab;
}

.contact-left {
    flex-basis: 35%;
}

.contact-right {
    flex-basis: 60%;
}

.contact-left p {
    margin-top: 30px;
}

.contact-left p i {
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover {
    color: #ff004f;
    transform: translateY(-5px);
}

.btn.btn2 {
    display: inline-block;
    background: #ff004f;
}

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

form input,
form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    outline: none;
    background: rgba(255, 255, 255, 0.02);
    /* Very subtle background */
    padding: 15px;
    margin: 15px 0;
    color: #fff !important;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

form input::placeholder,
form textarea::placeholder {
    color: #ababab;
    opacity: 0.7;
}

form input:focus,
form textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff004f;
    box-shadow: 0 0 10px rgba(255, 0, 79, 0.2);
    color: #fff !important;
    transform: translateY(-2px);
}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
}

form .btn2:hover {
    background: #ff0040;
    transform: translateY(-2px);
}

#msg {
    color: #61ff61;
    margin-top: 10px;
    display: block;
    font-size: 16px;
    font-weight: 300;
    margin-top: 20px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background: #151515;
    /* Slightly lighter than body */
    font-weight: 300;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.copyright i {
    color: #ff004f;
    margin: 0 5px;
}

/* reCAPTCHA badge positioning */
.grecaptcha-badge {
    visibility: visible;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.grecaptcha-badge:hover {
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #ff004f;
    border-radius: 15px;
    width: 80%;
    max-width: 700px;
    position: relative;
    animation: slideDown 0.4s;
    box-shadow: 0 10px 50px rgba(255, 0, 79, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #ababab;
    float: right;
    font-size: 35px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #ff004f;
}

#modalBody h2 {
    color: #ff004f;
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 0;
}

.modal-desc {
    color: #ababab;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    color: #ababab;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.modal-list li:before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #ff004f;
    font-size: 20px;
}

#modalBody .btn {
    margin-top: 20px;
    display: inline-block;
}

.modal-quote {
    background: #262626;
    border-left: 4px solid #ff004f;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.modal-quote p {
    color: #61ff61;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Certificate Modal Styles */
.certificate-modal {
    max-width: 90%;
    max-height: 90%;
    padding: 20px;
}

.certificate-modal .close {
    position: absolute;
    top: 15px;
    right: 25px;
    z-index: 1001;
}

.certificate-content {
    text-align: center;
}

.certificate-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.certificate-details h2 {
    color: #ff004f;
    font-size: 28px;
    margin-bottom: 15px;
}

.certificate-details p {
    color: #ababab;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.certificate-details .date {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.certificate-details .organization {
    color: #ff004f;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
}

.certificate-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.certificate-actions .btn {
    margin: 0;
}

/* Responsive Design for Header */
@media screen and (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 40px;
        padding-top: 60px;
        justify-content: center;
    }

    .header-text {
        max-width: 100%;
        text-align: center;
    }

    .header-text h1 {
        font-size: 50px;
    }

    .header-text h2 {
        font-size: 30px;
    }

    .header-quote {
        max-width: 100%;
        justify-content: center;
    }

    .quote-box {
        max-width: 500px;
    }
}

@media screen and (max-width: 600px) {

    /* Mobile Navigation */
    nav .fa-solid {
        display: block;
        font-size: 25px;
        cursor: pointer;
    }

    /* Hide the Desktop Menu on Mobile */
    nav ul#sidemenu {
        display: none;
    }

    /* ---- New Dedicated Mobile App Menu ---- */
    #mobile-app-menu {
        display: flex;
        /* Force display on mobile */
        position: fixed;
        top: -120%;
        /* Hidden above */
        left: 0;
        width: 100%;
        height: 100dvh;
        background: #080808;
        z-index: 9999;
        /* Highest priority */
        transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    #mobile-app-menu.active {
        top: 0;
        /* Slide down */
    }

    /* Header Row (Logo + Close) */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: #080808;
        /* Ensure opaque */
    }

    .mobile-logo {
        font-size: 24px;
        color: #fff;
        font-weight: 700;
    }

    .mobile-menu-header .fa-xmark {
        font-size: 28px;
        color: #ff004f;
        cursor: pointer;
        padding: 5px;
    }

    /* Mobile Links List */
    .mobile-links {
        list-style: none;
        padding: 0 25px;
        margin-top: 10px;
        overflow-y: auto;
        /* Scrollable if needed */
    }

    .mobile-links li {
        display: block;
        margin: 0;
    }

    .mobile-links li a {
        display: block;
        font-size: 20px;
        font-weight: 500;
        color: #e0e0e0;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
    }

    .mobile-links li a:active {
        color: #ff004f;
        padding-left: 10px;
    }

    .quote-box {
        margin-top: 30px;
    }

    .quote-box p {
        font-size: 16px;
        line-height: 1.5;
    }

    .btn-connect {
        font-size: 15px;
        padding: 12px 30px;
        margin-top: 20px;
    }

    /* About Section */
    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .about-col-1 img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    /* Services Section */
    .services-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .services-list div {
        padding: 30px 25px;
    }

    .services-list div h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-quote p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Achievement Grid */
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .achievement-card {
        padding: 20px;
    }

    .achievement-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .achievement-desc {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Contact Section */
    .contact-left,
    .contact-right {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .contact-right form input,
    .contact-right form textarea {
        font-size: 16px;
        padding: 15px;
    }

    /* General */
    .sub-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .container {
        padding: 0 15px;
    }

    /* Work Section */
    .work {
        flex-direction: column;
        min-height: auto;
    }

    .work-image {
        flex: none;
        height: 200px;
    }

    .work-content {
        padding: 20px;
    }

    .work-content h3 {
        font-size: 20px;
    }

    /* View More Button */
    .view-more-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Extra Small Mobile Devices */
@media screen and (max-width: 480px) {

    /* Header */
    .header-text h1 {
        font-size: 28px;
    }

    .header-text h2 {
        font-size: 18px;
    }

    .quote-box {
        padding: 20px 15px;
    }

    .quote-box p {
        font-size: 14px;
    }

    /* Navigation */
    nav ul li {
        margin: 5px 5px;
    }

    nav ul li a {
        font-size: 14px;
    }

    /* Services */
    .services-list div {
        padding: 25px 20px;
    }

    .services-list div h2 {
        font-size: 20px;
    }

    .service-quote p {
        font-size: 12px;
    }

    /* General */
    .sub-title {
        font-size: 28px;
    }

    .container {
        padding: 0 10px;
    }

    /* Achievement Cards */
    .achievement-card {
        padding: 15px;
    }

    .achievement-content h3 {
        font-size: 16px;
    }

    /* Contact */
    .contact-right form input,
    .contact-right form textarea {
        font-size: 14px;
        padding: 12px;
    }
}

/* Achievement View More Functionality */
.hidden-achievement {
    display: none;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn {
    background: linear-gradient(45deg, #ff004f, #ff6b6b);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 0, 79, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 79, 0.4);
    background: linear-gradient(45deg, #ff0040, #ff5555);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Animation for showing/hiding achievements */
.achievement-card {
    transition: all 0.5s ease;
}

.achievement-card.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}