body{
    
    font-family: 'Baloo Bhai', cursive;
        color: white;
        margin: 0px;
        padding: 0px;
    }
    .banner {
        width: 100%;
        height: 100vh;
        background-image: linear-gradient(rgba(0,0,0,0.40),rgba(0,0,0,0.40));
        background-position: center;
        background-size: center;
    }
    .left {
        display: inline-block;
        /* border: 2px solid red; */
        position: absolute;
        left: 70px;
        top: 20px;
    }

    .left img {
        width: 100px;
        /* filter: invert(100%); */
        border-radius: 50%;
        padding-left: 25px;
    }

    .left div {
        line-height: 19px;
        font-size: 26px;
        text-align: center;
        left: 70;
        
    }
    .mid {
        display: block;
        width: 50%;
        margin: 29px auto;
        /* border: 2px solid green; */
    }
    
    .navbar {
        display: inline-block;
    }

    .navbar li {
        display: inline-block;
        font-size: 20px;
    }

    .navbar li a {
        color: white;
        text-decoration: none;
        padding: 34px 23px;

    }


    .navbar li a:hover,
    .navbar li a.active {
        text-decoration: underline;
        color: rgb(87, 85, 85);

    }
    .right {
        position: absolute;
        right: 34px;
        top: 30px;
        display: inline-block;

        
        
    }

    .nt {
        width: 200px;
        padding: 5px;
        margin: 20px 5px;
        text-align: center;
        border-radius: 25px;
        color: black;
        border: 2px;
        font-size: 20px;
        cursor: pointer;
        font-weight: 600;
    }

    .nt:hover {
        background: rgb(28, 28, 28);
        transition: 0.5s;
    }

    .content{
        width: 100%;
        position: absolute;
        color: white;
        top: 45%;
        transform: translateY(-50%);
        text-align: center;
    }
    .content h1{
        margin-top: 80px;
        font-size: 90px;
        font-weight: 800;
    }
    
      
    button{
        width: 200px;
        padding: 15px;
        margin: 20px 5px;
        text-align: center;
        border-radius: 25px;
        color: black;
        border: 2px;
        font-size: 20px;
        cursor: pointer;
        font-weight: 600;
    }
    button:hover{
        background: rgb(0, 192, 226);
        transition: 0.5s;
    }
    button:hover{
        color: white;
    }
    #myBtn {
        width: 200px;
        padding: 15px;
        margin: 20px 5px;
        text-align: center;
        border-radius: 25px;
        color: black;
        border: 2px;
        font-size: 20px;
        cursor: pointer;
        font-weight: 600;
      }
      
      #myBtn:hover {
        background:rgb(0, 192, 226);
        
      }
      
    
    .banner video {
        position:absolute;
        right:0;
        bottom:0;
        z-index: -1;
    }
    
    @media(min-aspect-ratio:16/9) {
        .banner video{
            width:100%;
            height:auto;
        }
    }

    /*about us section*/
    .about-us {
        background-color: #f4f4f9;
        padding: 60px 0;
        text-align: center;
    }
    
    .about-us h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #1137bf;
    }
    
    .about-us p {
        font-size: 25px;
        max-width: 800px;
        margin: 0 auto 40px;
        color: #333;
        line-height: 1.6;
    }
    
    .team {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 60px;
    }
    
    .team-member {
        background-color: #fff;
        padding: 20px;
        width: 250px;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .team-member img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .team-member h3 {
        margin-top: 15px;
        font-size: 22px;
        color: #333;
    }
    
    .team-member p {
        color: #666;
        margin-top: 10px;
        font-size: 16px;
    }
    
    .team-member:last-child {
        margin-right: 0;
    }
    
    /* Responsive design for smaller screens */
    @media (max-width: 768px) {
        .team {
            flex-direction: column;
            align-items: center;
        }
    
        .team-member {
            width: 80%;
            margin-bottom: 20px;
        }
    }
    