@import url('https://fonts.googleapis.com/css2?family=Anton&family=Catamaran:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --green: #5FC977;
    --primary: #fff;
    --secondary: #091C45;
    --text-primary: #3e3e3e;
    --text-secondary: #dfdfdf;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Catamaran;
}
.header{
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    color: var(--secondary);
    margin-top: 7%;
}
.cyber{
    margin-top: 7%;
}

.modules {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--secondary);
}

.part-1 {
    background-color: var(--text-secondary);
}

.heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
    margin-top: 5%;
}

.heading-1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.text-content {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.box {
    width: 100%;
    padding: 1.2rem;
    padding-left: 15%;
    padding-right: 15%;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.7);
}

.boo{
    margin-bottom: 0.1px;
    padding: 0.5px
}

.box .img{
    width: 400px;
    height: auto;
}
.img-4{
    width: 27vw;
    height: auto;
}
.img-2{
    width: 30vw;
    height: auto;
    margin-top: 2%;
}
.img-3{
    width: 27vw;
    height: auto;
    margin-left: 0%;
}
.sub-heading {
    font-size: 18px ;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.sub-content {
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary);
    margin-left: 40px;
}

.sub-content span {
    font-weight: 700;
}
@media only screen and (max-width: 768px) {
    .modules.part-1 {
        display: flex;
        flex-direction: column;
        gap: 20px; 
    }

    .box-1 {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        margin-bottom: 20px; /* Adds space between cards */
    }

    .logo-in {
        text-align: center;
        margin-bottom: 10px;
        margin-left: 9px;
    }
    .box {
        text-align: center;
        margin-bottom: 10px;
        margin-left: 0px;
    }

    .box-1 .context {
        text-align: center;
        align-items: center;
    }

    .box .heading-1 {
        font-size: 1.2em; 
        margin-bottom: 10px;
    }

    .box .text-content {
        font-size: 1em; /* Adjust font size for mobile */
        margin-bottom: 10px;
    }

    .box .sub-heading {
        font-size: 1.1em; /* Adjust font size for mobile */
        margin-bottom: 10px;
    }

    .box .sub-content {
        font-size: 1em; /* Adjust font size for mobile */
        margin-bottom: 5px;
    }

    .box .sub-content li {
        list-style-position: inside;
        text-align: left;
    }

    .box .img {
        text-align: center;
        margin-top: 15px;
    }

    .box .img img, .img-4,.img-2 {
        width: 100%;
        height: auto;
        margin-left:18px;
    }
}


/* start of talk */


/* Form container styling */
form{
    padding-bottom: 10px;
}
.formBox {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Row styling */
.row50 {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.row100 {
    margin-bottom: 20px;
}

/* Input box styling */
.inputBox {
    position: relative;
    width: 100%;
}

.C_field span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--secondary);
}

.C_item {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

/* Error text styling */
.error-txt {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none; /* Initially hidden */
}

/* Button styling */
.button {
    padding: 7px 20px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3; /* Adjust color on hover */
}

/* end  of talk */

/* end  of talk */
