body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all .0s ease;
}

header.sticky {
    background: #000000;
    border-bottom: 1px solid #000000;

}

nav {
    background-color: transparent;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}



.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 19px 20px;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    margin: 0px 10px;
    font-family: "Poppins", sans-serif;

}

a.active {
    background: linear-gradient(45deg, #93a3fb 0%, #f557e5 100%);
    color: transparent;
    -webkit-background-clip: text;
}

nav ul li a:hover {
    background: linear-gradient(45deg, #93a3fb 0%, #f557e5 100%);
    color: transparent;
    -webkit-background-clip: text;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        cursor: pointer;
        font-size: 24px;
        transition: transform 0.3s ease-in-out;
        /* Smooth transition */
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000000fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        /* Adding transition for smooth effect */
    }

    nav ul.active {
        max-height: 500px;
        /* Adjust this value based on the content height */
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 2px;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
    }

    /* Animation for the menu icon */
    .menu-icon-symbol {
        display: inline-block;
        transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
    }

    .menu-icon.open .menu-icon-symbol {
        transform: rotate(90deg);
        font-size: 32px;
        /* Increase the size of the cross symbol */
        transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
    }
}

.logo a {
    color: #ffffff;
    text-decoration-line: none;
}

.logo-color {
    color: transparent;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
}

@media (max-width: 768px) {

    /* header */

    .header {
        text-align: left;
        padding: 140px 20px 10px 20px;
        background-image: linear-gradient(to right, #000000, #000000);
        background-size: cover;
        background-position: center;
    }

    .header-content h1 {
        font-size: 40px;
        font-weight: 900;
        margin: 15px 0;
        color: #ffffff;
    }

    .header-content h1 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .header-content p {
        font-weight: 300;
        font-size: 20px;
        margin: 15px 0px;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
    }

    /* logo */
    .logo {
        font-family: "Times New Roman";
        font-size: 200%;
        font-weight: bold;
        margin-left: 0px;
    }

    /* nav Bar */
    a.active {
        background: linear-gradient(45deg, #f5576c 0%, #f093fb 100%);
        border-radius: 50px;
        color: #ffffff;
    }

    nav ul li a:hover {
        background: linear-gradient(45deg, #f5576c 0%, #f093fb 100%);
        border-radius: 50px;
        color: #ffffff;
    }

    nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        font-size: 18.5px;
        padding: 16px 20px;
        transition: background-color 0.3s ease;
        font-family: "Poppins", sans-serif;
    }

    /* footer */
    footer {
        background-color: #000000;
        color: white;
        padding: 40px 0;
        text-align: center;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .social-icons a {
        display: inline-block;
    }

    .social-icons img {
        width: 30px;
        height: auto;
        transition: transform 0.2s;
    }

    .social-icons img:hover {
        transform: scale(1.1);
    }


    .box {
        font-family: "Poppins", sans-serif;
        margin: 80px 20px 20px 20px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-container {
        background-color: #ffffff;
        padding: 0px 20px 20px 20px;
        border-radius: 10px;
        width: 100%;
        border-top: 50px solid #009c03;
    }

    .form-container h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 40px;
    }

    .form-h2 {
        font-family: "Poppins", sans-serif;
        text-align: center;
        margin: 140px 20px 20px 20px;
        color: #ffffff;
        font-size: 21px;
    }

    .form-h2 h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .form-group {
        margin: 20px 0px;
    }

    .form-group label {
        color: #000000;
        font-size: 18px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="url"],
    .form-group input[type="tel"],
    .form-group select {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #939393;
        border-radius: 5px;
        font-size: 15px;
    }

    .form-group select {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #939393;
        border-radius: 5px;
        font-size: 15px;
    }

    .form-group button {
        margin: 25px 0px 25px 0px;
        padding: 14px;
        border: none;
        border-radius: 5px;
        background-color: #007bff;
        color: #fff;
        cursor: pointer;
        font-size: 18px;
        transition: background-color 0.3s ease;
        width: 50%;
    }

    .form-group button:hover {
        background-color: #0056b3;
    }

    .iti {
        width: 100%;
    }

    .iti__flag-container {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }

    #contact-number {
        padding-left: 52px;
    }

    .spinner {
        display: none;
        margin-top: 10px;
        width: 24px;
        height: 24px;
        border: 4px solid rgba(0, 0, 0, 0.1);
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .submit-button-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .submit-button-container button {
        width: 100%;
    }

    .form-group #form-message {
        display: none;
        text-align: center;
        font-size: 18px;
        margin-top: 10px;
        color: #000000;
    }

    /* end */
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* header */

    .header {
        text-align: center;
        padding: 150px 20px 10px 20px;
        background-image: linear-gradient(to right, #000000, #000000);
        background-size: cover;
        background-position: center;
    }

    .header-content h1 {
        font-size: 52px;
        margin: 20px 0;
        color: #ffffff;
    }

    .header-content h1 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .header-content p {
        font-weight: 300;
        font-size: 20px;
        margin: 20px 50px;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
    }

    /* logo */
    .logo {
        font-family: "Times New Roman";
        font-size: 220%;
        font-weight: bold;
        margin-left: 10px;
    }


    .box {
        font-family: "Poppins", sans-serif;
        margin: 80px 30px 20px 30px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-container {
        background-color: #ffffff;
        padding: 0px 30px 20px 30px;
        border-radius: 10px;
        width: 100%;
        border-top: 50px solid #009c03;
    }

    .form-container h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 40px;
    }

    .form-h2 {
        font-family: "Poppins", sans-serif;
        text-align: center;
        margin: 140px 20px 20px 20px;
        color: #ffffff;
        font-size: 28px;
    }

    .form-h2 h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .form-group {
        margin: 20px 0px;
    }

    .form-group label {
        color: #000000;
        font-size: 18px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="url"],
    .form-group input[type="tel"],
    .form-group select {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #939393;
        border-radius: 5px;
        font-size: 15px;
    }

    .form-group select {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #939393;
        border-radius: 5px;
        font-size: 15px;
    }

    .form-group button {
        padding: 14px;
        border: none;
        border-radius: 5px;
        background-color: #007bff;
        color: #fff;
        cursor: pointer;
        font-size: 18px;
        transition: background-color 0.3s ease;
        width: 50%;
    }

    .form-group button:hover {
        background-color: #0056b3;
    }

    .iti {
        width: 100%;
    }

    .iti__flag-container {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }

    #contact-number {
        padding-left: 52px;
    }

    .spinner {
        display: none;
        margin-top: 10px;
        width: 24px;
        height: 24px;
        border: 4px solid rgba(0, 0, 0, 0.1);
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .submit-button-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .submit-button-container button {
        width: 100%;
    }

    .form-group #form-message {
        display: none;
        text-align: center;
        font-size: 18px;
        margin-top: 10px;
        color: #000000;
    }

    /* footer */
    footer {
        background-color: #000000;
        color: white;
        padding: 40px 0;
        text-align: center;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .social-icons a {
        display: inline-block;
    }

    .social-icons img {
        width: 30px;
        height: auto;
        transition: transform 0.2s;
    }

    .social-icons img:hover {
        transform: scale(1.1);
    }


    /* end */
}

@media (min-width: 1025px) {
    /* header */

    .header {
        text-align: center;
        padding: 180px 20px 10px;
        background-image: linear-gradient(to right, #000000, #000000);
        background-size: cover;
        background-position: center;
    }

    .header-content h1 {
        font-size: 55px;
        margin: 20px 0;
        color: #ffffff;
    }

    .header-content h1 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .header-content p {
        font-weight: 300;
        font-size: 20px;
        margin: 20px 130px 50px 130px;
        color: white;
        font-family: "Poppins", sans-serif;
    }

    /* logo */
    .logo {
        font-family: "Times New Roman";
        font-size: 230%;
        font-weight: bold;
        margin-left: 10px;
    }

    /* fotter */

    footer {
        background-color: #000000;
        color: white;
        padding: 40px 0;
        text-align: center;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .social-icons a {
        display: inline-block;
    }

    .social-icons img {
        width: 30px;
        height: auto;
        transition: transform 0.2s;
    }

    .social-icons img:hover {
        transform: scale(1.1);
    }


    /* form */

    .box {
        font-family: "Poppins", sans-serif;
        margin: 80px 35px 20px 35px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-container {
        background-color: #ffffff;
        padding: 0px 35px 20px 35px;
        border-radius: 10px;
        width: 100%;
        border-top: 50px solid #009c03;
    }

    .form-container h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 40px;
    }

    .form-h2 {
        font-family: "Poppins", sans-serif;
        text-align: center;
        margin: 140px 20px 20px 20px;
        color: #ffffff;
        font-size: 30px;
    }

    .form-h2 h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .form-group {
        margin: 20px 0px;
    }

    .form-group label {
        color: #000000;
        font-size: 18px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="url"],
    .form-group input[type="tel"],
    .form-group select {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #939393;
        border-radius: 5px;
        font-size: 15px;
    }

    .form-group select {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #939393;
        border-radius: 5px;
        font-size: 15px;
    }

    .form-group button {
        padding: 14px;
        border: none;
        border-radius: 5px;
        background-color: #007bff;
        color: #fff;
        cursor: pointer;
        font-size: 18px;
        transition: background-color 0.3s ease;
        width: 50%;
    }

    .form-group button:hover {
        background-color: #0056b3;
    }

    .iti {
        width: 100%;
    }

    .iti__flag-container {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }

    #contact-number {
        padding-left: 52px;
    }

    .spinner {
        display: none;
        margin-top: 10px;
        width: 24px;
        height: 24px;
        border: 4px solid rgba(0, 0, 0, 0.1);
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .submit-button-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .submit-button-container button {
        width: 100%;
    }

    .form-group #form-message {
        display: none;
        text-align: center;
        font-size: 18px;
        margin-top: 10px;
        color: #000000;
    }


    /* end */
}

/* Complete */