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

* {
    padding: 0px;
    margin: 0px;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: rgb(22, 4, 63);
}

/* Navigation Bar starts */
.navbar {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: lavender; */
    transition: background-color 0.5s ease;
}

.navbar .container-wrapper {
    height: 100%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: aqua; */
}

.navwrapper {
    /* width: 100%; */
    height: 100%;
    /* background-color: antiquewhite; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    padding: 0 20px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.navbar .logo a {
    color: black;
    font-size: 16px;
    text-decoration: none;
    order: 1;
    font-weight: 600;
}

.navbar .container-wrapper .logo img {
    height: 54px;
    width: 54px;
}

.navwrapper ul {
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
    transition: all 0.5s ease;
}

.navwrapper ul li {
    list-style: none;
}

.navwrapper ul li a {
    text-decoration: none;
    color: rgb(22, 4, 63);
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navwrapper ul li a.active {
    text-decoration: underline;
    font-weight: bold;
}

.navwrapper ul li a:hover {
    color: white;
    background-color: rgb(22, 4, 63);
    ;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.navbar .container-wrapper .button-container button {
    padding: 10px 15px;
    background-color: rgb(255, 151, 59);
    color: rgb(255, 255, 255);
    border: none;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar .container-wrapper .button-container button:hover {
    background-color: #e65c00;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.navbar .container-wrapper .button-container button:active {
    background-color: green;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: rgb(22, 4, 63);
}

/* Navigation Bar ends */

/* Navbar Media query starts  */
@media (max-width: 980px) {

    .navwrapper ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0px;
        background-color: rgb(255, 151, 59);
        /* border-radius: 8px; */
        width: 100%;
        /* transform: scale(1.05); */
        /* box-shadow: 0 8px 15px rgb(184, 197, 2); */
        transition: all 0.5s ease;
    }

    .menu-toggle:checked+.hamburger+ul {
        display: flex;
        row-gap: 20px;
        padding: 40px;
        /* transform: scale(1.05); */
        /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); */
        /* transition-duration: 0.7s; */
    }

    .hamburger {
        /* order: 3; */
        display: block;
    }

    .logo {
        order: 2;
    }

    .navwrapper ul li {
        text-align: center;
        padding: 10px 0;
        gap: 30px;
        font-size: 30px;
        /* background-color: beige; */
    }

    .navwrapper ul li a {
        font-size: 16px;
        /* background-color: blueviolet; */
    }

    .button-container {
        order: 3;
    }

    .navbar .container-wrapper .button-container button {
        font-size: 14px;
        padding: 8px 12px;
        /* order: 3; */
    }
}

@media (max-width: 600px) {
    .navwrapper ul li a {
        font-size: 16px;
    }

    .navbar .container-wrapper .button-container button {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 510px) {
    .navwrapper ul li a {
        font-size: 16px;
    }

    .navbar .container-wrapper .button-container button {
        font-size: 10px;
        padding: 8px 6px;
    }

    .navbar .logo a {
        display: none;
    }

}

@media (max-width: 500px) {
    .navbar .container-wrapper .logo img {
        height: 34px;
        width: 34px;
    }
    .navwrapper ul li{
        /* align-items: left; */
        /* justify-content: start; */
        /* background-color: aquamarine; */
        padding: 0;
        position: relative;
        left: 40px;
    }
}

/* Navbar Media query ends  */

/* Heroic banner starts */
#hero {
    height: 450px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: orange;*/
}

#hero .hero-container-wrapper {
    height: 100%;
    width: 98%;
    background-color: blueviolet;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-color: rgb(0, 0, 0, 0.2);
    border-radius: 30px;
    background-blend-mode: overlay;
    color: white;
}

#hero .hero-container-wrapper .hero-content {
    height: 70%;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-left: 140px;
    margin-top: 40px;
    background-color: rgba(151, 149, 149, 0.323);
    border-radius: 8px;
    /* background-color: yellowgreen;*/
    /*filter: blur(2px);*/

}

#hero .hero-container-wrapper .hero-content .button {
    height: 100%;
    width: 100%;
    /*background-color: aqua;*/
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    justify-content: center;
    margin-bottom: 20px;
}

#hero .hero-container-wrapper .hero-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition-duration: 0.7s;
}

#hero .hero-content h3 {
    background-color: rgb(230, 92, 0);
    padding: 5px;
}

#hero .hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: white;
    /*background-color: aqua;*/
}

#hero .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

#hero .btn-primary {
    padding: 10px 20px;
    background-color: rgb(255, 151, 59);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
}

#hero .btn-primary:hover {
    background-color: #e65c00;
}

/* Heroic banner ends */

/*heroic banner Media Query starts */
@media screen and (max-width: 1020px) {
    #hero .hero-container-wrapper .hero-content {
        width: 50%;
        margin-left: 40px;
    }

    #hero .hero-content h1 {
        font-size: 40px;
    }

    #hero .hero-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 530px) {

    #hero .hero-container-wrapper {
        /* background-color: aquamarine; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hero .hero-container-wrapper .hero-content {
        width: 50%;
        margin-left: 20px;
        margin-top: 20px;
        /* background-color: aqua; */
        /* position: relative; */
        /* background-color: chartreuse; */
    }

    #hero .hero-content h1 {
        font-size: 30px
    }

    #hero .hero-content p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    #hero .btn-primary {
        padding: 8px 16px;
        font-size: 16px;
    }
}

/* Heroic banner media query ends */

/* Footer section starts */
.footer {
    background-color: rgb(22, 4, 63);
    color: #fff;
    /* padding: 40px 20px; */
    margin-top: 20px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .footer-container {
    height: 100%;
    width: 80%;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    /* background-color: aqua; */
}

.footer-section {
    width: 23%;
    margin-bottom: 20px;
    /* background-color: bisque; */
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    /* background-color:rgb(255, 151, 59); */
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #ddd;
}

/* Footer section ends */
/* Footer Media query starts*/
@media (max-width: 1200px) {
    .footer-section {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        width: 100%;
    }

    .footer .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
    }
}

/* Footer Media query ends*/