:root {
    --primary-color: #f8ae3a;
    --secondary-color: #f8ae3a;
    --background-color: #feebcc;
    --text-color: black;
}


/* * {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
} */

:root {
    --gold: #f8ae3a;
    --gold2: #fdb913;
    --black: #000000;
    --white: #ffffff;
    --bg-gold: #feebcc;
    --text: #111111;
    --muted: #666666;
    --nav-h: 100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none !important;
}


/* Header */

.top-bar {
    display: grid;
    grid-template: 1fr/repeat(2, 1fr);
    background-color: var(--primary-color);
}

.header {
    position: relative;
    z-index: 100;
}

.top-bar {
    position: relative;
    z-index: 200;
}

.left {
    display: flex;
    gap: 10px;
    margin-left: 50px;
}

.left h4 {
    margin-top: 20px;
    color: white;
}

.left img {
    width: 25px;
    height: 25px;
    margin: 15px;
}

.right {
    display: flex;
    gap: 10px;
    margin-left: 100px;
}

.right h4 {
    margin-top: 20px;
    color: white;
}

.right img {
    width: 25px;
    height: 25px;
    margin: 15px;
}

.divider {
    color: black;
}

.bottom-bar {
    display: grid;
    width: 100%;
    height: 100px;
    grid-template-columns: auto 1fr auto;
    justify-content: center;
    align-content: center;
    background-color: black;
    position: relative;
}

.logo {
    margin-left: 100px;
    justify-content: center;
    align-content: center;
    height: 80%;
    width: 150%;
}

li {
    padding-top: 20px;
    font-size: 18px;
    list-style: none;
}

.menus {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-content: center;
}

.menus a {
    color: white !important;
    text-decoration: none;
    padding: 20px;
    font-weight: bold;
}

.menus a:hover {
    text-decoration: none;
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    border-radius: 20px;
    color: black !important;
    padding: 20px;
}

.active {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    border-radius: 20px;
}

.menus a.active {
    color: black !important;
}

.contact-button {
    background-color: var(--primary-color);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
}

.contact-button a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.contact-button a:hover {
    text-decoration: none;
    color: white;
}

.contact {
    margin-right: 100px;
    align-content: center;
}


/* 1. The Container (li) */


/* Essential: This keeps the dropdown anchored to this specific menu item */

li {
    position: relative;
    list-style: none;
    display: inline-block;
    /* Or flex, depending on your nav bar */
}


/* 2. The Main "Business" Link */

.business {
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.business a {
    color: white;
}


/* 3. The Dropdown Menu (Hidden by default) */

.submenu {
    display: none;
    /* Hidden by default */
    position: absolute;
    /* FULL WIDTH MAGIC */
    left: 0;
    width: 100%;
    /* Spans 100% of the .bottom-bar width */
    top: 80px;
    /* Push it down to clear the header height */
    background-color: black;
    /* Deep black/grey background */
    padding: 30px 10%;
    /* 10% side padding to align text with your logo */
    box-sizing: border-box;
    /* Ensures padding doesn't break the width */
    z-index: 999;
    /* Optional: The Gold top border seen in some designs */
    /* Layout: 2 Columns like the screenshot */
    grid-template-columns: 250px 250px;
    gap: 15px;
    align-content: center;
    justify-content: center;
    border-top: 2px solid #fdb913;
}


/* 4. The Hover Effect ( The Trigger ) */


/* When you hover the 'li', display the '.submenu' as a grid */

li:hover .submenu {
    display: grid;
}


/* Keep the main "Business" link yellow while the menu is open */

li:hover .business {
    color: var(--primary-color);
}


/* 5. Styling the Links INSIDE the dropdown */

.submenu a {
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.2s;
    font-weight: bold;
}


/* Hover color for the dropdown items */

.submenu a:hover {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff);
    width: fit-content;
    padding: 15px;
    color: black !important;
    border-radius: 20px;
    /* Gold/Yellow accent */
}

.menus li {
    position: static;
}


/* Header Mobile view */


/* =========================
MOBILE OFFCANVAS MENU
========================= */

.mb-menu {
    display: none;
}


/* Hamburger */

.menu-btn {
    width: 30px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    height: 3px;
    background: white;
    margin: 6px 0;
}


/* Overlay - Fixed to prevent body scroll */

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.offcanvas-overlay.mactive {
    opacity: 1;
    visibility: visible;
}


/* Offcanvas Menu - Fixed positioning and scrolling */

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    /* Full viewport height */
    background-color: var(--primary-color);
    z-index: 1001;
    transition: left 0.4s ease;
    overflow: hidden;
    /* Prevent outer scroll */
    display: flex;
    flex-direction: column;
}

.offcanvas-menu.mactive {
    left: 0;
}


/* Header */

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-shrink: 0;
    /* Prevent header from scrolling */
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-header img {
    width: 150px;
}

.close-btn {
    font-size: 28px;
    color: white;
    cursor: pointer;
    line-height: 0.6;
    padding: 8px;
    background: black;
    border-radius: 100%;
}


/* Links Container - This is the scrollable part */

.offcanvas-links {
    list-style: none;
    margin: 0;
    padding: 20px;
    flex: 1;
    /* Take remaining space */
    overflow-y: auto;
    /* Enable vertical scroll ONLY on menu items */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    display: flex;
    flex-direction: column;
}

.has-submenu {
    overflow: visible;
}


/* Custom scrollbar for offcanvas menu */

.offcanvas-links::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-links::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.offcanvas-links::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.offcanvas-links::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.offcanvas-links li {
    margin-top: -20px;
}

.offcanvas-links a,
.submenu-toggle {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    padding: 10px 0;
}


/* Prevent body scroll when menu is open */

body.menu-open {
    overflow: hidden;
    position: fixed;
}


/* Submenu */

.mobile-submenu {
    display: none;
    margin-top: 10px;
    padding-left: 15px;
    overflow: scroll;
}

.mobile-submenu.mactive {
    display: block;
}

.mobile-submenu li {
    display: flex;
    flex-direction: column;
}

.mobile-submenu li a {
    font-size: 14px;
    font-weight: normal;
    color: black;
    padding: 8px 0;
}


/* Contact Button */

.contact-mobile {
    background: black;
    color: white !important;
    padding: 10px;
    border-radius: 20px;
    margin-top: 10px;
    text-align: center;
}


/* MOBILE ONLY */

@media (max-width: 768px) {
    .menus,
    .contact {
        display: none;
    }
    .mb-menu {
        display: block;
        position: absolute;
        right: 30px;
        top: 35px;
    }
    .top-bar {
        display: none;
    }
    .bottom-bar {
        display: flex;
        flex-direction: row;
        margin-top: -50px;
        ;
    }
    .logo {
        margin-right: 300px;
        height: 100px;
        width: 150px;
    }
}


/* Body */


/* video */

.video-section {
    margin-top: -100px;
}

.video {
    overflow: hidden;
    height: 800px;
    width: 100%;
    object-fit: cover;
    margin-top: -120px;
}

.rhinogroup-container {
    background-color: white;
    width: 100%;
    align-content: center;
    text-align: center;
    justify-content: center;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    margin-top: -150px;
    margin-bottom: 50px;
}

.rhinogroup-container p {
    line-height: 2em;
    font-size: 20px;
}

.rhinogroup-container h1 {
    font-weight: bold;
    font-size: 26px;
    line-height: 1.5em;
}

.know-more-btn {
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 30px;
}

.know-more-btn a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.know-more-btn a:hover {
    text-decoration: none;
    color: white;
}


/* Mobile video */

@media (max-width: 768px) {
    .video-container {
        width: 100%;
    }
    .video {
        overflow: hidden;
        height: 200%;
        width: 100%;
        margin-top: 100px;
    }
    .rhinogroup-container {
        margin-top: 20px;
    }
}


/* ══════════════════════════════════
       HERO SECTION
    ══════════════════════════════════ */

.hero {
    min-height: calc(100vh - var(--nav-h) - 56px);
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(248, 174, 58, 0.06);
    top: -150px;
    right: -150px;
    animation: spin 20s linear infinite;
    pointer-events: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 174, 58, 0.12);
    border: 1px solid rgba(248, 174, 58, 0.3);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards 0.3s;
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.75s ease forwards 0.5s;
}

.hero-title .gold {
    color: var(--gold);
}

.hero-title .line {
    display: block;
}

.hero-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards 0.7s;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards 0.9s;
}

.btn-primary {
    background: var(--gold) !important;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(248, 174, 58, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(248, 174, 58, 0.5);
}

.btn-primary a {
    color: inherit;
    text-decoration: none !important;
}

.btn-primary a:hover {
    color: inherit;
    text-decoration: none !important;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 14px 30px;
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(248, 174, 58, 0.06);
}

.btn-outline a {
    color: inherit;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease forwards 1.1s;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-num {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* ═══════════════════════════════════
       GLOBAL PRESENCE MAP SECTION
    ═══════════════════════════════════ */

.hero-right {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(248, 174, 58, 0.25);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.6);
}


/* Header bar */

.map-topbar {
    background: rgba(8, 8, 8, 0.95);
    border-bottom: 1px solid rgba(248, 174, 58, 0.2);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 500;
}

.map-topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseLive 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseLive {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }
}

.map-topbar-title {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.map-topbar-right {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
}

.map-topbar-right span {
    color: var(--gold);
    font-weight: 700;
}


/* Leaflet map container */

#rhino-map {
    width: 100%;
    height: 320px;
    background: #0a0e1a;
}


/* Override Leaflet styles for dark theme */

.leaflet-container {
    background: #0a0e1a !important;
    font-family: 'Poppins', sans-serif;
}

.leaflet-tile-pane {
    filter: invert(1) hue-rotate(180deg) saturate(0.3) brightness(0.5);
}


/* Custom popup */

.leaflet-popup-content-wrapper {
    background: rgba(10, 10, 10, 0.96) !important;
    border: 1px solid rgba(248, 174, 58, 0.4) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
    padding: 0 !important;
}

.leaflet-popup-tip {
    background: rgba(248, 174, 58, 0.4) !important;
}

.leaflet-popup-close-button {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 18px !important;
    top: 8px !important;
    right: 8px !important;
}

.leaflet-popup-close-button:hover {
    color: var(--gold) !important;
}

.leaflet-popup-content {
    margin: 0 !important;
    width: auto !important;
}

.rhino-popup {
    padding: 14px 18px;
    min-width: 160px;
}

.rhino-popup-flag {
    font-size: 20px;
    margin-bottom: 6px;
}

.rhino-popup-city {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2px;
}

.rhino-popup-role {
    font-size: 10px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.rhino-popup-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}


/* Bottom stats strip */

.map-bottombar {
    background: rgba(8, 8, 8, 0.97);
    border-top: 1px solid rgba(248, 174, 58, 0.15);
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 500;
}

.mstat {
    text-align: center;
    flex: 1;
}

.mstat+.mstat {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.mstat-num {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.mstat-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 3px;
}


/* Location list below map */

.location-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.loc-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(248, 174, 58, 0.2);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.loc-chip:hover,
.loc-chip.hq {
    background: rgba(248, 174, 58, 0.12);
    border-color: rgba(248, 174, 58, 0.5);
    color: var(--gold);
}

.loc-chip .chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(248, 174, 58, 0.5);
    flex-shrink: 0;
}

.loc-chip.hq .chip-dot {
    background: var(--gold);
    animation: pulse 1.6s ease-in-out infinite;
}


/* MARQUEE */

.marquee-strip {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 22s linear infinite;
}

.marquee-track span {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 28px;
}

.marquee-track .sep {
    color: rgba(0, 0, 0, 0.35);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* Key Business */


/* ── BUSINESS VERTICALS ── */

.verticals-section {
    background: #f9f6f1;
    padding: 80px 80px;
}

.verticals-header {
    margin-bottom: 50px;
}

.verticals-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.verticals-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: #111;
    margin: 8px 0 14px;
}

.verticals-desc {
    font-size: 15px;
    color: #666;
    max-width: 480px;
    line-height: 1.7;
}


/* Grid: 3 columns, last card spans full row center */

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* Last card (7th) centered */

.vertical-card:last-child {
    grid-column: 2 / 3;
}

.vertical-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    cursor: pointer;
}

.vertical-card:hover {
    box-shadow: 0 12px 40px rgba(248, 174, 58, 0.18);
    transform: translateY(-4px);
    border-color: rgba(248, 174, 58, 0.4);
}


/* Image box */

.vertical-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 15px;
}

.vertical-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.vertical-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}


/* Mobile */

@media (max-width: 768px) {
    .verticals-section {
        padding: 60px 20px;
    }
    .verticals-grid {
        grid-template-columns: 1fr;
    }
    .vertical-card:last-child {
        grid-column: 1;
    }
}


/* Leadership */

.leadership-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.leadership-container {
    display: grid;
    grid-template: 1fr/repeat(3, 1fr);
    align-content: center;
    justify-items: center;
    background-color: #f9f6f1;
    padding: 70px;
}

.leadership-card-1 {
    background-color: var(--background-color);
    height: 430px;
    width: 300px;
    padding: 30px;
    border-radius: 20px;
}

.leadership-card-1 img {
    border-radius: 100%;
    height: 100px;
    width: 100px;
    margin-left: 75px;
    ;
}

.leadership-card-1 h4 {
    text-align: center;
}

.leadership-card-1 p {
    text-align: center;
    padding: 20px;
    overflow-y: auto;
    height: 120px;
}

.know-more-btn2 {
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 30px;
    margin-left: 60px;
    margin-top: 30px;
}

.know-more-btn2 a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.know-more-btn2 a:hover {
    text-decoration: none;
    color: white;
}

.leadership-card-2 {
    background-color: var(--background-color);
    height: 200px;
    width: 300px;
    padding: 20px;
    border-radius: 20px;
}

.leadership-card-2 img {
    border-radius: 100%;
    height: 100px;
    width: 100px;
    margin-left: 75px;
    ;
}

.leadership-card-2 h4 {
    text-align: center;
}

.leadership-card-2 h5 {
    text-align: center;
}

.leadership-smallcard {
    display: grid;
    grid-template: 2fr/repeat(2, 1fr);
    align-content: center;
    justify-items: center;
    gap: 20px;
}


/* Mobile Leadership */

@media (max-width: 768px) {
    .leadership-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
        gap: 20px;
        background-color: #f9f6f1;
    }
    .leadership-smallcard {
        display: grid;
        grid-template: 2fr/repeat(2, 1fr);
        align-content: center;
        justify-items: center;
        gap: 10px;
        padding-left: 50px;
        padding-right: 50px;
    }
    .leadership-card-2 {
        background-color: var(--background-color);
        height: 200px;
        width: 180px;
    }
    .leadership-card-2 img {
        border-radius: 100%;
        height: 100px;
        width: 100px;
        margin-left: 20px;
    }
}


/* video carousel */

.news-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    color: black;
}


/* ===== DESKTOP LAYOUT ===== */

.video-carousel-section {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px 80px;
}


/* Arrows */

.left-arrow,
.right-arrow {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-arrow img,
.right-arrow img {
    width: 20px;
    height: 20px;
}


/* Carousel */

.video-carousel-section {
    background-color: #f9f6f1;
}

.video-carousel-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.video-carousel-container::-webkit-scrollbar {
    display: none;
}


/* Video card */

.video-item {
    min-width: 360px;
    aspect-ratio: 16 / 9;
    scroll-snap-align: center;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}


/* iframe */

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ===== MOBILE FIX ===== */

@media (max-width: 768px) {
    .video-carousel-section {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 40px;
        position: relative;
    }
    .video-carousel-container {
        padding: 0 16px;
    }
    .video-item {
        min-width: 100%;
    }
    .left-arrow,
    .right-arrow {
        width: 35px;
        height: 35px;
        margin: auto;
        background-color: unset;
    }
    .left-arrow {
        position: absolute;
        top: 120px;
        left: 0px;
    }
    .right-arrow {
        position: absolute;
        top: 120px;
        right: 0px;
    }
    .left-arrow img,
    .right-arrow img {
        width: 18px;
        height: 18px;
    }
}


/* Tech Media Blog */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

 :root {
    --gold: #f8ae3a;
    --gold-dim: rgba(248, 174, 58, .18);
    --gold-dim2: rgba(248, 174, 58, .08);
    --dark: #0d0d0d;
    --card-bg: #ffffff;
    --tag-bg: rgba(248, 174, 58, .13);
    --tag-border: rgba(248, 174, 58, .35);
    --muted: #888;
    --section-bg: #f7f4ef;
    --radius: 18px;
    --trans: 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--section-bg);
    color: var(--dark);
}


/* ─── SECTION HEADER ─── */

.section-header {
    text-align: center;
    margin-top: 50px;
    padding: 0 24px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    background: black;
    border: 1px solid var(--tag-border);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 18px;
}

.section-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .3;
        transform: scale(.6);
    }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}


/* ─── CAROUSEL SHELL ─── */

.carousel-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0 20px;
}


/* Fade edges */

.carousel-shell::before,
.carousel-shell::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.carousel-shell::before {
    left: 0;
    background: linear-gradient(to right, var(--section-bg) 0%, transparent 100%);
}

.carousel-shell::after {
    right: 0;
    background: linear-gradient(to left, var(--section-bg) 0%, transparent 100%);
}


/* ─── TRACK ─── */

.carousel-track {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 0 30px;
    will-change: transform;
    transition: transform var(--trans);
    cursor: grab;
    user-select: none;
}

.carousel-track.grabbing {
    cursor: grabbing;
    transition: none;
}


/* ─── CARD ─── */

.news-card {
    flex: 0 0 360px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans), border-color var(--trans);
    opacity: .38;
    transform: scale(.86) translateY(10px);
    pointer-events: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    box-shadow: 0 24px 64px rgba(248, 174, 58, .22), 0 8px 28px rgba(0, 0, 0, .12);
    border-color: rgba(248, 174, 58, .4);
    z-index: 5;
    background: #ffffff !important;
}

.news-card.side {
    opacity: .62;
    transform: scale(.93) translateY(5px);
    pointer-events: auto;
}


/* Gold top accent on active */

.news-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #ffd580);
    z-index: 2;
}


/* ─── CARD IMAGE ─── */

.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
    flex-shrink: 0;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
    pointer-events: none;
    -webkit-user-drag: none;
    padding-top: 20px;
}

.news-card.active .card-img-wrap img {
    transform: scale(1.05);
}


/* Image overlay shimmer */

.card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
}


/* ─── CARD BODY ─── */

.card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    background: #ffffff !important;
}


/* Meta row */

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--tag-bg);
    color: #b07800;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid var(--tag-border);
    white-space: nowrap;
}

.card-date {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.04em;
}


/* Title */

.card-title {
    font-family: 'Lato', sans-serif;
    font-size: 15.5px;
    font-weight: 900;
    color: #111;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Excerpt */

.card-excerpt {
    font-size: 12.5px;
    color: #666;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}


/* Divider */

.card-divider {
    height: 1px;
    background: #f0ece5;
    margin: 2px 0;
}


/* CTA */

.card-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.cta-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--tag-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, transform .25s;
    flex-shrink: 0;
}

.cta-arrow svg {
    display: block;
}

.news-card.active:hover .cta-arrow {
    background: var(--gold);
    transform: translateX(4px);
}

.news-card.active:hover .cta-arrow svg path {
    stroke: #000;
}


/* ─── NAV BUTTONS ─── */

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(248, 174, 58, .4);
    background: #fff;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, border-color .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(248, 174, 58, .4);
}

.nav-btn:hover svg path {
    stroke: #000;
}

.nav-btn:active {
    transform: scale(.95);
}


/* ─── DOTS ─── */

.dot-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width .38s cubic-bezier(.25, .46, .45, .94), background .3s, border-radius .3s, transform .2s;
}

.dot:hover {
    background: rgba(248, 174, 58, .5);
    transform: scale(1.3);
}

.dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--gold);
    transform: scale(1);
}


/* ─── PROGRESS BAR ─── */

.progress-wrap {
    width: 160px;
    height: 2px;
    background: rgba(0, 0, 0, .1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 8px;
}

.progress-bar {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: width .45s ease;
}


/* ─── MOBILE ─── */

@media (max-width: 640px) {
    body {
        padding: 50px 0 70px;
    }
    .carousel-shell::before,
    .carousel-shell::after {
        width: 30px;
    }
    .news-card {
        flex: 0 0 calc(100vw - 56px);
        opacity: .5;
        transform: scale(.92);
    }
    .news-card.active {
        opacity: 1;
        transform: scale(1);
    }
    .news-card.side {
        opacity: .5;
        transform: scale(.92) translateY(0);
    }
    .nav-btn {
        width: 42px;
        height: 42px;
    }
    .progress-wrap {
        width: 80px;
    }
    .carousel-nav {
        display: none;
    }
}


/* History */

.history-container {
    display: grid;
    grid-template: 1fr/repeat(2, 1fr);
    align-content: center;
    justify-items: center;
    background-image: url(http://localhost:5500/banners-images/home/history.jpg);
    height: 400px;
}

.history-left {
    color: white;
    margin-top: 200px;
}

.history-right p {
    color: white;
    margin-top: 200px;
    text-align: center;
    overflow: hidden;
    margin-left: -100px;
}

.know-more-btnh {
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 30px;
    margin-left: 280px;
}

.know-more-btnh a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.know-more-btnh a:hover {
    text-decoration: none;
    color: white;
}


/* mobile history section  */

@media (max-width: 768px) {
    .history-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
        background-image: url(https://ibb.co/Dg5yVdkW);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .history-left {
        text-align: center;
        margin-top: 70px;
    }
    .history-left h2 {
        margin-top: 40px;
    }
    .history-right {
        text-align: center;
        margin-top: -200px;
        padding: 20px;
    }
    .know-more-btnh {
        margin-left: 0px;
        margin-top: 20px;
    }
    .history-right p {
        margin-left: 10px;
    }
}


/* Footer */

.footer {
    background-color: black;
}

.footer-container {
    padding: 50px;
    display: grid;
    grid-template: 1fr/repeat(4, 1fr);
    align-content: center;
    justify-content: center;
    gap: 30px;
}

.about-company h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.about-company p {
    color: white;
    line-height: 2em;
    width: 300px;
}

.about-company img {
    height: 100px;
    width: 200px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.our-business h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.quick-links {
    margin-left: 50px;
    ;
}

.quick-links h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.links li {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.links li a {
    color: white;
    text-decoration: none;
}

li a:hover {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    color: black;
    padding: 10px;
    border-radius: 20px;
    font-weight: bold;
}

.contact-details h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.contact-details li {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: white;
}

.contact-details li img {
    height: 20px;
    width: 20px;
    margin-top: 5px;
}

.contact-details li p {
    color: white;
}

.copyright p {
    color: white;
    margin-left: 600px;
    padding-bottom: 30px;
}

.mobile-copyright {
    color: #f8ae3a;
}


/* Mobile Footer */

@media (max-width: 768px) {
    .footer-container {
        display: grid;
        grid-template: 4fr/ 1fr;
        padding: 50px;
    }
    .about-company {
        text-align: center;
    }
    .about-company h3 {
        margin-left: 90px;
    }
    .about-company p {
        font-size: 18px;
        margin-left: 30px;
    }
    .our-business li {
        font-size: 15px;
        padding-left: 20px;
    }
    .quick-links {
        margin-left: 150px;
        margin-top: -365px;
    }
    .quick-links h3 {
        margin-left: 50px;
        white-space: nowrap;
    }
    .quick-links li {
        margin-left: 100px;
        font-size: 15px;
    }
    .contact-details {
        margin-top: -20px;
        padding-left: 20px;
    }
    .contact-details h3 {
        margin-left: 20px;
    }
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .copyright {
        display: none;
    }
    .mobile-copyright p {
        color: white;
        padding: 10px;
    }
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .hero {
        padding: 60px 50px;
    }
    .services {
        padding: 80px 60px;
    }
    .businesses {
        padding: 80px 60px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .biz-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 48px 24px 52px;
        gap: 40px;
    }
    .hero::before {
        display: none;
    }
    .hero-left {
        order: 2;
    }
    .hero-right {
        order: 1;
    }
    .hero-desc {
        max-width: 100%;
    }
    .hero-stats {
        justify-content: flex-start;
        gap: 20px;
    }
    #rhino-map {
        height: 240px;
    }
    .services {
        padding: 64px 24px;
    }
    .businesses {
        padding: 64px 24px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .biz-grid {
        grid-template-columns: 1fr;
    }
}