:root {
    --mov-primary: #f26522;
    /* Orange */
    --mov-secondary: #002147;
    /* Dark Blue */
    --mov-text: #666666;
    --mov-light-bg: #f9f9f9;
    --mov-font: 'DM Sans', sans-serif;
}

body {
    font-family: var(--mov-font);
    color: var(--mov-text);
    overflow-x: hidden;
}

.text-white {
    color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--mov-secondary);
    font-weight: 700;
}

/* Utilities */
.mov-text-orange {
    color: var(--mov-primary) !important;
}

.mov-bg-orange {
    background-color: var(--mov-primary) !important;
}

.mov-bg-blue {
    background-color: var(--mov-secondary) !important;
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.9)), url(../images/home7.jpg);
    background-size: cover;
    background-position: center;
}

.mov-btn-orange {
    background-color: var(--mov-primary);
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s;
}

.mov-btn-orange:hover {
    background-color: #d9531e;
    color: white;
}

.mov-section-padding {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--mov-secondary);
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--mov-secondary);
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--mov-primary);
}

/* Hero Section */
.mov-hero {
    position: relative;
    background: url('../images/home1.jpg') center/cover no-repeat;
    padding: 100px 0 100px;
    overflow: hidden;
}

.mov-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.mov-hero-content {
    position: relative;
    z-index: 2;
}

.mov-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mov-hero-subtitle {
    color: var(--mov-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* Who We Are */
.mov-about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mov-section-title {
    color: var(--mov-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.mov-feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mov-feature-list i {
    color: var(--mov-primary);
}

/* Feature Cards */
.mov-feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
}

.mov-feature-card:hover {
    transform: translateY(-5px);
}

.mov-feature-icon {
    width: 60px;
    height: 60px;
    background: #fff0e6;
    color: var(--mov-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Services Section */
.mov-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mov-service-icon {
    width: 40px;
    height: 40px;
    background: var(--mov-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay Section */
.mov-cta-section {
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.9)), url('../images/home4.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.mov-cta-section h2 {
    color: white;
}

/* Stats Strip */
.mov-stats-strip {
    background: linear-gradient(115deg, var(--mov-secondary) 50%, var(--mov-primary) 50%);
    color: white;
    padding: 60px 0;
}

.mov-stat-item h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.mov-stat-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Testimonials */
.mov-testimonial-img {
    border-radius: 10px;
    overflow: hidden;
}

.mov-quote-icon {
    color: var(--mov-primary);
    font-size: 40px;
    margin-bottom: 20px;
}

/* Blog */
.mov-blog-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.mov-blog-card:hover {
    transform: translateY(-5px);
}

.mov-blog-img {
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.mov-blog-cat {
    background: var(--mov-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    position: absolute;
    top: 15px;
    left: 15px;
}

/* Footer */
.mov-footer {
    background-color: #00152e;
    color: #b0b0b0;
    padding: 80px 0 0;
}

.mov-footer h5 {
    color: white;
    margin-bottom: 25px;
}

.mov-footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.mov-footer a:hover {
    color: var(--mov-primary);
}

.mov-footer-bottom {
    background-color: #000f21;
    padding: 20px 0;
    margin-top: 60px;
    font-size: 0.9rem;
}

.mov-social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: background 0.3s;
}

.mov-social-icon:hover {
    background: var(--mov-primary);
    color: white;
}

/* Spacing */
.mb-6 {
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .mov-hero {
        padding: 60px 0 100px;
    }

    .mov-hero h1 {
        font-size: 2.5rem;
    }

    .mov-stats-strip {
        background: var(--mov-secondary);
    }

    .mov-stats-strip .col-md-3 {
        margin-bottom: 20px;
    }
}