/* ================= GLOBAL ================= */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* SECTION SPACING SYSTEM */
section {
    padding: 90px 0;
}

section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

section p.text-muted {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #777;
}

/* ================= HERO ================= */

.hero-area {
    position: relative;
    background: url('../images/hero.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-area .container {
    position: relative;
    z-index: 2;
}

.hero-area h1 {
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-area p {
    margin-bottom: 30px;
}

/* ================= BUTTON ================= */

.btn-premium {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    color: #fff;
    font-weight: 700;
}

/* ================= OUR WORK SECTION ================= */
.work-section {
    background: #f8f9fa;
}

/* CARD */
.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 10px;
}

.work-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER ZOOM */
.work-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

/* TITLE */
.work-overlay h6 {
    margin: 0;
    font-weight: 600;
}

/* ================= NAVBAR ================= */

/* NAVBAR BASE */
.custom-navbar {
    background: transparent;
    padding: 1px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* SCROLL EFFECT */
.custom-navbar.scrolled {
    background: #0000003d;
    padding: 1px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

/* LOGO */
/* NAVBAR LOGO */
.logo{
    width: 180px;
    height: auto;
    display:block;
    border-radius: 6px;
}

@media (max-width:768px){
    .logo{
        width: 170px;
    }
}

.navbar-brand {
    font-size: 22px;
    color: #fff !important;
}

.navbar-brand span {
    color: #fff;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
}

/* HOVER UNDERLINE */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    font-weight: 900;
}

/* ACTIVE LINK */
.navbar-nav .nav-link.active {
    color: #fff;
    font-weight: 700;
}

/* BUTTON */
.btn-nav {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #fff;
    font-weight: 700;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .custom-navbar {
        background: #111;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}

/* ================= STATS ================= */

.stats-section {
    background: linear-gradient(rgba(30,60,114,0.9), rgba(42,82,152,0.9)),
                url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
}

.stats-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stats-section p {
    font-size: 14px;
    opacity: 0.9;
}

.stats-section .col-md-3 {
    margin-bottom: 20px;
}

/* ================= WORKFLOW ================= */

.workflow-modern {
    background: #fff;
}

.workflow-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 50px;
}

.workflow-line::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 260px;
    margin: auto;
}

.step-icon {
    width: 75px;
    height: 75px;
    background: #fff;
    border: 3px solid #2a5298;
    color: #2a5298;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 26px;
    transition: 0.3s;
}

.step h6 {
    margin-top: 15px;
    font-weight: 600;
}

.step-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
}

.step:hover .step-icon {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: #fff;
    transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
    .workflow-line {
        flex-direction: column;
    }

    .workflow-line::before {
        display: none;
    }

    .step {
        margin-bottom: 30px;
    }
}

/* ================= SERVICES ================= */

.services-section {
    background: #f8f9fa;
}

.services-section .row {
    margin-top: 30px;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card .icon {
    font-size: 36px;
    color: #2a5298;
    margin-bottom: 15px;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ================= GALLERY ================= */

.section.bg-light h2 {
    margin-bottom: 30px;
}

.owl-carousel .item img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

/* ================= CLIENTS ================= */

.clients-section {
    padding: 90px 0;
    background: #fff;
}

.client-logo {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    padding: 10px;
    transition: 0.3s;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ================= FOOTER ================= */

footer {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}


/* ================= CONTACT HERO ================= */
.contact-hero {
    background: linear-gradient(rgba(30,60,114,0.85), rgba(42,82,152,0.85)),
                url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.contact-hero p {
    margin-top: 10px;
    font-size: 16px;
}

/* CONTACT INFO */
.contact-info-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.contact-card i {
    font-size: 28px;
    color: #2a5298;
    margin-bottom: 10px;
}

.contact-card h5 {
    font-weight: 600;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* FORM */
.contact-main {
    padding: 80px 0;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form-box input,
.contact-form-box textarea {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #2a5298;
    box-shadow: none;
}

/* MAP */
.map-box iframe {
    border-radius: 15px;
}