/* ===============================
   General Styles
=============================== */
body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: #222;
}

p {
    margin-bottom: 15px;
}

.section-padding {
    padding: 80px 0;
}

.bg-gray {
    background: #f7f7f7;
}

/* ===============================
   Navbar
=============================== */
.navbar {
    background: rgba(0,0,0,0.85);
    padding: 15px 0;
    z-index: 1000;
}
.navbar .logo img {
    height: 50px;
}
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff9800;
}

/* ===============================
   Background Image Sections
=============================== */
.bg-img {
    background-size: cover;
    background-position: center;
    position: relative;
}
[data-overlay-dark]:before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 0;
}
.valign {
    display: flex;
    align-items: center;
    min-height: 70vh;
}
.caption {
    position: relative;
    z-index: 2;
}

/* ===============================
   Header Section
=============================== */
.header .caption h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}
.header .caption p {
    font-size: 18px;
    color: #eee;
}

/* ===============================
   Tabs Section
=============================== */
.tabs-section {
    padding: 60px 0;
}
.nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 20px;
    background: #eee;
    color: #333;
    margin: 5px;
}
.nav-pills .nav-link.active {
    background: #ff9800;
    color: #fff;
}
.box-white {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===============================
   Services
=============================== */
.extra-title {
    font-size: 32px;
    font-weight: 700;
}
.extra-title span {
    color: #ff9800;
}
.feat-item {
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}
.feat-item:hover {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.feat-item .icon img {
    height: 50px;
    margin-bottom: 15px;
}

/* ===============================
   Contact Form
=============================== */
.contact .form input,
.contact .form textarea {
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}
.contact .form button.butn {
    background: #ff9800;
    border: none;
    padding: 12px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.contact .form button.butn:hover {
    background: #e68900;
}

/* ===============================
   Footer
=============================== */
.img.mb-md50 img {
    overflow: hidden;
    width: 100%;
}
span.icon.icon2 img {
    width: 40px;
    height: 40px;
}
.m-8 {
    padding-top: 80px ! important;
    padding-bottom: 80px ! important;
}
footer {
    background: #111;
    color: #bbb;
    padding: 40px 0;
    position: relative;
}
footer .logo img {
    height: 50px;
    margin-bottom: 15px;
}
footer .social a {
    color: #bbb;
    margin: 0 8px;
    font-size: 18px;
    transition: color 0.3s ease;
}
footer .social a:hover {
    color: #ff9800;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 767px) {
    .header .caption h1 {
        font-size: 32px;
    }
}
