@import url('https://fonts.googleapis.com/css2?family=Bevan:ital@0;1&family=Cormorant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lexend+Zetta:wght@100..900&family=PT+Sans+Narrow:wght@400;700&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=Racing+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bevan:ital@0;1&family=Cormorant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lexend+Zetta:wght@100..900&family=PT+Sans+Narrow:wght@400;700&family=Racing+Sans+One&display=swap');

body {
    padding: 10px 20px 10px 20px;
    /* background-color: #ebebeb; */
    background-color: #081028;
}


#nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* background-color: #ffffff;  */
    background-color: #b736fe;
    border-bottom: 1px solid #eaeaea; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

#nav-container img {
    width: 90px; 
    height: auto;
    border-radius: 50%;
    padding: 10px 20px 10px 20px;
}

.infra {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #081028;
    text-transform: uppercase;
    font-size: 40px;
    text-align: center;
    position: relative;
    right: 130%;
}
#nav-container .fa-bars {
    font-size: 24px;
    color: #333; 
    cursor: pointer;
    transition: color 0.3s;
}

#nav-container .fa-bars:hover {
    color: #0073e6; 
}

.content {
    display: flex;

}

.heading {
    font-family: "Lexend Zetta", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    /* color: #081028;  */
    color: white;
    font-size: 50px; 
    text-transform: uppercase;  
}

.desc {
    color: white;
}

.con-1 {
    width: 50%;
}

.con-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; 
    margin-top: 30px;
}


.con-2 img {

    width: 780px;
    height: 70vh;
    border-radius: 15px; 
    box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.4); 
}

.con-2::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    filter: blur(8px);
    z-index: -1;
    border-radius: 15px;
}

.desc {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.styled-button {
    padding: 12px 24px;
    background-color: #ff4f4f; 
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.styled-button a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
}

.styled-button:hover {
    background-color: #005bb5;
    transform: translateY(-3px); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.styled-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.5);
}

.styled-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* For tablets (up to 768px) */
@media (max-width: 768px) {
    /* Navbar adjustments */
    #nav-container {
        padding: 8px 15px;
    }

    /* Logo resizing */
    #nav-container img {
        width: 80px;
    }

    /* Hamburger icon resizing */
    #nav-container .fa-bars {
        font-size: 22px;
    }

    /* Heading font size adjustment */
    .heading {
        font-size: 40px;
    }

    /* Content section adjustment */
    .content {
        display: inline; /* Stack content vertically */
    }

    /* Image resizing */
    .con-2 img {
        width: 90%;
        height: auto;
    }

    /* Button size adjustment */
    .styled-button {
        padding: 10px 20px;
        font-size: 14px;
        display: flex;
        justify-content: center;
    }

    .infra {
        position: relative;
        right: 0;
        font-size: 20px;
    }

    .desc {
        
        width: 490px;
    }

    .bu {
        display: flex;
        justify-content: center;
    }
    
}

/* For mobile devices (up to 480px) */
@media (max-width: 480px) {
    /* Navbar adjustments */
    #nav-container {
        padding: 6px 10px;
        flex-direction: column; /* Stack elements in navbar vertically */
    }

    /* Logo resizing */
    #nav-container img {
        width: 70px;
    }

    /* Hamburger icon resizing */
    #nav-container .fa-bars {
        font-size: 20px;
    }

    /* Heading font size adjustment */
    .heading {
        font-size: 32px;
        text-align: center; /* Center heading text on mobile */
    }

    .desc {
        
        width: 490px;
    }

    /* Content section adjustment */
    .content {
        display: inline; /* Stack content vertically */
    }

    /* Image resizing */
    .con-2 img {
        width: 100%;
        height: auto;
        border-radius: 10px; /* Slightly smaller border radius for mobile */
        box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
    }

    /* Button adjustments */
    .styled-button {
        padding: 8px 16px;
        font-size: 14px;
        width: 100%; 
        text-align: center;
        display: flex;
        justify-content: center;

    }

    .infra {
        position: relative;
        right: 0;
        font-size: 20px;
    }

    .bu {
        display: flex;
        justify-content: center;
    }
}




