/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');


:root {
    --black-text-color: #252525;
    --white-text-color: #fcfcfc;
    --blue-bg: #5e9af3;
}


body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    /* background-color: #f2f2f2; */
    /* font-family: Arial, sans-serif; */
}

.container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

h1 {
    color: #ffffff;
    font-size: 32px;
    margin-top: 30px;
    /* margin-bottom: 20px; */
    line-height: 2;
}

p {
    color: #464646;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}
.img-docs{
    width: 100%;
    height: 350px;
    /* height: 400px; */
}
img {
    width: 100%;
    object-fit: contain;
    height: 100%;
    border-radius: 5px;
}
.in-out-one{
    display: flex;
    gap:20px;
    width: 100%;
}
.in{
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: 20px;
}
.out{
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: 20px;
}
.features {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

.left-f, .right-f {
    /* flex: 1; */
    width: 50%;
    padding: 10px;
    background-color: #fdfdfd;
    border-radius: 5px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
}
li{
    color: #464646;
}
.right-f h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.right-f ul {
    /* list-style-type: none; */
    margin-left: 0;
    padding-left: 0;
}
.heading-para{
    font-size: 18px;
    color: #252525;
}
.tech-header{
    width: 100%;
    
}
.tech-header{
    /* border-radius: 20px; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 35px;
    font-weight: 600;
    height: 30vh;
    color: #ffffff;
    padding: 0px 0px;
    background-image: linear-gradient(90deg, rgba(48, 48, 48, 0.85) 0%, rgba(41, 41, 41, 0.53) 39.86%, #205da9 100%), url('../img/hero-bg-2.jpeg');
    background-size: cover;
    background-position: 20% 50%;
}

.tech-header::before {
    /* border-radius: 20px; */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    /* background: linear-gradient(91deg, rgba(41, 41, 41, 0.31) 0%, #216BFA 100%); */
    background: linear-gradient(90deg, rgba(48, 48, 48, 0.85) 0%, rgba(41, 41, 41, 0.53) 39.86%, #205da9 100%);
    z-index: -1;
}

/* Add more specific styles as needed */

/* Add responsive styles for smaller screens */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 15px 10px;
        margin-top: 00px;
        margin-bottom: 00px;
    }

    h1 {
        font-size: 20px;
        padding: 10px;
        line-height: 1.5;
        /* background-color: #ececec; */
    }

    p {
        font-size: 14px;
        text-align: justify;
    }

    .features {
        flex-direction: column;
    }

    .left-f, .right-f {
        margin-bottom: 20px;
        width: 100%;
    }
    li{
        padding-left: 10px;
    }

    /* Adjust other styles as needed for smaller screens */
}
