@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sono:wght@200;300;500;600;700;800&family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Poppins, sans-serif;
    line-height: 1.7;
    color: #516171;
}

h1, h2, h3, h4, h5 {
    font-weight: 700 !important;
    color:#092032;
}

a {
    color: #092032;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 400;
}

img {
    width: 100%;
}

.text-primary {
    color: #006bcc;
    font-weight: 500;
}

/* Navbar */
.top-nav {
    background-color: #cc5c00;
    padding: 15px;
    font-size: 14px;
} 

.top-nav a {
    color: #ffffff;
    margin-right: 0px;
}

.top-nav .contact-info a {
    margin-right: 30px;
}

.top-nav p {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
    color: #ffffff;
}

.top-nav i,
.top-nav span {
    vertical-align: middle;
}

.top-nav .contact-info i,
.top-nav .contact-info span {
    margin-right: 5px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.social-links a:hover {
    color: #cc5c00;
    background-color: #ffffff;
    border-radius: 100%;
}

.navbar {
    padding: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.logo {
    width: 150px;
}

.navbar .nav-link {
    font-size: 14px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:active {
    color:#cc5c00;
    
}

/* Button */
.btn {
    padding: 14px;
    font-weight: 400;
    font-size: 14px;
}

.btn-brand {
    background-color: #cc5c00;
    color: #ffffff;
    border: #cc5c00;
    border-radius: 5px;
}

.btn-brand:hover {
    color: #ffffff;
    background-color: #d63e20;
}

/* Hero */
.hero {
    background-image: url('../img/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
}

.hero::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

/* Section */
section {
    padding-top: 150px;
    padding-bottom: 150px;
}

/* Card Effect */
.card-effect {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 25px;
    transition: all 0.35s ease;
}

.card-effect:hover {
    box-shadow: none;
    transform: translateY(5px);
}

/* Icon Box */
.iconbox {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cc5c00;
    color: #ffffff;
    font-size: 32px;
    border-radius: 100%;
    flex: none;
}

.col-img {
    background-image: url('../img/cover2.jpg');
    background-position: center;
    background-size: cover;
    min-height: 500px;
}

/* Service */
.service {
    position:relative;
    z-index: 2;
    overflow: hidden;
}

.service::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100;
    left: 0;
    background-color: #cc5c00;
    z-index: -1;
    opacity: 0;
}

.service:hover .iconbox {
    background-color: #ffffff;
    color: #cc5c00;
}

.service:hover h5,
.service:hover p {
    color: #ffffff;
}

.service:hover::after {
    opacity: 1;
    top:0;
}

/* Team */
#team {
    padding-top: 250px;
    padding-bottom: 250px;
}

/* Team Member */
.team-member img {
    width: 125px;
    height: 125px;
    border-radius: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    width: 34px;
    height: 34px;
    background-color: #cc5c00;
    border-radius: 2px solid #cc5c00;
    color: #ffffff;   
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px; 
    margin-left: 5px;
    transition: all 0.4s ease;
    border: 2px solid #cc5c00;
}

.social-icons a:hover {
    background-color: transparent;
    color: #cc5c00;
    border-color: #cc5c00;
} 

/* Blog */
.blog-post a {
    font-weight: 700;
}

/* Form */
form input.form-control {
    height: 56px;

}

#contact {
    padding-top: 200px;
    padding-bottom: 200px;
}

form .form-control {
    border: transparent;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.02);
}

form textarea {
    resize: none;
}

/* Footer */
.footer-top {
    padding-bottom: 90px;
    padding: 90px;
    background-color: #1c1c1c;
    
}

.footer-top a {
    color: #516171;
}

.footer-top a:hover {
    color: #ffffff;
}

.footer-bottom {
    background-color: #1c1c1c;
}