*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* Index Navigation Style */
.index__navigation{
    position: relative;
    padding: 1.5rem 2rem;
    background: #177788;
}
.index_main_content{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index__navigation_link{
    position: relative;
    display: flex;
    align-items: center;
}
.index__navigation_link ul{
    display: flex;
    gap: 2rem;
    justify-content: start;
}
.index__navigation_link ul li a,
.index__navigation_link ul li{
    list-style:  none;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: .1rem;
}
.index_signin_button{
    background-color: orangered;
    color: #fff;
    font-weight: 500;
    border: 1px solid #fff;
    padding: .5rem 1.5rem;
    outline: none;
    letter-spacing: .1rem;
    border-radius: .1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 998px) {
    .index_main_content{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .index__navigation_link ul{
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .navbar-toggler{
        display: none;
    }
}


.index_content_pages{
    display: flex;
    position: relative;
    width: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 53rem;
}

@media screen and (max-width: 768px){
    .index_content_pages{
        display: flex;
        position: relative;
        width: 90%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 113rem;
    }
}








/* ABOUT PAGE STYLE */
.index_about {
    height: 100vh;
    width: 100%;
    padding: 50px 0;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.index_about h1 {
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    color: #177788;
    font-weight: bold;
}

.about_content {
    max-width: 100%;
    margin: 0 auto;
}

.about_boxes {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: .5rem 2rem;
    width: 100%;
    margin-bottom: 3rem;
    /* flex-wrap: wrap; */
}
.about_box {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    flex-grow: 1;
    transition: all 0.3s ease;
}
.about_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.about_box h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 2px solid #177788;
    padding-bottom: 0.5rem;
}
.about_box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.index_paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    padding: .5rem 2rem;
    text-align: justify;
    margin-top: 2rem;
}
.index_about a{
    padding: .2rem 1rem;
    color: #177788;
    border: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about_boxes {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .index_about h1 {
        font-size: 1.8rem;
    }

    .about_box {
        max-width: 90%;
        padding: 1.5rem;
    }

    .index_paragraph {
        font-size: 1rem;
        padding: 0 15px;
    }
}




/* CONTACTS PAGE STYLE */
.index_contacts{
    position: relative;
    height: 100vh;
}
.index_contacts h1{
    text-transform: capitalize;
    text-align: center;
    
    margin: 2rem 2rem;
    color: #333;
}
.about_content{
    position: relative;
}
.about_boxes{
    display: flex;
    position: relative;
    gap: 3rem;
}
.about_boxes h3{
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    color: #333;
}
.about_box{
    background-color: #f3f3f3;
    position: relative;
    padding: 2rem;
    width: fit-content;
}
.index_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #36aac3, #4caf50, #e5673f);
    font-weight: 600;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}



@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
}




.container-fluid .card{
    position: relative;
    margin-top: 3rem;
}



@media screen and (max-width: 768px){
    .container-fluid .card{
        margin-top: 15rem;
    }
    
}