@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{
	background:#f5f5f5;
	font-family:Arial, Helvetica, sans-serif;
}

#wrapper{
	width:1000px;
	margin:auto;
	background:#ffffff;
}

#header{
	width:1000px;
	height:90px;
	background:#0B7AD1;
}

#logo{
	width:300px;
	height:90px;
	float:left;
}

#logo h1{
	color:#FFD400;
	font-size:42px;
	margin-top:18px;
	margin-left:25px;
	float:left;
}

#logo h4{
	color:white;
	margin-top:34px;
	margin-left:10px;
	font-size:16px;
	float:left;
}

#navigation{
	width:700px;
	height:90px;
	float:right;
}

#navigation ul{
	list-style:none;
	margin-top:35px;
	float:right;
	margin-right:20px;
}

#navigation ul li{
	float:left;
	margin-left:25px;
}

#navigation ul li a{
	text-decoration:none;
	color:white;
	font-size:14px;
	font-weight:bold;
}

#navigation ul li a:hover{
	color:#FFD400;
}

#about_banner{

    width:1000px;
    height:180px;
    background:#0B7AD1;
    text-align:center;
    padding-top:45px;

}

#about_banner h1{

    color:#ffffff;
    font-size:42px;

}

#about_banner p{

    color:#ffffff;
    margin-top:15px;
    font-size:18px;

}

#about_content{

    width:1000px;
    overflow:hidden;
    padding:50px 20px;
    background:#ffffff;

}

#about_left{

    width:300px;
    float:left;

}

#about_center{

    width:320px;
    float:left;
    text-align:center;

}

#about_right{

    width:300px;
    float:right;

}

#about_center img{

    width:250px;
    height:250px;
    border-radius:50%;
    border:8px solid #9ACD32;

}

#about_left h2,
#about_right h2{

    color:#0B7AD1;
    margin-bottom:15px;
    margin-top:20px;

}

#about_left p{

    line-height:28px;
    color:#555555;

}

#about_right ul{

    margin-left:20px;
    line-height:30px;
    color:#555555;

}

#my_services{

    width:1000px;
    background:#f7f7f7;
    overflow:hidden;
    padding:50px 20px;

}

#my_services h2{

    text-align:center;
    color:#0B7AD1;
    margin-bottom:40px;
    font-size:32px;

}

.service{

    width:280px;
    float:left;
    margin-left:25px;
    background:#ffffff;
    padding:20px;
    text-align:center;
    border-top:8px solid #9ACD32;
    border-radius:10px;

}

.service h3{

    color:#0B7AD1;
    margin-bottom:15px;

}

.service p{

    color:#555555;
    line-height:26px;

}

#featured_portfolio{
    width:90%;
    margin:50px auto;
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.featured_project{

    flex:1;
    background:#ffffff;
    border-radius:10px;
    overflow:hidden;
    text-align:center;
    box-shadow:0px 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

.featured_project:hover{
    transform:translateY(-5px);
}

.featured_project img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.featured_project h3{
    color:#1476d4;
    margin:20px 0 10px;
}

.featured_project p{
    color:#666;
    margin-bottom:20px;
}

#footer{

    width:1000px;

    height:250px;

    background:#222;

    clear:both;

}

.footer_box{

    width:300px;

    float:left;

    margin-left:25px;

    margin-top:40px;

}

.footer_box h3{

    color:#FFD400;

    margin-bottom:20px;

}

.footer_box p{

    color:white;

    line-height:28px;

}

.footer_box a{

    color:white;

    text-decoration:none;

}

.footer_box a:hover{

    color:#9ACD32;

}

#copyright{

    width:1000px;

    height:50px;

    background:#111;

    color:white;

    text-align:center;

    line-height:50px;

}