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

/* Colors Are as Below*/
/* 1- #016CF1 2- #071957 3- #F3F9FF */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F3F9FF;
}
/* Header */
header {
    background-color: #ffffff;
    color: white;
    padding: 15px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    
}
.navigation .logo img {
    height: 60px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
a{
    text-decoration: none;
}
.navigation-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation-menu ul{
    list-style-type: none;
    display: flex;
    gap: 30px;
}

.navigation-menu a{
    text-decoration: none;
    color: #071957;
    font-weight: 600;
    font-size: 20px;
}

.navigation-menu a:hover{
    color: #016CF1;
}

.hamburger {
    display: none;
}
/* Default state */
.hamburger i.fa-x {
    display: none;
}

/* Active state */
.hamburger.active i.fa-bars-staggered{
    display: none;
}
.hamburger.active i.fa-x {
    display: inline-block;
}

.btn{
    background-color: #071957;
    color: white;
    padding: 15px 30px;
    border: none;
    text-decoration: none;
    font-weight: 600;
}
.btn:hover{
    background-color: #016CF1;
    cursor: pointer;
}

.btn a{
    color: white;
    text-decoration: none;
}

/* Header */

/*  About Header Section */
.about-header{
    background-image: linear-gradient(#071857e7), url('/img/dentist-bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 100px 0;
    color: white;
    font-size: 38px;
    /* height: 70%; */
}
.about-header p{
    font-size: 24px;
    margin-top: 5px;
}

.about-header h1{
    margin-top:10px ;

}
/*  END About Header Section */

/* About Section */
.about-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding: 40px;
}


.about-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: center;
}

.about-info h2{
    color: #016CF1;
}


.about-img img{
    width: 100%;
    /* padding: 40px; */
}
/* End About Section */


/* Footer Section */
footer{
    background-color: #071957;
    color: white;
    padding: 20px 0;
}

.footer-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-links ul{
    list-style-type: none;
    padding: 0;
}
.footer-links li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.footer-links li a:hover{
    color: #016CF1;
}
.footer-about{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-bottom{
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}
/* Footer Section */

/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {

    /* Hide menu by default on mobile */
    .navigation-menu {
        display: none;
        width: 100%;
        background-color: #ffffff;
    }

    /* Show menu when toggled */
    .navigation-menu.open {
        display: block;
    }

    .navigation-menu ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        cursor: pointer;
        border: none;
        color: #016CF1;
        padding: 15px 15px;
        right: 20px;
        top: 30px;
        z-index: 1001;
        font-size: 24px;
    }


.about-header h1{
    font-size: 48px;    
}

.about-header p{
    font-size: 18px;    
}


.about-container{
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* width: 100%; */
    text-wrap: wrap;
}
.about-info h2,h1{
    font-size: 30px;
    text-wrap: wrap;
}


    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}
