/* COLORS */
:root {
    --blue-dark: #002e5b;
    --blue-main: #004a99;
    --orange: #f37021;
    --gray-bg: #f4f4f4;
}

* { box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; margin: 0; padding: 0; overflow-x: hidden; color: #444; }

.wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; }

/* TOP HEADER */
#top { background: var(--blue-dark); color: #fff; padding: 8px 0; font-size: 13px; }
#top .wrapper { display: flex; justify-content: space-between; align-items: center; }
#top a { color: #fff; text-decoration: none; margin-left: 15px; }
.top_rsocial i { font-size: 16px; margin-left: 10px; }

/* MAIN NAVBAR */
#top2 { background: #fff; padding: 15px 0; border-bottom: 1px solid #eee; }
#top2 .wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 74px; }

/* SEARCH */
.top_search { position: relative; display: flex; align-items: center; }
.searchlinlk { color: #444; text-decoration: none; font-weight: bold; margin-right: 10px; }
.seacrch_form { display: none; background: #fff; border: 1px solid #ccc; padding: 5px; position: absolute; right: 0; top: 40px; z-index: 100; width: 200px; }
.seacrch_form input[type="text"] { width: 150px; border: none; outline: none; padding: 5px; }

/* SLIDER */
#header { height: 450px; position: relative; background: #000; overflow: hidden; }
.slides { padding: 0; margin: 0; list-style: none; }
.slide { position: absolute; width: 100%; height: 450px; opacity: 0; transition: opacity 1s ease-in-out; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

.header_text { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; z-index: 2; }
.header_t { color: #fff; text-shadow: 2px 2px 5px rgba(0,0,0,0.7); }
.header_t h2 { font-size: 48px; margin: 0; }
.contactnow_link { display: inline-block; background: var(--orange); color: #fff; text-decoration: none; padding: 12px 30px; margin-top: 20px; font-weight: bold; border-radius: 2px; }

/* SECTIONS */
.homecontents { padding: 80px 0; text-align: center; }
.homecontents h2 { text-transform: uppercase; color: var(--blue-main); font-size: 32px; margin-bottom: 40px; }
.bg-light { background: var(--gray-bg); }

.whywork_mbox { width: 24%; display: inline-block; vertical-align: top; padding: 15px; }
.whywork_mbimg { height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }

.wesearve_text { max-width: 800px; margin: 0 auto 50px; font-size: 16px; line-height: 1.8; }
.wesearve_boxes { display: flex; justify-content: space-between; gap: 20px; }
.wesearve_box { flex: 1; background: #fff; padding: 30px 15px; border-bottom: 4px solid var(--blue-main); box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.wesearve_box:hover { transform: translateY(-10px); }
.wesearve_box h4 { margin: 20px 0 10px; color: var(--blue-main); }
.more_link { color: var(--orange); text-decoration: none; font-weight: bold; font-size: 14px; display: block; margin-top: 15px; }

/* FOOTER */
.footer { background: #111; color: #999; padding: 40px 0; font-size: 14px; }
.footer .wrapper { display: flex; justify-content: space-between; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .whywork_mbox, .wesearve_box { width: 48%; flex: none; margin-bottom: 20px; }
    .wesearve_boxes { flex-wrap: wrap; }
    .header_t h2 { font-size: 32px; }
}