:root {
    --primary: #052100;
    --secondary: #0d2c54;
    --accent: #259827;
    --accent-grad: linear-gradient(135deg, #259827, #61a862);
    --bg: #f4f7fb;
    --text: #2b2b2b;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* NAVBAR */
.navbar {
    background: #fff;
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 500;
    color: #111;
}

.nav-link:hover {
    color: var(--accent);
}

.logo {
    height: 55px;
}

.btn-theme {
    background: var(--accent-grad);
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background: linear-gradient(120deg, var(--primary), #000); */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: .35; */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
}

.hero p {
    color: #ffffff;
    max-width: 650px;
    font-size: 20px;
}

/* SECTION */
.section {
    padding: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-sub {
    max-width: 720px;
    color: #666;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateX(-10px);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Icon Box */
.icon-box {
    min-width: 60px;
    height: 60px;
    background: var(--accent-grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

/* Industry Tags */
.industry-tag {
    background: #eee;
    color: #444;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid transparent;
}

.industry-tag:hover {
    background: #fff;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.text-primary {
    color: var(--accent) !important;
}

/* Why Choose Us Custom Styles */
.choice-card {
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Icon Styling */
.choice-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.choice-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.choice-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hover & Active States */
.choice-card:hover {
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.active-card {
    background: var(--accent-grad);
    /* Using the blue gradient from previous section */
    color: #fff;
    border: none;
}

.active-card .choice-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.active-card p {
    color: rgba(255, 255, 255, 0.9);
}

.active-card:hover {
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.3);
}

/* Modern Modular Design Pattern */
.service-module {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.module-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    /* Your Accent Color */
    background: rgba(245, 130, 32, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Sub-cards for Transportation */
.sub-card {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.sub-card i {
    color: var(--accent);
    font-size: 1.2rem;
}

.sub-card:hover {
    background: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Info Note */
.info-note {
    background: #eef6ff;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--accent);
}

/* Video Side */
.video-container {
    position: relative;
    min-height: 400px;
}

.module-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

/* Feature Boxes for Module 02 */
.feature-box {
    padding: 25px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: 0.3s;
    height: 100%;
}

.feature-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.feature-box h6 {
    font-weight: 700;
    margin: 0;
}

.active-feature {
    background: linear-gradient(135deg, var(--accent), #61a862);
    color: #fff;
}

.active-feature i {
    color: #fff;
}

.feature-box:hover {
    transform: translateY(-5px);
    /* background: #fff; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}


/* Industry Section Design Pattern */
.industry-feature-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.industry-img-wrap {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.industry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s;
}

.industry-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Standard Industry Cards */
.industry-card-modern {
    background: #fff;
    border-radius: 30px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.card-img-top {
    height: 340px;
    overflow: hidden;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.card-body-modern {
    padding: 35px;
}

.card-body-modern h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-body-modern p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* .highlight-border {
            border: 2px solid var(--accent);
        } */

/* Hover Effects */
.industry-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.industry-card-modern:hover .card-img-top img,
.industry-feature-card:hover .industry-img-wrap img {
    transform: scale(1.1);
}

/* Small text adjustment for longer descriptions */
.small-text {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
}

/* CONTACT PREMIUM */
.contact-premium {
    background: linear-gradient(180deg, #ffffff, #f3f7fb);
}

.contact-text {
    color: #555;
    max-width: 420px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 18px;
}

.info-item i {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.info-item h6 {
    margin-bottom: 4px;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* FORM */
.contact-form-wrap {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    padding: 50px;
    border-radius: 36px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, .15);
}

.contact-form-wrap h4 {
    font-weight: 700;
}

.form-control {
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #e5e9f0;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: none;
}

.form-note {
    font-size: 14px;
    color: #777;
    text-align: center;
}

/* MOBILE */
@media(max-width:991px) {
    .contact-form-wrap {
        padding: 35px;
    }
}


/* FOOTER */
.footer {
    background: #cdcdcd;
    color: #aaa;
    padding: 70px 0 20px;
}

.footer a {
    color: #000000;
}

.footer a:hover {
    color: var(--accent);
}

/* MOBILE & TABLET */
@media (max-width: 991px) {

    /* Navbar */
    .navbar {
        padding: 10px 20px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .btn-theme {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero {
        min-height: 75vh;
        text-align: center;
        justify-content: center;
        padding: 0px;
        padding-top: 20px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }

    .hero p {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto;
        margin-bottom: 12px;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-sub {
        text-align: center;
        margin: 0 auto;
    }

    /* Cards & Modules */
    .glass-card,
    .choice-card,
    .service-module,
    .industry-card-modern,
    .industry-feature-card {
        padding: 20px;
    }

    .choice-card h4 {
        font-size: 1.1rem;
    }

    .choice-card p {
        font-size: 0.9rem;
    }

    /* Industry Tags */
    .industry-tag {
        padding: 6px 14px;
        font-size: 13px;
    }

    /* Contact Section */
    .contact-form-wrap {
        padding: 30px;
    }

    .contact-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-info {
        gap: 15px;
    }

    /* Video Containers */
    .video-overlay-text {
        bottom: 20px;
        left: 20px;
        font-size: 0.9rem;
    }

    /* Feature Boxes */
    .feature-box h6 {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 50px 20px 20px;
        text-align: center;
    }
}

/* SMALL MOBILE DEVICES */
@media (max-width: 576px) {
    .hero-content {
        padding-top: 0px;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn-theme {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    .glass-card,
    .choice-card,
    .service-module,
    .industry-card-modern,
    .industry-feature-card {
        padding: 15px;
    }

    .choice-card h4 {
        font-size: 1rem;
    }

    .choice-card p {
        font-size: 0.85rem;
    }

    .industry-tag {
        font-size: 12px;
        padding: 5px 12px;
    }

    .contact-form-wrap {
        padding: 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .info-item {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }

    .industry-img-wrap {
        min-height: 250px;
    }

    .card-body-modern {
        padding: 20px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .logo {
        height: 45px;
    }
}