﻿/* ===========================================================
   GVR Global — site.css (Unified Orange Theme)
   Author: You + GPT
   =========================================================== */

/* ---------- Fonts ---------- */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700");
@import url('https://fonts.googleapis.com/css?family=Anton|Montserrat:100,200,300,400,500,600,700,800,900&display=swap');

/* ---------- Tokens ---------- */
:root {
    --brand: #ED502E; /* primary orange */
    --brand-2: #ff8a50; /* secondary orange for gradients */
    --ink: #111827; /* headings */
    --muted: #6b7280; /* body text */
    --bg: #ffffff; /* base */
    --bg-light: #f8fafc; /* light sections */
    --bg-dark: #000814; /* dark section start */
    --bg-deep: #001a33; /* dark section end */
    --card-border: rgba(0,0,0,.08);
    --radius: 16px;
    --shadow-soft: 0 10px 24px rgba(0,0,0,.10);
    --shadow-strong: 0 14px 34px rgba(0,0,0,.18);
}

/* ---------- Base ---------- */
* {
    box-sizing: border-box;
}

    *:focus {
        outline: none;
    }

html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    background: var(--bg);
    color: #1f2937;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat',sans-serif;
    color: var(--ink);
    margin: 0 0 .5rem;
}

.section-title {
    font-weight: 800;
    letter-spacing: .2px;
    text-transform: uppercase;
    font-size: 2rem;
}

/* ---------- Utilities ---------- */
.rounded-4 {
    border-radius: var(--radius) !important;
}

.text-orange {
    color: var(--brand) !important;
}

.bg-orange {
    background: var(--brand) !important;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.text-light-50 {
    color: rgba(255,255,255,.75) !important;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }


/* ===========================================================
   Navbar (Bootstrap)
   =========================================================== */
.navbar {
    transition: box-shadow .2s ease, background .2s ease, padding .2s ease;
    background: #fff;
}

    .navbar.sticky-top {
        box-shadow: 0 4px 14px rgba(0,0,0,.06);
    }

    .navbar.scrolled {
        box-shadow: 0 8px 22px rgba(0,0,0,.08);
    }

    .navbar .navbar-brand img {
        height: 50px;
        transition: transform .2s ease;
    }

    .navbar .navbar-brand:hover img {
        transform: scale(1.02);
    }

    .navbar .nav-link {
        font-weight: 700;
        color: #1f2937 !important;
        padding: .6rem 1rem !important;
        position: relative;
    }

        .navbar .nav-link:hover,
        .navbar .nav-link:focus {
            color: var(--brand) !important;
        }

        .navbar .nav-link::after {
            content: "";
            position: absolute;
            left: 1rem;
            right: 1rem;
            bottom: 6px;
            height: 2px;
            background: linear-gradient(90deg,var(--brand),var(--brand-2));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease;
        }

        .navbar .nav-link:hover::after, .navbar .nav-link.active::after {
            transform: scaleX(1);
        }

        .navbar .nav-link.active {
            color: var(--brand) !important;
        }

    /* Auth buttons */
    .navbar .btn {
        border-radius: 999px;
        font-weight: 800;
    }

        .navbar .btn.btn-outline-primary {
            border-width: 2px;
            border-color: var(--brand);
            color: var(--brand);
        }

            .navbar .btn.btn-outline-primary:hover {
                background: var(--brand);
                color: #fff;
            }

        .navbar .btn.btn-primary {
            background: linear-gradient(135deg,var(--brand),var(--brand-2));
            border: none;
            box-shadow: 0 6px 16px rgba(237,80,46,.28);
        }

/* Dropdowns */
.dropdown-menu {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 20px 34px rgba(0,0,0,.12);
    padding: .45rem;
}

.dropdown-item {
    border-radius: 8px;
    font-weight: 600;
}

    .dropdown-item:hover {
        background: rgba(237,80,46,.10);
        color: var(--brand);
    }

/* ------------------ DROPDOWN ------------------ */
.dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: var(--nav-radius);
    padding: 12px 8px;
    box-shadow: var(--nav-shadow);
    animation: dropdownFade 0.25s ease;
}


@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ------------------ DROPDOWN ------------------ */
.dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: var(--nav-radius);
    padding: 12px 8px;
    box-shadow: var(--nav-shadow);
    animation: dropdownFade 0.25s ease;
}


@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ------------------ DROPDOWN ------------------ */
.dropdown-menu {
    background:#ffff;
    border: none;
    border-radius: var(--nav-radius);
    padding: 12px 8px;
    box-shadow: var(--nav-shadow);
    animation: dropdownFade 0.25s ease;
}


@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.dropdown-item {
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    transition: var(--transition);
}


    .dropdown-item:hover {
        background: var(--nav-primary);
        color: #ED502E;
    }
/* Mobile nav tweaks */
@media (max-width:991.98px) {
    .navbar .navbar-collapse {
        padding: .5rem 0 .75rem;
    }

    .navbar .btn {
        width: 100%;
        margin-left: 0 !important;
    }
}

/* ===========================================================
   Hero / Owl Carousel (#homeBanner)
   =========================================================== */
.section-hero {
    position: relative;
    overflow: hidden;
}

    .section-hero .item figure {
        margin: 0;
        max-height: 70vh;
        overflow: hidden;
    }

        .section-hero .item figure img {
            width: 100%;
            height: 70vh;
            object-fit: cover;
            display: block;
            filter: brightness(.85) contrast(1.06);
        }

    .section-hero .banner {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 1rem;
    }

        .section-hero .banner h1 {
            color: #fff;
            font-weight: 900;
            font-size: clamp(1.9rem,3vw,3rem);
            text-shadow: 0 12px 28px rgba(0,0,0,.35);
        }

        .section-hero .banner p {
            color: rgba(255,255,255,.92);
            max-width: 820px;
            margin: .75rem auto 0;
        }



#homeBanner .owl-dots {
    display: none !important;
}

/* ===========================================================
   Key Highlights
   =========================================================== */
.pattern-bg {
    background: linear-gradient(180deg,#fdfdfd 0%, #ffffff 65%);
}

#key-highlights .card {
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}

    #key-highlights .card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
        border-color: rgba(237,80,46,.35);
    }

#key-highlights .custom-icon i {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    color: #fff;
}

/* ===========================================================
   Services Grid
   =========================================================== */
/* === HERO / HOME BANNER — ORANGE THEME === */
:root {
    --brand: #ED502E;
    --brand-2: #FF8A50;
}

#home-section.section-hero {
    position: relative;
    overflow: hidden;
}

/* Make slides fill nicely + darken for readability */
#homeBanner .item figure {
    margin: 0;
    max-height: 80vh;
    overflow: hidden;
}

    #homeBanner .item figure img {
        width: 100%;
        height: 80vh;
        object-fit: cover;
        display: block;
        filter: brightness(.75) contrast(1.05);
    }

/* Centered banner text */
#homeBanner .banner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

    #homeBanner .banner h1 {
        color: #fff;
        font-weight: 800;
        letter-spacing: .5px;
        font-size: clamp(1.8rem,3vw,3rem);
        text-shadow: 0 10px 30px rgba(0,0,0,.4);
        margin-bottom: .6rem;
    }

    #homeBanner .banner p {
        color: rgba(255,255,255,.9);
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* Owl dots -> orange */
#homeBanner .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
}

#homeBanner .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: block;
    background: #fff !important;
    opacity: .55;
    transition: all .2s ease;
}

#homeBanner .owl-dot.active span {
    width: 30px;
    background: var(--brand) !important;
    opacity: 1;
}

/* Owl arrows -> clean, orange on hover */
#homeBanner .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,0,0,.25) !important;
    border: none;
    transition: background .2s ease, transform .2s ease;
}

    #homeBanner .owl-nav button.owl-prev {
        left: 18px;
    }

    #homeBanner .owl-nav button.owl-next {
        right: 18px;
    }

    #homeBanner .owl-nav button span {
        color: #fff;
        font-size: 48px;
        line-height: 48px;
        display: inline-block;
    }

    #homeBanner .owl-nav button:hover {
        background: linear-gradient(135deg,var(--brand),var(--brand-2)) !important;
        transform: translateY(-50%) scale(1.03);
    }

/* Responsive tweaks */
@media (max-width:992px) {
    #homeBanner .item figure img {
        height: 65vh;
    }
}

@media (max-width:576px) {
    #homeBanner .item figure img {
        height: 60vh;
    }

    #homeBanner .banner h1 {
        font-size: clamp(1.6rem,5vw,2rem);
    }
}
.gvr_block_services {
    position: relative;
}

    .gvr_block_services .gvr_services_card {
        background: #fff;
        border-radius: var(--radius);
        padding: 1.25rem;
        border: 1px solid var(--card-border);
        height: 100%;
        color: inherit;
        text-decoration: none;
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

        .gvr_block_services .gvr_services_card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-soft);
            border-color: rgba(237,80,46,.35);
        }

    .gvr_block_services .custom-icon {
        display: block;
        position: relative;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 1px solid var(--brand);
        background: var(--brand);
        margin-bottom: 1.2rem;
    }

        .gvr_block_services .custom-icon:before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 90px;
            height: 90px;
            border: 1px solid rgba(237,80,46,.4);
            border-radius: 50%;
        }

        .gvr_block_services .custom-icon i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            font-size: 1.6rem;
            color: #fff;
            transition: transform .25s ease, color .25s ease;
        }

    .gvr_block_services .gvr_services_card:hover .custom-icon {
        background: transparent;
    }

        .gvr_block_services .gvr_services_card:hover .custom-icon i {
            color: var(--brand);
            transform: translate(-50%,-50%) scale(1.05);
        }

/* Optional background wash image */
#services-section #bg {
    position: absolute;
    inset: 0;
}

    #services-section #bg img,
    #services-section #bg {
        opacity: .08;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

/* ===========================================================
   Industries
   =========================================================== */
.industries-section .industry-card {
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}

    .industries-section .industry-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
        border-color: rgba(237,80,46,.35);
    }

    .industries-section .industry-card i {
        display: inline-flex;
        width: 52px;
        height: 52px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(237,80,46,.12);
        color: var(--brand);
    }

/* ===========================================================
   Featured Project (Dark) — AI Literacy
   =========================================================== */
.featured-project-section {
    background: linear-gradient(135deg,var(--bg-dark) 0%, var(--bg-deep) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

    .featured-project-section::before {
        content: "";
        position: absolute;
        top: -30%;
        left: -10%;
        width: 150%;
        height: 160%;
        background: radial-gradient(circle at 20% 30%, rgba(237,80,46,.25), transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    .featured-project-section .container {
        position: relative;
        z-index: 2;
    }

    .featured-project-section img {
        border: 3px solid rgba(255,255,255,.1);
        border-radius: var(--radius);
        transition: transform .5s ease, box-shadow .5s ease;
    }

        .featured-project-section img:hover {
            transform: scale(1.03);
            box-shadow: 0 0 35px rgba(237,80,46,.35);
        }

    .featured-project-section h2 {
        font-weight: 900;
        font-size: clamp(1.6rem,2.6vw,2rem);
        text-shadow: 0 0 14px rgba(237,80,46,.35);
    }

    .featured-project-section p {
        color: rgba(255,255,255,.85);
        line-height: 1.7;
    }

    .featured-project-section ul {
        list-style: none;
        padding-left: 0;
        margin: 0 0 1rem;
    }

        .featured-project-section ul li {
            padding: 6px 0;
            font-size: .95rem;
            display: flex;
            align-items: center;
            opacity: .92;
        }

            .featured-project-section ul li::before {
                content: "•";
                color: var(--brand-2);
                margin-right: 8px;
                font-weight: 800;
            }

    .featured-project-section .btn-outline-info {
        color: var(--brand-2);
        border-color: var(--brand-2);
        font-weight: 700;
        transition: all .25s ease;
    }

        .featured-project-section .btn-outline-info:hover {
            background: linear-gradient(135deg,var(--brand),var(--brand-2));
            color: #000;
            border-color: transparent;
            box-shadow: 0 0 16px rgba(237,80,46,.35);
        }

/* ===========================================================
   Learning & Training (Light)
   =========================================================== */
.learning-preview-section {
    background: linear-gradient(135deg,#f9fbff 0%, #f3f8ff 100%);
    color: #333;
    position: relative;
}

    .learning-preview-section .learning-content h2 {
        font-weight: 900;
        color: var(--ink);
    }

    .learning-preview-section .learning-content p {
        color: #5f6b7a;
        line-height: 1.7;
    }

    .learning-preview-section .learning-points {
        list-style: none;
        padding-left: 0;
        margin-bottom: 1.25rem;
    }

        .learning-preview-section .learning-points li {
            padding: 6px 0;
            font-size: .95rem;
            display: flex;
            align-items: center;
            color: #374151;
        }

            .learning-preview-section .learning-points li::before {
                content: "?";
                color: var(--brand);
                font-weight: 800;
                margin-right: 8px;
            }

    .learning-preview-section .learning-img {
        border-radius: var(--radius);
        border: 2px solid rgba(0,0,0,.05);
        transition: transform .4s ease, box-shadow .4s ease;
    }

        .learning-preview-section .learning-img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(237,80,46,.25);
        }

    .learning-preview-section .btn-primary {
        background: linear-gradient(135deg,var(--brand),var(--brand-2));
        border: none;
        font-weight: 800;
        transition: all .25s ease;
    }

        .learning-preview-section .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(237,80,46,.25);
        }

/* ===========================================================
   Projects (optional dark grid cards)
   =========================================================== */
.projects-dark-section {
    background: linear-gradient(135deg,var(--bg-dark) 0%, var(--bg-deep) 100%);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.dark-section .project-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
}

.project-card .project-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.project-card .project-body {
    padding: 1.1rem 1.1rem 1.25rem;
}

.dark-section .project-card .project-body {
    color: #e9ecef;
}

.dark-section .project-card .project-teaser {
    color: #cfd5db;
}

.project-card .project-title {
    font-weight: 800;
}

.dark-section .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 42px rgba(237,80,46,.25);
    border-color: rgba(237,80,46,.45);
}

.project-card:hover .project-thumb img {
    transform: scale(1.05);
}

/* Badges */
.badge-new, .badge-featured {
    position: absolute;
    top: 12px;
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .35rem .55rem;
    border-radius: 999px;
    z-index: 2;
    user-select: none;
}

.badge-new {
    left: 12px;
    color: #000;
    background: #ffd166;
    box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}

.badge-featured {
    right: 12px;
    color: #fff;
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    box-shadow: 0 0 0 2px rgba(255,255,255,.1);
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
    padding-top: 2rem;
    background: #292929;
    color: #e5e7eb;
    position: relative;
    margin-top: 6rem;
}

    .site-footer.slanted-footer:before {
        content: "";
        background: #292929;
        height: 200px;
        transform: skewY(5deg);
        position: absolute;
        left: 0;
        top: -100px;
        right: 0;
        z-index: -1;
    }

    .site-footer:after {
        content: "";
        background-image: url('../images/favicon.png');
        width: 300px;
        height: 300px;
        position: absolute;
        top: -100px;
        background-repeat: no-repeat;
        background-size: 300px;
        filter: contrast(.5);
        opacity: .08;
    }

    .site-footer h3 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #fff;
        font-weight: 800;
    }

    .site-footer ul li {
        margin-bottom: .5rem;
    }

        .site-footer ul li a {
            color: #fff;
            font-weight: 200;
        }

            .site-footer ul li a:hover {
                color: var(--brand);
            }

/* Footer socials */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    margin-right: 8px;
    border: 1px solid rgba(0,0,0,.06);
    transition: all .2s ease;
}

    .footer-social a:hover {
        background: linear-gradient(135deg,var(--brand),var(--brand-2));
        color: #fff;
        transform: translateY(-2px);
        box-shadow: var(--shadow-strong);
    }

.site-footer .scroll-top {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50%;
    transform: translate(-50%,-250%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 10px 10px rgba(0,0,0,.3);
}

    .site-footer .scroll-top > span {
        position: absolute;
        font-size: 2rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: #fff !important;
    }

/* Sub-footer */
.sub-footer {
    background: #090909;
    padding: 30px;
    color: #fff;
}

    .sub-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .sub-footer ul > li {
            display: inline-block;
            color: #fff;
            font-size: 13px;
            margin-right: 30px;
        }

    .sub-footer a {
        color: #fff;
        font-size: 13px;
    }

.copyright a, .credits a {
    color: #3EC1D5;
}

    .copyright a:hover, .credits a:hover {
        color: var(--brand);
    }

/* ===========================================================
   Buttons / Forms
   =========================================================== */
.btn-orange, .btnservice, .btn-login, .btn-cnt {
    background: linear-gradient(135deg,var(--brand),var(--brand-2)) !important;
    border-color: var(--brand) !important;
    color: #fff !important;
}

    .btn-orange:hover, .btnservice:hover, .btn-login:hover, .btn-cnt:hover {
        background: #fff !important;
        color: var(--brand) !important;
        border-color: var(--brand) !important;
    }

.btn.btn-primary:hover {
    background: #fff;
    border-color: var(--brand);
    color: var(--brand) !important;
}

.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(237,80,46,.25);
}

a:focus, button:focus, .btn:focus, .nav-link:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(237,80,46,.30);
}

/* ===========================================================
   Owl dots for testimonial (if used)
   =========================================================== */
#testimonial .owl-dots {
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.owl-dots button.owl-dot span {
    display: block;
    width: 10px;
    height: 5px;
    background: #d0d0d0;
    margin: 0 2px;
    transition: width .3s ease;
    border-radius: 2px;
}

.owl-dots button.owl-dot.active span {
    background: #fff;
    width: 35px;
}

#testimonial .owl-dots button.owl-dot.active span {
    background: var(--brand);
}

/* ===========================================================
   Loader / Overlayer
   =========================================================== */
#overlayer {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 7100;
    display: none;
}

.loader {
    z-index: 7700;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

    .loader .spinner-border {
        width: 3rem;
        height: 3rem;
        color: var(--brand);
    }

/* ===========================================================
   Mobile Menu (custom)
   =========================================================== */
.site-mobile-menu {
    width: 300px;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 20px;
    background: #fff;
    height: 100vh;
    transform: translateX(110%);
    box-shadow: -10px 0 20px -10px rgba(0,0,0,.1);
    transition: .2s cubic-bezier(.66,.2,.48,.9);
}

.offcanvas-menu .site-mobile-menu {
    transform: translateX(0);
}

.site-mobile-menu .site-mobile-menu-header {
    padding: 0 20px;
    width: 100%;
}

.site-mobile-menu .site-mobile-menu-close span {
    font-size: 30px;
    padding-left: 10px;
    line-height: 1;
    cursor: pointer;
    transition: .3s ease;
}

    .site-mobile-menu .site-mobile-menu-close span:hover {
        color: #dee2e6;
    }

.site-mobile-menu .site-mobile-menu-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    height: calc(100vh - 52px);
    padding: 0 20px 20px;
}

.site-mobile-menu .site-nav-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .site-mobile-menu .site-nav-wrap a {
        padding: 10px 20px;
        display: block;
        color: #212529;
    }

        .site-mobile-menu .site-nav-wrap a:hover {
            color: var(--brand);
        }

    .site-mobile-menu .site-nav-wrap li {
        position: relative;
        display: block;
    }

    /* collapsible arrows */
    .site-mobile-menu .site-nav-wrap .arrow-collapse {
        position: absolute;
        right: 0;
        top: 10px;
        width: 36px;
        height: 36px;
        text-align: center;
        cursor: pointer;
        border-radius: 50%;
    }

        .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
            background: #f8f9fa;
        }

        .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
            font-size: 12px;
            font-family: "icomoon";
            content: "\f078";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%) rotate(-180deg);
            transition: .3s ease;
        }

        .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
            transform: translate(-50%,-50%);
        }

/* ===========================================================
   Misc legacy classes preserved (minimal)
   =========================================================== */
.itservbanner {
    width: 100%;
    height: 341px;
    object-fit: cover;
}

.inner-bg-content {
    position: absolute;
    bottom: 50px;
    max-width: 1000px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner-content {
    padding: 25px;
    background: #000;
    border-radius: 5px;
    opacity: .60;
}

.profilerow {
    display: block !important;
}

/* ===========================================================
   Responsive tweaks
   =========================================================== */
@media (max-width:1200px) {
    .iconstyle {
        font-size: 1.9rem;
    }
}

@media (max-width:992px) {
    .featured-project-section, .learning-preview-section, #key-highlights, .gvr_block_services, .industries-section {
        text-align: center;
    }

        .featured-project-section img, .learning-preview-section img {
            margin-bottom: 1.25rem;
        }

    .home-section figure {
        height: 50vh;
        width: 100%;
    }

        .home-section figure img {
            position: absolute;
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
}

@media (max-width:767px) {
    .home-section figure {
        height: 400px;
    }

    .home-section .banner h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width:499px) {
    #services-section .col-6 {
        flex-basis: 100%;
        max-width: 100%;
    }
}
/* ===== GVR Global – ORANGE OVERRIDES (place at very end) ===== */
:root {
    --brand: #ED502E; /* main orange */
    --brand-2: #FF8A50; /* lighter orange for gradients */
    --ink: #111827; /* headings */
    --bg-dark: #000814;
    --bg-deep: #001a33;
    --bg-light: #f8fafc;
    --card-border: rgba(0,0,0,.06);
    --card-shadow: 0 10px 25px rgba(237,80,46,.18);
    --radius: 16px;
}

/* Navbar & links */
.navbar .nav-link,
.site-navbar .site-navigation .site-menu > li > a {
    color: #1f2937 !important;
}

    .navbar .nav-link:hover,
    .navbar .nav-link.active,
    .site-navbar .site-navigation .site-menu > li > a:hover {
        color: #ED502E !important;
    }

.site-navbar .site-navigation .site-menu .active {
    color: #ED502E !important;
}

/* Dropdowns / hovers previously blue */
.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
    color: #ED502E;
    background: #f4f6f8;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
    color: #ED502E !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:after {
    background: #ED502E !important;
}

/* “Text-black” class used as accent – make it orange or true black */
.text-black {
    color: #ED502E !important;
}

/* Key highlights / cards hover border */
#key-highlights .card:hover {
    border-color: rgba(237,80,46,.35) !important;
}

/* Services cards */
.gvr_block_services .gvr_services_card {
    border: 1px solid var(--card-border);
}

    .gvr_block_services .gvr_services_card:hover {
        border-color: rgba(237,80,46,.35) !important;
    }

    .gvr_block_services .gvr_services_card .custom-icon {
        background: #ED502E;
        border-color: #ED502E;
    }

    .gvr_block_services .gvr_services_card:hover .custom-icon {
        background: transparent;
    }

        .gvr_block_services .gvr_services_card:hover .custom-icon [class^="icon-"],
        .gvr_block_services .gvr_services_card:hover .custom-icon [class^="flaticon-"] {
            color: #ED502E !important;
        }

/* Industries icons */
.industries-section .industry-card:hover {
    border-color: rgba(237,80,46,.35) !important;
}

.industries-section .industry-card i {
    background: rgba(237,80,46,.12);
    color: #ED502E;
}

/* Numbers & accents */
.gvr_number_block .number {
    color: #ED502E;
}

/* Filters (was blue) */
.filters .btn:hover,
.filters .btn.active {
    background: #ED502E !important;
    border-color: #ED502E !important;
    color: #fff !important;
    box-shadow: 0 4px 15px -3px rgba(237,80,46,.45) !important;
}

/* Buttons */
.btnservice, .btn-login, .btn-cnt,
.btn.btn-primary {
    background: #ED502E !important;
    border-color: #ED502E !important;
    color: #fff !important;
}

    .btn.btn-primary:hover,
    .btnservice:hover, .btn-login:hover, .btn-cnt:hover {
        background: #fff !important;
        color: #ED502E !important;
    }

/* Footer links hover */
.site-footer ul li a:hover {
    color: #ED502E !important;
}

.footer-social a:hover {
    background: linear-gradient(135deg,#ED502E,#FF8A50);
    color: #fff;
}

/* Owl dots (testimonial) */
#testimonial .owl-dots button.owl-dot.active span {
    background: #ED502E !important;
}

/* Focus states */
.form-control:focus,
a:focus, button:focus, .btn:focus, .nav-link:focus {
    border-color: #ED502E !important;
    box-shadow: 0 0 0 .2rem rgba(237,80,46,.25) !important;
}

/* Featured (AI) keeps dark bg, but use orange glow */
.featured-project-section::before {
    background: radial-gradient(circle at 20% 30%, rgba(237,80,46,.25), transparent 70%) !important;
}

.featured-project-section .btn-outline-info {
    color: #FF8A50;
    border-color: #FF8A50;
}

    .featured-project-section .btn-outline-info:hover {
        background: linear-gradient(135deg,#ED502E,#FF8A50);
        color: #000;
        border-color: transparent;
        box-shadow: 0 0 16px rgba(237,80,46,.35);
    }

/* Learning section bullets (was “?”/blue) */
.learning-preview-section .learning-points li::before {
    content: "?";
    color: #ED502E;
    font-weight: 800;
    margin-right: 8px;
}

.learning-preview-section .btn-primary {
    background: linear-gradient(135deg,#ED502E,#FF8A50) !important;
    border: none;
}

.learning-preview-section .learning-img:hover {
    box-shadow: 0 10px 25px rgba(237,80,46,.25);
}

/* Misc historical blues ? orange */
.site-footer a {
    color: #fff;
}
/* remove #4a90e2 */
.btn.btn-outline-white:hover {
    color: #ED502E;
}
/* ===== GVR ORANGE OVERRIDES — FINAL PASS (place at very end) ===== */

/* Tokens */
:root {
    --brand: #ED502E;
    --brand-2: #FF8A50;
    --ink: #111111; /* headings look black, not blue */
}

/* Global accents that were blue */
.section-title {
    color: #111111 !important;
}

.text-black {
    color: #ED502E !important;
}

.price h2 {
    color: #ED502E !important;
}

/* Navbar hover states (was #063972) */
.site-navbar .site-navigation .site-menu.site-menu-dark > li > a:hover,
.site-navbar .site-navigation .site-menu.site-menu-dark > li > a.active,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
    color: #ED502E !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:after {
    background: #ED502E !important;
}

/* Hero / Owl nav arrows (were rgba(74,144,226,..)) */
button.owl-prev span,
button.owl-next span {
    color: rgba(237,80,46,.45) !important;
}

button.owl-prev:hover span,
button.owl-next:hover span {
    color: rgba(237,80,46,1) !important;
}

/* Owl dots */
#homeBanner .owl-dot span {
    background: #fff !important;
    opacity: .5;
}

#homeBanner .owl-dot.active span {
    background: #ED502E !important;
    opacity: 1;
}

#testimonial .owl-dots button.owl-dot.active span {
    background: #ED502E !important;
}

/* Buttons (hover was blue) */
.btn.btn-primary,
.btnservice, .btn-login, .btn-cnt {
    background: #ED502E !important;
    border-color: #ED502E !important;
    color: #fff !important;
}

    .btn.btn-primary:hover,
    .btnservice:hover, .btn-login:hover, .btn-cnt:hover {
        background: #fff !important;
        color: #ED502E !important;
        border-color: #ED502E !important;
    }

/* Filters (was #063972) */
.filters .btn:hover,
.filters .btn.active {
    background: #ED502E !important;
    border-color: #ED502E !important;
    color: #fff !important;
    box-shadow: 0 4px 15px -3px rgba(237,80,46,.45) !important;
}

/* Services / Industries icon surfaces */
.gvr_block_services .gvr_services_card:hover {
    border-color: rgba(237,80,46,.35) !important;
}

.industries-section .industry-card:hover {
    border-color: rgba(237,80,46,.35) !important;
}

.industries-section .industry-card i {
    background: rgba(237,80,46,.12) !important;
    color: #ED502E !important;
}

/* Learning section (headings & bullets had #0077b6) */
.learning-preview-section .learning-content h2 {
    color: #ED502E !important;
}

.learning-preview-section .learning-points li::before {
    content: "?";
    color: #ED502E !important;
}

.learning-preview-section .btn-primary {
    background: linear-gradient(135deg,#ED502E,#FF8A50) !important;
    border: none !important;
}

/* Featured project (swap cyan glow to orange) */
.featured-project-section::before {
    background: radial-gradient(circle at 20% 30%, rgba(237,80,46,.25), transparent 70%) !important;
}

.featured-project-section .btn-outline-info {
    color: #FF8A50 !important;
    border-color: #FF8A50 !important;
}

    .featured-project-section .btn-outline-info:hover {
        background: linear-gradient(135deg,#ED502E,#FF8A50) !important;
        color: #000 !important;
        border-color: transparent !important;
    }

/* Footer links */
.site-footer ul li a:hover {
    color: #ED502E !important;
}

.footer-social a:hover {
    background: linear-gradient(135deg,#ED502E,#FF8A50) !important;
}

/* Focus rings */
.form-control:focus,
a:focus, button:focus, .btn:focus, .nav-link:focus {
    border-color: #ED502E !important;
    box-shadow: 0 0 0 .2rem rgba(237,80,46,.25) !important;
}
:root {
    --accent-orange: #ED502E;
}

.text-accent {
    color: var(--accent-orange) !important;
}

.industry-card.glow-on-view {
    transition: transform .3s ease, box-shadow .35s ease, border-color .35s ease;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: .75rem;
}

    .industry-card.glow-on-view.in-view {
        transform: translateY(-6px);
        box-shadow: 0 10px 28px rgba(0,0,0,.12), 0 0 0 2px rgba(237,80,46,.18), 0 0 26px rgba(237,80,46,.35);
        border-color: rgba(237,80,46,.35);
    }



/* ================= GLOBAL COLOR HERO SYSTEM ================= */

.page-hero {
    background-color: #292929 !important;
    width: 100%;
    height: 45vh;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.page-hero-content {
    max-width: 1000px;
    padding: 0 15px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #ffffff;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    color: #ffffff;
}

.page-hero .btn {
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 0.95rem;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

/* Mobile responsive */
@media(max-width:768px) {
    .page-hero {
        height: 35vh;
    }

        .page-hero h1 {
            font-size: 2.2rem;
        }

        .page-hero p {
            font-size: 1rem;
        }
}

/* Optional premium gradient */
.page-hero.gradient {
    background: linear-gradient(135deg, #292929, #1b1b1b) !important;
}

.topbar {
    background: #292929;
    height: 52px;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
}

.topbar-container {
    width: 100%;
    max-width: 1320px; /* matches Bootstrap container-xl */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .topbar-left a {
        color: #ffffff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
    }

    /* Icons */
    .topbar-left i {
        color: #f4a261;
        margin-right: 10px;
    }

/* Right */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .topbar-right a {
        color: #f4a261;
        font-size: 16px;
        transition: 0.3s;
    }

        .topbar-right a:hover {
            color: #ffffff;
        }

/* ===== Section Background System ===== */

.bg-soft-white {
    background: #ffffff;
}

.bg-light-grey {
    background: #f7f8fa;
}

.bg-warm-grey {
    background: #f2f3f5;
}

.bg-light-sand {
    background: #f9f6f2;
}

.bg-brand-dark {
    background: #292929;
    color: #fff;
}

/* spacing */
.section-pad {
    padding: 90px 0;
}

/* smooth transitions */
.section-bg {
    transition: background-color 0.3s ease;
}
/* ================= MAIN NAVBAR ================= */

.navbar {
    background: #ffffff;
    padding: 18px 30px;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo size */
.navbar-brand img {
    height: 48px;
}

/* ================= MENU ================= */

.navbar-nav {
    gap: 28px;
}

    .navbar-nav .nav-link {
        font-size: 17px;
        font-weight: 500;
        color: #1f2937;
        position: relative;
        padding-bottom: 6px;
        transition: 0.3s;
    }

        /* Hover underline */
        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background: #ff5722;
            transition: 0.3s;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #ff5722;
        }
@media(max-width:991px) {
    .navbar-nav {
        gap: 10px;
        text-align: center;
        padding-top: 15px;
    }
}
/* ================= NAV LINKS ================= */

.navbar-nav .nav-link {
    font-weight: 600;
    color: #1f2937;
    padding: 10px 16px;
    position: relative;
    transition: 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #ff5722;
    }

        /* Active underline */
        .navbar-nav .nav-link.active::after,
        .navbar-nav .nav-link:hover::after {
            content: "";
            position: absolute;
            width: 60%;
            height: 2px;
            background: #ff5722;
            bottom: 2px;
            left: 20%;
            border-radius: 5px;
        }

/* ================= LOGIN BUTTON ================= */

.btn-outline-primary {
    border: 2px solid #ff5722;
    color: #ff5722;
    border-radius: 50px;
    padding: 8px 22px;
    font-weight: 600;
    transition: 0.3s ease;
}

    .btn-outline-primary:hover {
        background: #ff5722;
        color: #fff;
    }

/* ================= CLEAN DROPDOWN ================= */

.navbar .dropdown-menu {
    border: none;
    border-radius: 14px;
    padding: 10px 0;
    margin-top: 12px;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    animation: dropdownFade 0.3s ease;
    pointer-events: auto;
}

/* Smooth animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 22px;
    font-weight: 500;
    color: #1f2937;
    transition: all 0.25s ease;
}

    /* Soft hover — not full orange block */
    .dropdown-item:hover {
        background: #fff2ec;
        color: #ED502E;
        padding-left: 26px;
    }

/* Desktop hover open */
@media (min-width: 992px) {

    .nav-item.dropdown {
        position: relative;
    }

        .nav-item.dropdown .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            margin-top: 0;
            transition: opacity 0.25s ease, transform 0.25s ease;
            transform: translateY(10px);
        }

        .nav-item.dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(6px);
        }
}
/* Remove focus glow from dropdown links */
.dropdown-item:focus {
    background: transparent;
    color: #ED502E;
    box-shadow: none;
}

/* ===============================
   UI CARD SYSTEM – GVR GLOBAL
   =============================== */

.ui-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 34px 30px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    /* Accent line */
    .ui-card::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd, #00c6ff);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    /* Hover animation */
    .ui-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
    }

        .ui-card:hover::before {
            transform: scaleX(1);
        }

    /* Card Title */
    .ui-card h4 {
        font-size: 20px;
        font-weight: 700;
        color: #0b1c39;
        margin-bottom: 12px;
    }

    /* Card Text */
    .ui-card p {
        font-size: 14.5px;
        line-height: 1.7;
        color: #5f6b7a;
        margin: 0;
    }

    /* Optional icon style */
    .ui-card .ui-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: linear-gradient(135deg, #0d6efd, #00c6ff);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 22px;
        margin-bottom: 18px;
        box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
    }

    /* Dark version support (optional future use) */
    .ui-card.dark {
        background: #0f172a;
        border: 1px solid rgba(255,255,255,0.06);
    }

        .ui-card.dark h4 {
            color: #ffffff;
        }

        .ui-card.dark p {
            color: #cbd5e1;
        }

/* Responsive spacing */
@media (max-width: 768px) {
    .ui-card {
        padding: 28px 24px;
    }

        .ui-card h4 {
            font-size: 18px;
        }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* === FORCE COLLAGE SIZE === */
.mining-collage {
    width: 100%;
    max-width: 100%;
    height: 300px; /* 🔑 controls image size */
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    overflow: hidden; /* 🔑 stops overflow */
}

    /* Left big image */
    .mining-collage img:first-child {
        grid-row: span 2;
    }

    /* ALL images */
    .mining-collage img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }
/* Row 1 */
.image-row.single {
    height: 260px; /* controls main image size */
    margin-bottom: 12px;
}

/* Row 2 */
.image-row.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
   
    height: 180px; /* controls bottom images size */
}