*{
    margin:0;
    padding:0;
    font-family: 'Poppins', sans-serif;

}
.header{
    min-height:100vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/cdglocimg.jpg);
    background-position:center;
    background-size: cover;
    position: relative;
    display:block;

}
nav{
    display: flex;
    padding:2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 175px;
}

.nav-links{
    flex:1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.nav-links ul li::after{
    content: '';
    width:0%;
    height:2px;
    background: #00e5ff;
    display: block;
    margin: auto;
    transition:0.5s;
}
.nav-links ul li:hover::after{
    width:100%;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: white;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 18px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #00e5ff;
    background: #00e5ff;
    transition: 1s;
}
nav .fa-solid{
    display: none;
}
@media(max-width:700px){
    .text-box h1{
        font-size: 24px;
    }
    .text-box p{
        font-size: 16px;
    }
    .nav-links ul li{
       display: block;

    }
    .nav-links{
        position: fixed;
        background: #025278;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa-solid{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;

    }
}
/*-- Brief Treatment --*/
.treatment{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight:600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;

}
.treatment-col p{
     color: #ffffff;
 }
.treatment-col1 p{
    color: #ffffff;
    font-size:20px;
}
.treatment-col h3{
    color: #ffffff;
}
.treatment-col1 h3{
    color: #ffffff;
    font-size:30px;
}
.treatment-col{
    flex-basis: 24%;
    background: #025278;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.treatment-col1{
    flex-basis: 100%;
    background: #025278;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin:10px 0;
}
.treatment-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
/*-- Brief About Us (key members) --*/
.about-us{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    display: flex; /* Add flex display */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
}

.about-col{
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Layout children in a row */
    justify-content: center; /* Center children horizontally */
    align-items: center; /* Center children vertically */
    flex-basis: auto; /* Adjust basis as needed, or remove if not necessary */
    width: 100%; /* Use full width of the container */
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    gap: 20px; /* Add some space between the image and the paragraph */
}

.about-col img{
    border-radius: 10px;
    height: 30vh; /* Adjust height as needed */
    /* Remove display:flex; */
    /* Remove margin-right:5%; */
    /* Remove align-content: right; */
    margin-right:10px;
    align-items: right;
}

.about-col p{
    padding: 0;
    font-size:18px;
}

.about-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
.about-team{
    flex-basis:98%;
}
.about-team h3{
    text-align:center;
}
.about-team img{
    height:300px;
    width:100%;
}
/*-- Brief Contact Us --*/
.contact-us{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/bannerContact.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}
.contact-us h1{
    color: white;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 700px){
    .contact-us h1{
        font-size: 24px;
    }
}

/*-- Footer --*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin: auto;


}

.icons .fa{
    color: #000000;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.footer-col{
    flex-basis: 18%;
    border-radius: 10px;
    margin-bottom: 2%;
    text-align: left;
}
.footer-col h4{
    color: #000000;
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}
.footer-col h4 a{
    color: #000000;
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
    text-decoration: none;
}
.copyright {
    margin-top: 20px; /* Adjust as needed */
    text-align: center;
    text-decoration:none;
    color:#555;
    font-weight:200;
    font-size: 12px;
    margin-bottom: 15px;
}
@media(max-width:1000px){
    .footer-col{
        flex-basis:22%;
    }
}
/*-- About us page --*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/cdgbackground.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}
.sub-header h1{
    margin-top: 100px;
}
.aboutpage{
    width: 80%;
    margin: auto;
    padding-top:80px;
    padding-bottom: 50px;
}
.aboutpage-col{
    flex-basis:48%;
    padding: 30px 2px;
}
.aboutpage-col img{
    width: 100%;
}
.aboutpage-col h1{
    padding-top: 0;
}
.aboutpage-col p{
    padding: 15px 0 25px;
}
.blue-btn{
    border: 1px solid #00e5ff;
    background: transparent;
    color:#00e5ff;
}
.blue-btn:hover{
    color:white;
}
/*-- Treatments Page --*/
.treatmentspage{
    width: 80%;
    margin: auto;
    padding-top:80px;
    padding-bottom: 50px
}
.treatmentpage-col{
    width:80%;
    flex-basis: 31%;
    margin:10px;
    border-radius: 10px;
    border-style:none;
    border-width:2px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    text-align:center;
}
.treatmentpage-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 229, 255,0.4);

}
/*-- Contact Us page --*/
.locationpage{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.locationpage iframe{
    width: 100%;
}
.contactpage{
    width:80%;
    margin: auto;
}
.contactpage-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contactpage-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contactpage-col div .fa{
    font-size: 28px;
    color:#00e5ff;
    margin: 10px;
    margin-right: 10ddddpx;
}
.contactpage-col div p{
    padding: 0;
    flex-wrap: wrap;
    box-sizing:border-box;
    font-size:18px;
}
.contactpage-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    margin-right:20px;
    color: #555;
    flex-wrap: wrap;
    font-weight: 400;
    box-sizing:border-box;
}
.contactpage-col input, .contactpage-col textarea{
    width:100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
@media(max-width: 500px){
    .contactpage{
        width:100%;
        margin-left:5px;
        margin-right:5px;
    }
    .contagpage-col div span h5{
        font-size: 1%;
    }
    .contagpage-col div .fa{
        font-size: 20px;
        margin-right:5px;
    }
}
