@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    color: white;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
}

.background_img {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    z-index: -10;
    mix-blend-mode: multiply;
}

.navbar {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 60px;
    width: 98.6%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0 20px;
    margin: 10px;
    border-radius: 15px;
    top: 0;
    position: fixed;
    z-index: 6;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.navbar .logo {
    display: flex;
    align-items: center;
    max-height: 70px;
}

.navbar .logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar .bigtext {
    font-weight: 600;
    font-size: 14px;
}

.navbar .smalltext {
    font-size: 10px;
    font-weight: 300;
}

.navbar .menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    margin: 0 10px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.navbar a:hover {
    scale: 1.1;
}

.navbar a i {
    margin-right: 5px;
}
.logotext .bigtext{
    color:#ffcc00;
}
.navbar .menuicon {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

/* Body Block */
.bodyblock1 {
    min-height: 90vh;
    margin: 100px auto 20px auto;
    padding: 0px;
    width: 80%;
}

.full-footer {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px 40px 40px 40px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    flex-wrap: wrap;
    text-align: start;
    margin: 10px;
    backdrop-filter: blur(10px);
}

.footer .firstsection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 300px;
    margin: auto 20px;
}

.footer .bigtext {
    font-size: 27px;
    font-weight: 600;
    color: #b1adad;
}

.footer .smalltext {
    font-size: 10px;
    font-weight: 400;
    max-width: 200px;
    color: #cccccc;
}

.footer a {
    text-decoration: none;
    color: #A7FFEB;
    font-size: 13px;
    font-weight: 500;
}

.footer i {
    margin: 0 4px;
}

.footer ul {
    padding-left: 0;
    margin: 8px 0;
}

.footer .thirdsection h5 {
    margin: 20px 0 5px 0px;
    color: #F5F5F5;
}

.footer .thirdsection .contactdetails {
    font-size: 12px;
    margin-left: 10px;
    color: #cccccc;
    text-decoration: underline;
    cursor:pointer;
}

.footer .fifthsection {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .fifthsection .clgname {
    margin: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #F5F5F5;
}

.footer .fifthsection .clgaddress {
    font-size: 11px;
    color: #cccccc;
}

.finalfooter {
    padding: 10px;
    margin: 10px;
    font-size: 12px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    color: #F5F5F5;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    height: auto;
}

.finalfooter p {
    margin: 0;
    text-align: center;
    width: 100%;
}
@media (max-width: 1000px) {
    .navbar {
        width: 95%;
    }

    .navbar .menu {
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px 15px;
        border-radius: 10px;
        backdrop-filter: blur(20px);
        display: none;
        z-index: 5;
    }

    .navbar .menu a {
        margin: 5px 0;
    }

    .navbar .menuicon {
        display: block;
    }

    .navbar .menu.active {
        display: flex;
    }

    .bodyblock1{
        width: 90%;
    }
}
@media (max-width: 450px) {

    .navbar{
        width: 95vw;
        padding: 0 10px;
    }

    .bodyblock1{
        width: 100%;
    }
    .navbar {
        padding: 0 12px;
    }

    .navbar .bigtext {
        font-size: 13px;
    }

    .navbar .smalltext {
        font-size: 8px;
    }

    .navbar .logo img {
        max-height: 60px;
    }

    .navbar .menuicon {
        font-size: 18px;
    }

    .navbar .menu a {
        font-size: 12px;
        margin: 3px 0;
    }

   .menuicon{
    margin-right: 10px;
   }

   .footer{
    display: block;
   }

   .footer h3{
    font-size: 16px;
    font-weight: 300;
   }

   .footer ul{
    font-size: 12px;
    
    margin: 8px 0;

   }

   .footer a{
    color:rgba(255, 255, 255, 0.7);
    font-weight: 200;
   }

   .contactus h5{
    margin: 5px 0px;
    margin-left: 0px;
    padding: 0;
    font-weight: 200;
   }

   .contactdetails{
    margin-left: 0;
    font-weight: 200;
    text-decoration: underline;
   }

   .getintouch{
    margin: 30px 0;
   }

   .footer .contactus, .fourthsection, .text{
    margin: 50px 0;
   }
}
