body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #bbbbbb;
    color: #333;
}

.section{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1.5s ease-out;
}
.section.visible{
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3, h4 {
    margin: 0;
    font-weight: bold;
}
h2{
    margin-top: 30px;
    color: #1c023d;
    margin-bottom: 40px;
    font-size: 27px;
    text-transform: uppercase;
}

p {
    font-size: 16px;
    color: black;
    margin: 0;
    line-height: 30px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: #fff;
    color: #fff;
    padding: 20px;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
nav{
    align-self: center;
    display: flex;
    justify-content: space-around;
}

.logo {
    color: #1c023d;
    align-content: center;
    font-size: 25px;
    font-weight: bold;
}
.contact{
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #1c023d;
    align-content: center;
    transition: .3s ease;
}
.contact:hover{
    background-color: #3e008f;
}

.nav-links {
    align-content: center;
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    font-size: 17px;
    font-weight: bold;
    color: #1c023d;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #3e008f;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    align-content: center;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #1c023d;
    margin: 4px 0;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url(images/download\ \(53\).jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #1c023d;

    h1{
        margin-top: 30px;
        line-height: 80px;
        margin-bottom: 20px;
        font-size: 90px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }
    p{
        font-size: 13px;
        padding: 0px 30%;
        margin-bottom: 40px;
    }
}

.about{
    padding: 20px;
    margin-bottom: 80px;


    /* paragraph and h2 styles are made in the global style */
}

.choose-us{
    padding: 20px;

    h2{
        text-align: center;
    }
}

.card-wrapper{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

    .cards{
        background-color: rgb(228, 228, 228);
        border-radius: 30px;
        width: 350px;
        padding: 20px;


        h3{
            font-size: 40px;
            color: #1c023d;
            margin-bottom: 20px;
            text-align: center;
        }
        p{
            font-size: 14px;
            padding: 10px;
        }
    }
}



.get-in-touch-with-us{
    margin-top: 50px;
    padding: 20px;
    text-align: center;

    p{
        padding: 10px 25%;
    }

    h3{
        margin-bottom: 30px;
        padding: 10px;
        color: #1c023d;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;


        span{
            padding-left: 20px;
            font-size: 16px;
            color: black;
            line-height: 40px;
            font-weight: normal;
            font-family: Arial, Helvetica, sans-serif;
        }
    }
}



/* footer Styles */
/* NOTE: This has a mobile style */
footer{
    margin-top: 80px;
    background-color: #1c023d;
    color: white;
    padding: 30px;


    /* global style */
    h2{
        color: white;
        margin-top: 0;
        font-size: 40px;
    }

    h3{
        color: white;
        font-size: 25px;
    }
    p{
        text-align: center;
        font-size: 14px;
        color: white;
        font-weight: normal;
    }
    ul{
        list-style: none;
        text-align: left;
        margin-left: 0px;
        padding-left: 0px;

        li{
            line-height: 40px;
            font-size: 14px;
        }
    }
    .fa-brands{
        color: white;
        font-size: 25px;
        padding: 10px;
        transition: .3s ease-in-out;
    }
    .fa-brands:hover{
        color: rgb(207, 207, 207);
    }


    .footer-section{
        margin-bottom: 50px;
        margin-top: 50px;
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }

    /* individual style */
    .logo{
        align-content: start;
        text-align: center;
        line-height: 40px;
    }
}




/* styles for contact page */
.contact-form{
    padding: 20px 100px;
    margin-top: 50px;
    text-align: center;


    .contact-container{
        border-radius: 20px;
        padding: 25px;
        gap: 30px;
        background-color: #1c023d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        min-height: 60vh;
    }

    .map-container{
        min-width: 500px;
        height: 400px;
        background-color: rgb(184, 184, 184);
    }


    form{
        align-content: center;
        

        input{
            border-radius: 50px;
            width: 300px;
            padding: 10px 20px;
            margin-bottom: 15px;
            font-size: 15px;
            outline: none;
            border: none;
        }
        textarea{
            border-radius: 20px;
            padding: 15px 20px;
            width: 300px;
            height: 100px;
            border: none;
            outline: none;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 15px;
            margin-bottom: 30px;
        }
        button {
            padding: 10px 20px;
            background-color: #ffffff;
            color: #1c023d;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: .3s ease;
        }
        button:hover{
            background-color: #3e008f;
        }
    }
}


/* styles for FAQs Page */
.faqs{
    background-color: white;
    padding: 20px;
    text-align: center;

    h2{
        margin-bottom: 30px;
    }
    p{
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 60px;
    }
    details{
        text-align: center;
        padding: 20px;
        


        summary{
            background-color: #1c023d;
            padding: 15px 20px;
            border-top-right-radius: 20px;
            border-top-left-radius: 20px;
            color: white;
            font-size: 15px;
            margin: 0px 25%;
            cursor: pointer;
            list-style: none;

            /* for responsiveness */
            @media (max-width: 770px){
                margin: 0px;
            }
        }

        p{
            font-size: 16px;
            background-color: rgb(228, 228, 228);
            border-bottom-right-radius: 20px;
            border-bottom-left-radius: 20px;
            margin: 0px 25% 5px 25%;
            padding: 20px;
            list-style: none;

            /* for responsiveness */
            @media (max-width: 770px){
                margin: 0px;
            }
        }
    }
}












/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        opacity: 0;
        flex-direction: column;
        width: 30%;
        height: 100vh;
        background-color: #1c023d;
        position: absolute;
        top: 60px;
        left: -500px;
        transition: left .5s ease-in-out, opacity .5s ease-in-out;
    }
    .nav-links li{
        margin-top: 40px;
    }
    .nav-links li a{
        color: white;
    }

    .nav-links.active {
        opacity: 1;
        left: 0px;
    }

    .hero{
        text-align: left;
        padding: 20px;

        h1{
            line-height: 50px;
            font-size: 55px;
        }
        p{
            padding: 0px;
        }


    }

    

        .card-wrapper{

            .cards{
                width: 300px;

            }
        }


    .get-in-touch-with-us{

        p{
            padding: 0px;
        }
        h3{
            font-size: 17px;
            margin-bottom: 10px;
            padding: 0;
            text-align: left;

            span{
                font-size: 14px;
                padding-left:0px;
            }
        }
    }


    /* footer style */
    footer{
        .footer-section{
            flex-direction: column;
            text-align: center;
        }

        ul{
            text-align: center;
        }

        .contact-container{
            margin-top: 30px;
        }
    }



    .contact-form{
        padding: 20px;
        margin-top: 50px;
        text-align: center;
    
    
        .contact-container{
            flex-direction: column;
            justify-content: center;
        }

        .map-container{
            text-align: center;
            min-width: auto;
            height: 300px;
        }

        form{

            input{
                width: auto;
            }

            textarea{
                width: auto;
            }
        }
    }
}