 /* ─── ROOT VARIABLES ─────────────────────────────────── */
      :root {
        --primary: #fccf3a;
        --primary-dark: #c27f00;
        --primary-light: #ffd34e;
        --dark: #0d1117;
        --dark-2: #161b22;
        --dark-3: #21262d;
        --text-light: #e6edf3;
        --text-muted: #8b949e;
        --white: #ffffff;
        --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        --radius: 12px;
        --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
        --shadow-gold: 0 8px 30px rgba(232, 160, 0, 0.3);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Inter", sans-serif;
        background: var(--dark);
        color: var(--text-light);
        overflow-x: hidden;
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: "Poppins", sans-serif;
      }

      /* ─── SCROLLBAR ──────────────────────────────────────── */
      ::-webkit-scrollbar { width: 6px; }
      ::-webkit-scrollbar-track { background: var(--dark-2); }
      ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

      /* ─── NAVBAR ─────────────────────────────────────────── */
      .navbar {
        background: rgba(13, 17, 23, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(232, 160, 0, 0.15);
        padding: 14px 0;
        transition: all var(--transition);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1050;
      }

      .navbar.scrolled {
        padding: 8px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-bottom-color: rgba(232, 160, 0, 0.3);
      }

      .navbar-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
      }

      .brand-logo {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        object-fit: cover;
        border: 2px solid var(--primary);
      }

      .brand-text {
        line-height: 1.1;
      }

      .brand-name {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        color: var(--primary);
        letter-spacing: 0.5px;
      }

      .brand-sub {
        font-size: 0.68rem;
        color: var(--text-muted);
        letter-spacing: 1.5px;
        text-transform: uppercase;
      }

      .navbar-toggler {
        border: 1px solid rgba(232, 160, 0, 0.4);
        padding: 6px 10px;
      }

      .navbar-toggler-icon {
        filter: invert(1);
      }

      .nav-link {
        color: var(--text-light) !important;
        font-weight: 500;
        font-size: 0.88rem;
        letter-spacing: 0.3px;
        padding: 6px 16px !important;
        position: relative;
        transition: color var(--transition);
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: width var(--transition);
      }

      .nav-link:hover,
      .nav-link.active {
        color: var(--primary) !important;
      }

      .nav-link:hover::after,
      .nav-link.active::after {
        width: 60%;
      }

      .nav-cta {
        background: var(--primary);
        color: var(--dark) !important;
        border-radius: 8px;
        font-weight: 700;
        padding: 7px 20px !important;
        margin-left: 8px;
        transition: background var(--transition), box-shadow var(--transition);
      }

      .nav-cta::after { display: none; }

      .nav-cta:hover {
        background: var(--primary-light) !important;
        color: var(--dark) !important;
        box-shadow: var(--shadow-gold);
      }

      /* ─── HERO SLIDER ────────────────────────────────────── */
      #heroSlider {
        margin-top: 74px;
      }

      .hero-slide {
        position: relative;
        height: 100vh;
        min-height: 560px;
        display: flex;
        align-items: center;
        overflow: hidden;
      }

      .slide-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
      }

      .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          120deg,
          rgba(13, 17, 23, 0.88) 0%,
          rgba(13, 17, 23, 0.5) 60%,
          rgba(13, 17, 23, 0.2) 100%
        );
      }

      .slide-content {
        position: relative;
        z-index: 2;
      }

      .slide-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(232, 160, 0, 0.15);
        border: 1px solid rgba(232, 160, 0, 0.4);
        color: var(--primary);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 18px;
      }

      .slide-badge i {
        font-size: 0.7rem;
        animation: pulse-dot 2s infinite;
      }

      @keyframes pulse-dot {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
      }

      .hero-title {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.15;
        color: var(--white);
        margin-bottom: 16px;
      }

      .hero-title span {
        color: var(--primary);
        position: relative;
      }

      .hero-sub {
        font-size: clamp(0.95rem, 2vw, 1.15rem);
        color: rgba(230, 237, 243, 0.75);
        max-width: 520px;
        line-height: 1.7;
        margin-bottom: 32px;
      }

      .hero-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
      }

      .btn-gold {
        background: var(--primary);
        color: var(--dark);
        font-weight: 700;
        border-radius: 10px;
        padding: 13px 30px;
        border: none;
        transition: all var(--transition);
        font-size: 0.9rem;
        letter-spacing: 0.3px;
      }

      .btn-gold:hover {
        background: var(--primary-light);
        box-shadow: var(--shadow-gold);
        transform: translateY(-2px);
        color: var(--dark);
      }

      .btn-outline-gold {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        font-weight: 700;
        border-radius: 10px;
        padding: 11px 28px;
        transition: all var(--transition);
        font-size: 0.9rem;
      }

      .btn-outline-gold:hover {
        background: var(--primary);
        color: var(--dark);
        box-shadow: var(--shadow-gold);
        transform: translateY(-2px);
      }

      /* Slider stats bar */
      .hero-stats {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background: rgba(13, 17, 23, 0.85);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(232, 160, 0, 0.15);
      }

      .stat-item {
        padding: 18px 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        text-align: center;
      }

      .stat-item:last-child { border-right: none; }

      .stat-number {
        font-family: "Poppins", sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 4px;
      }

      .stat-label {
        font-size: 0.72rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* Carousel controls */
      .carousel-control-prev,
      .carousel-control-next {
        width: 52px;
        height: 52px;
        background: rgba(232, 160, 0, 0.15);
        border: 1px solid rgba(232, 160, 0, 0.35);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 16px;
        opacity: 1;
        transition: all var(--transition);
      }

      .carousel-control-prev { left: 0; }
      .carousel-control-next { right: 0; }

      .carousel-control-prev:hover,
      .carousel-control-next:hover {
        background: var(--primary);
      }

      .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        margin: 0 5px;
        transition: all var(--transition);
      }

      .carousel-indicators .active {
        background: var(--primary);
        width: 28px;
        border-radius: 4px;
      }

      /* ─── SECTION COMMON ─────────────────────────────────── */
      section {
        padding: 90px 0;
      }

      .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary);
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
      }

      .section-tag::before {
        content: "";
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
      }

      .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.25;
        margin-bottom: 16px;
      }

      .section-title span { color: var(--primary); }

      .section-desc {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.75;
      }

      /* Gold divider */
      .gold-line {
        width: 48px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light));
        border-radius: 2px;
        margin: 16px 0 28px;
      }

      /* ─── ABOUT US ───────────────────────────────────────── */
      #about {
       background: var(--dark);
      }

      .about-img-wrap {
        position: relative;
      }

      .about-img-main {
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
      }

      .about-img-badge {
        position: absolute;
        bottom: -20px;
        right: -16px;
        background: var(--primary);
        color: var(--dark);
        border-radius: var(--radius);
        padding: 18px 22px;
        text-align: center;
        box-shadow: var(--shadow-gold);
      }

      .badge-num {
        font-family: "Poppins", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        line-height: 1;
        display: block;
      }

      .badge-txt {
        font-size: 0.72rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .about-feature {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 22px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius);
        transition: all var(--transition);
      }

      .about-feature:hover {
        background: rgba(232, 160, 0, 0.06);
        border-color: rgba(232, 160, 0, 0.2);
        transform: translateX(4px);
      }

      .feature-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        background: rgba(232, 160, 0, 0.1);
        border: 1px solid rgba(232, 160, 0, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1rem;
      }

      .feature-text h6 {
        color: var(--text-light);
        font-weight: 600;
        margin-bottom: 4px;
        font-size: 0.92rem;
      }

      .feature-text p {
        color: var(--text-muted);
        font-size: 0.82rem;
        line-height: 1.6;
        margin: 0;
      }

      /* ─── SERVICES STRIP ─────────────────────────────────── */
      .sales-team-detail{
        background: rgba(232, 160, 0, 0.1);
        border: 1px solid rgba(232, 160, 0, 0.2);
        border-radius: var(--radius);
        padding: 18px;
        margin-top: 16px;
        width: 100%;
      }
      .employee{
        color: var(--primary);
      }
      #services {
        background: var(--dark);
        padding: 70px 0;
      }
.main-map{
    border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 240px;
}
      .service-card {
        background: var(--dark-2);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius);
        padding: 32px 24px;
        text-align: center;
        transition: all var(--transition);
        height: 100%;
        position: relative;
        overflow: hidden;
      }

      .service-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light));
        transform: scaleX(0);
        transition: transform var(--transition);
      }

      .service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(232, 160, 0, 0.25);
        box-shadow: var(--shadow-gold);
      }

      .service-card:hover::before { transform: scaleX(1); }

      .service-icon {
        width: 64px;
        height: 64px;
        background: rgba(232, 160, 0, 0.1);
        border: 1px solid rgba(232, 160, 0, 0.2);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--primary);
        margin: 0 auto 18px;
        transition: all var(--transition);
      }

      .service-card:hover .service-icon {
        background: var(--primary);
        color: var(--dark);
        border-color: var(--primary);
      }

      .service-card h5 {
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 10px;
        font-size: 1rem;
      }

      .service-card p {
        color: var(--text-muted);
        font-size: 0.83rem;
        line-height: 1.65;
        margin: 0;
      }

      /* ─── OFFICES ─────────────────────────────────────────── */
      #offices {
        background: var(--dark-2);
      }

      .office-card {
        background: var(--dark-3);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: var(--radius);
        overflow: hidden;
        transition: all var(--transition);
        height: 100%;
      }

      .office-card:hover {
        transform: translateY(-6px);
        border-color: rgba(232, 160, 0, 0.3);
        box-shadow: var(--shadow-gold);
      }

      .office-img-wrap {
        position: relative;
        height: 200px;
        overflow: hidden;
      }

      .office-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .office-card:hover .office-img-wrap img {
        transform: scale(1.07);
      }

      .office-img-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--primary);
      }

      .office-flag {
        position: absolute;
        top: 14px;
        right: 14px;
        background: rgba(13, 17, 23, 0.85);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(232, 160, 0, 0.3);
        border-radius: 8px;
        padding: 6px 12px;
        font-size: 1.2rem;
        line-height: 1;
      }

      .office-body {
        padding: 22px;
      }

      .office-country {
        color: var(--primary);
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
      }

      .office-body h4 {
        font-weight: 700;
        color: var(--text-light);
        font-size: 1rem;
        margin-bottom: 14px;
      }

      .office-detail {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 0.82rem;
        color: var(--text-muted);
      }

      .office-detail i {
        color: var(--primary);
        margin-top: 2px;
        min-width: 14px;
      }

      .office-badge {
        display: inline-block;
        background: rgba(232, 160, 0, 0.1);
        color: var(--primary);
        border: 1px solid rgba(232, 160, 0, 0.2);
        border-radius: 50px;
        padding: 3px 12px;
        font-size: 0.72rem;
        font-weight: 600;
        margin-top: 14px;
      }

      /* ─── CONTACT ────────────────────────────────────────── */
      #contact {
        background: var(--dark);
      }

      .contact-info-card {
        background: var(--dark-2);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: var(--radius);
        padding: 28px 24px;
        height: 100%;
      }

      .contact-item-row {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .contact-item-row:last-child { border-bottom: none; }

      .ci-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        background: rgba(232, 160, 0, 0.1);
        border: 1px solid rgba(232, 160, 0, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 0.95rem;
      }

      .ci-text label {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        margin-bottom: 3px;
        font-weight: 600;
      }

      .ci-text span, .ci-text a {
        font-size: 0.9rem;
        color: var(--text-light);
        text-decoration: none;
        transition: color var(--transition);
      }

      .ci-text a:hover { color: var(--primary); }

      /* Contact form */
      .contact-form-card {
        background: var(--dark-2);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: var(--radius);
        padding: 32px;
      }

      .form-label {
        color: var(--text-muted);
        font-size: 0.82rem;
        font-weight: 500;
        margin-bottom: 6px;
      }

      .form-control, .form-select {
        background: var(--dark-3);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--text-light);
        border-radius: 10px;
        padding: 11px 16px;
        font-size: 0.9rem;
        transition: border-color var(--transition), box-shadow var(--transition);
      }

      .form-control:focus, .form-select:focus {
        background: var(--dark-3);
        color: var(--text-light);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(232, 160, 0, 0.12);
        outline: none;
      }

      .form-control::placeholder { color: var(--text-muted); }

      .form-select option { background: var(--dark-3); }

      textarea.form-control { resize: none; }

      /* Map embed */
      .map-wrap {
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.07);
        height: 240px;
      }

      .map-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: invert(90%) hue-rotate(180deg);
      }

      /* ─── FOOTER ─────────────────────────────────────────── */
      footer {
        background: var(--dark-2);
        border-top: 1px solid rgba(232, 160, 0, 0.15);
        padding: 64px 0 0;
      }

      .footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }

      .footer-logo {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        object-fit: cover;
        border: 2px solid var(--primary);
      }

      .footer-brand-name {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        color: var(--primary);
      }

      .footer-brand-sub {
        font-size: 0.7rem;
        color: var(--text-muted);
        letter-spacing: 1px;
        text-transform: uppercase;
      }

      .footer-desc {
        color: var(--text-muted);
        font-size: 0.85rem;
        line-height: 1.75;
        margin-bottom: 22px;
      }

      .social-links {
        display: flex;
        gap: 10px;
      }

      .social-link {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 0.85rem;
        transition: all var(--transition);
        text-decoration: none;
      }

      .social-link:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--dark);
        transform: translateY(-3px);
      }

      .footer-heading {
        font-family: "Poppins", sans-serif;
        color: var(--text-light);
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-heading::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--text-muted);
        font-size: 0.85rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all var(--transition);
      }

      .footer-links a i {
        font-size: 0.65rem;
        color: var(--primary);
        transition: transform var(--transition);
      }

      .footer-links a:hover {
        color: var(--primary);
        padding-left: 4px;
      }

      .footer-links a:hover i { transform: translateX(3px); }

      .footer-contact-item {
        display: flex;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 0.83rem;
        color: var(--text-muted);
      }

      .footer-contact-item i {
        color: var(--primary);
        margin-top: 2px;
        min-width: 14px;
      }

      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 18px 0;
        margin-top: 48px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
      }

      .footer-bottom p {
        color: var(--text-muted);
        font-size: 0.8rem;
        margin: 0;
      }

      .footer-bottom span { color: var(--primary); }

      /* ─── ANIMATION UTILITIES ────────────────────────────── */
      .fade-up {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.65s ease, transform 0.65s ease;
      }

      .fade-left {
        opacity: 0;
        transform: translateX(-32px);
        transition: opacity 0.65s ease, transform 0.65s ease;
      }

      .fade-right {
        opacity: 0;
        transform: translateX(32px);
        transition: opacity 0.65s ease, transform 0.65s ease;
      }

      .fade-up.visible,
      .fade-left.visible,
      .fade-right.visible {
        opacity: 1;
        transform: translate(0);
      }

      .delay-1 { transition-delay: 0.1s; }
      .delay-2 { transition-delay: 0.2s; }
      .delay-3 { transition-delay: 0.3s; }
      .delay-4 { transition-delay: 0.4s; }
      .delay-5 { transition-delay: 0.5s; }

      /* ─── BACK TO TOP ────────────────────────────────────── */
      #backToTop {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 44px;
        height: 44px;
        background: var(--primary);
        color: var(--dark);
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(16px);
        transition: all var(--transition);
        z-index: 999;
        box-shadow: var(--shadow-gold);
      }

      #backToTop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      #backToTop:hover {
        background: var(--primary-light);
        transform: translateY(-3px);
      }

      /* ─── RESPONSIVE TWEAKS ──────────────────────────────── */
      @media (max-width: 991px) {
        section { padding: 70px 0; }
        .about-img-badge { right: 0; bottom: -16px; }
        .hero-stats .row { overflow-x: auto; flex-wrap: nowrap; }
      }

      @media (max-width: 767px) {
        section { padding: 56px 0; }
        .hero-slide { min-height: 640px; }
        .stat-item { padding: 14px 18px; }
        .stat-number { font-size: 1.3rem; }
        .about-img-main { height: 280px; }
        .about-img-badge { position: static; margin: 16px auto 0; display: block; width: max-content; }
        .contact-form-card { padding: 22px; }
        .footer-bottom { flex-direction: column; text-align: center; }
      }

      /* Slide backgrounds — real images with Ken Burns zoom */
      .slide-1-bg {
        background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&q=80');
        background-size: cover;
        background-position: center 40%;
      }

      .slide-2-bg {
        background-image: url('https://images.unsplash.com/photo-1621007947382-bb3c3994e3fb?w=1920&q=80');
        background-size: cover;
        background-position: center center;
      }

      .slide-3-bg {
        background-image: url('https://images.unsplash.com/photo-1549924231-f129b911e442?w=1920&q=80');
        background-size: cover;
        background-position: center 60%;
      }

      /* Ken Burns zoom on active slide */
      .carousel-item .slide-bg {
        transform: scale(1.08);
        transition: transform 7s ease;
      }
      .carousel-item.active .slide-bg {
        transform: scale(1);
      }

      /* Office image backgrounds */
      .office-zambia { background: linear-gradient(135deg, #1a2a1a 0%, #0d1f0d 100%); }
      .office-japan { background: linear-gradient(135deg, #2a1a1a 0%, #1f0d0d 100%); }
      .office-uae { background: linear-gradient(135deg, #1a1a2a 0%, #0d0d1f 100%); }

      /* Number counter animation */
      .count-up { display: inline-block; }

      /* Notification toast */
      .toast-wrapper {
        position: fixed;
        bottom: 80px;
        right: 28px;
        z-index: 9999;
      }