body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #30465c;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    flex-wrap: wrap;
    height: 15vh;
    margin-bottom: 0px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: rgb(255, 255, 255);
    margin: 4px 0;
}



/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (min-width: 769px) {
    nav ul {
        display: flex !important;
    }
}






#mid-section {
    text-align: center;
    margin: 0;
    background-color: #f4f4f4;
}

.hero {
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 40vh;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    margin: 10px;
    max-width: 300px;
    text-align: center;
}

.feature img {
    height: 100px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: none;
        width: 80%;
    }
}

@media (min-width: 769px) {
    nav ul {
        display: flex !important;
    }
}














.sooo{
    background-color: #30465c;
}








.container {
            display: flex;
            flex-direction: row;
            padding: 20px;
            background-color: #f9f9f9;
        }
        .left-section {
            flex: 1;
            padding-right: 20px;
        }
        .right-section {
            flex: 1;
            position: relative;
        }
        .right-section img {
            width: 100%;
            height: 30vh;
        }
        .content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .content h1 {
            font-size: 24px;
            color: #333;
        }
        .content p {
            font-size: 16px;
            color: #666;
        }
        .content a {
            color: #007bff;
            text-decoration: none;
        }
        .logos {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .logos img {
            height: 60px;
        }





















































        .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 30%;
            margin-bottom: 20px;
            text-align: center;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card img {
            width: 100%;
            height: auto;
            position: relative;
        }
        .card-header {
            position: relative;
        }
        .card-header img {
            filter: brightness(70%);
        }
        .card-header .title {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 20px;
            font-weight: bold;
        }
        .card-body {
            padding: 20px;
            text-align: left;
        }
        .card-body ul {
            list-style: none;
            padding: 0;
        }
        .card-body ul li {
            margin-bottom: 10px;
        }
        .card-footer {
            padding: 10px;
            background-color: #f1f1f1;
            text-align: center;
        }
        .card-footer a {
            text-decoration: none;
            color: #28a745;
            font-weight: bold;
        }



        .icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            margin-top: -30px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .card {
                width: 45%;
            }
        }
        @media (max-width: 576px) {
            .card {
                width: 100%;
            }
        }
































    .footer {
        background-color: #000472;
        padding: 40px 20px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        border-top: 1px solid #ddd;
    }
    .footer-column {
        margin: 10px;
        flex: 1;
        min-width: 200px;
    }
    .footer-column h3 {
        font-size: 16px;
        color: #00f7ff;
        margin-bottom: 20px;
    }
    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-column ul li {
        margin-bottom: 10px;
    }
    .footer-column ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 14px;
    }
    .footer-column ul li a:hover {
        color: #ffffff;
    }
    .footer-column p {
        font-size: 14px;
        color: #ffffff;
        line-height: 1.5;
    }
    .footer-column a {
        text-decoration: none;
        color: #ffffff;
        font-size: 14px;
    }
    .footer-column a:hover {
        color: #ffffff;
    }
    @media (max-width: 768px) {
        .footer {
            flex-direction: column;
            align-items: center;
        }
        .footer-column {
            min-width: 100%;
            text-align: center;
        }
    }



































    .image_bar{
        border: black 1px solid;
        width: 100%;
        height: 40vh;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: #d9d9d9;
    }

    .image1{
        border: black 1px solid;
        width: 20%;
        height: 38vh;
        border-radius: 10px;
        background-image: url(pic1.jpeg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .image2{
        border: black 1px solid;
        width: 20%;
        height: 38vh;
        border-radius: 10px;
        background-image: url(pic2.jpeg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .image3{
        border: black 1px solid;
        width: 20%;
        height: 38vh;
        border-radius: 10px;
        background-image: url(pic3.jpeg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .image4{
        border: black 1px solid;
        width: 20%;
        height: 38vh;
        border-radius: 10px;
        background-image: url(pic4.jpeg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

@media (max-width : 768px) {
    .image_bar{
        display: none;
    }
}




.endtag{
    width: 100%;
    height: 5vh;
    background-color: rgb(0, 24, 203);
    color: #fff;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}







.sooo{
    position: relative;
}













@media (min-width
: 768px){
    .right-section{
        display: none;
    }

    .left-section{
        width: 100%;
    }
}