: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;
}


/* 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;
}

.menus a.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;
    overflow: scroll;
}

.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: 0px;
        ;
    }
    .logo {
        margin-right: 300px;
        height: 100px;
        width: 150px;
    }
}


/* Body */

 :root {
    --primary-color: #f8ae3a;
    --gold: #f8ae3a;
    --black: #0a0a0a;
    --off-black: #111111;
    --dark-card: #1a1a1a;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.45);
    --text-color: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", "Poppins", sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--black);
}


/* Hero Section */


/* ===== HERO SECTION FIX ===== */


/* Add this to your Aboutus.css file */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    background-color: #080808;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-tagline {
    font-size: 13px;
    letter-spacing: 6px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(60px, 10vw, 130px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 60px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.stat-num {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(248, 174, 58, 0.3);
    flex-shrink: 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-hint span {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}


/* Hero Mobile */

@media (max-width: 768px) {
    .hero-section {
        height: 100svh;
    }
    .hero-title {
        font-size: clamp(48px, 14vw, 80px);
        letter-spacing: -1px;
    }
    .stat-item {
        padding: 0 20px;
    }
    .stat-num {
        font-size: 28px;
    }
    .stat-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .hero-scroll-hint {
        bottom: 20px;
    }
}


/* ─────────────────────────────────────────
STORY SECTION
───────────────────────────────────────── */

.story-section {
    background: var(--off-black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 80px;
}

.story-image-wrap {
    position: relative;
}

.story-image-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.story-image-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 20px 28px;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    z-index: 2;
}

.story-image-tag span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 5px;
}

.story-content {
    padding-right: 20px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.story-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 28px 0;
}

@media (max-width: 768px) {
    .story-section {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 50px;
    }
    .story-image-wrap img {
        height: 300px;
    }
    .story-image-tag {
        bottom: -14px;
        right: -10px;
        font-size: 22px;
        padding: 14px 18px;
    }
    .story-content {
        padding-right: 0;
    }
}


/* ─────────────────────────────────────────
CHAIRMAN SECTION
───────────────────────────────────────── */

.chairman-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 100px 80px;
}

.chairman-bg-text {
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 280px;
    font-weight: 900;
    color: rgba(248, 174, 58, 0.03);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

.chairman-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.chairman-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: var(--gold);
    line-height: 0.7;
    margin-bottom: 24px;
    opacity: 0.5;
    display: block;
}

.chairman-text p {
    font-size: 19px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
}

.chairman-text .highlight {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

.chairman-sig {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chairman-sig .name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.chairman-sig .title {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.5px;
    font-style: normal;
}

.chairman-photo-card {
    position: relative;
}

.chairman-photo-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 1;
}

.chairman-photo-border {
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px solid var(--gold);
    border-radius: 16px;
    z-index: 0;
}

@media (max-width: 768px) {
    .chairman-section {
        padding: 60px 24px;
    }
    .chairman-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .chairman-photo-card img {
        height: 400px;
    }
    .chairman-bg-text {
        font-size: 100px;
    }
    .chairman-quote-mark {
        font-size: 70px;
    }
    .chairman-text p {
        font-size: 16px;
    }
}


/* ─────────────────────────────────────────
VISION & MISSION SECTION
───────────────────────────────────────── */

.vm-section {
    background: var(--off-black);
    padding: 100px 80px;
}

.vm-header {
    text-align: center;
    margin-bottom: 70px;
}

.vm-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.vm-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.vm-cards {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 48px 44px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.vm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 174, 58, 0.3);
}

.vm-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(248, 174, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--gold);
}

.vm-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.vm-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.vm-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.vm-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.vm-card-line {
    width: 100%;
    height: 1px;
    background: rgba(248, 174, 58, 0.25);
    margin-bottom: 24px;
}

.vm-card-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vm-card-points li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 0;
}

.vm-card-points li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    display: inline-block;
}

.vm-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-divider-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(248, 174, 58, 0.12);
}

.vm-divider-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1);
}

@media (max-width: 768px) {
    .vm-section {
        padding: 60px 24px;
    }
    .vm-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .vm-divider {
        display: none;
    }
    .vm-card {
        padding: 32px 28px;
    }
}


/* Core Values */

.core-wrapper {
    width: 700px;
    height: 700px;
    margin: 40px auto;
    position: relative;
}


/*Middle*/

.middle {
    width: 180px;
    height: 180px;
    background: black;
    color: white;
    border-radius: 30%;
    border: 8px solid;
    border-color: var(--primary-color);
    /* display: flex;
align-items: center;
justify-content: center; */
    text-align: center;
    position: absolute;
    top: 260px;
    left: 260px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.middle h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
}

.middle img {
    margin-top: 20px;
    height: 80px;
    width: 80px;
}


/* PETALS */

.petal {
    width: 210px;
    height: 190px;
    background: white;
    position: absolute;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
    border: 6px solid;
    /* top: 50%;
left: 50%; */
    transform-origin: 0 -260px;
    /* distance from center */
    animation: swap 20s infinite ease-in-out;
}

.petal h3 {}


/* 5 FIXED POINTS */

.pos1 {
    top: 40px;
    left: 0px;
}

.pos2 {
    top: 200px;
    left: 500px;
}

.pos3 {
    top: 450px;
    left: 420px;
}

.pos4 {
    top: 520px;
    left: 160px;
}

.pos5 {
    top: 600px;
    left: 40px;
}


/* START POSITIONS */

.p1 {
    top: 40px;
    left: 250px;
}

.p2 {
    top: 200px;
    left: 500px;
}

.p3 {
    top: 600px;
    left: 420px;
}

.p4 {
    top: 520px;
    left: 160px;
}

.p5 {
    top: 600px;
    left: 40px;
}

@keyframes swap {
    0% {
        top: -30px;
        left: 250px;
        /* pos1 */
    }
    20% {
        top: 150px;
        left: 550px;
        /* pos2 */
    }
    40% {
        top: 480px;
        left: 430px;
        /* pos3 */
    }
    60% {
        top: 480px;
        left: 30px;
        /* pos4 */
    }
    80% {
        top: 160px;
        left: -60px;
        /* pos5 */
    }
    100% {
        top: -30px;
        left: 250px;
        /* back to pos1 */
    }
}

.p1 {
    animation-delay: 0s;
}

.p2 {
    animation-delay: -4s;
}

.p3 {
    animation-delay: -8s;
}

.p4 {
    animation-delay: -12s;
}

.p5 {
    animation-delay: -16s;
}

.petal h3 {
    margin-top: 2px;
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: bold;
}

.petal p {
    font-size: 16px;
    color: #333;
}

.bold {
    font-size: 28px;
    width: fit-content;
    color: var(--primary-color);
}


/* COLORS */

.p1 {
    border-color: rgb(145, 2, 145);
}

.p3 {
    border-color: rgb(45, 137, 3);
}

.p5 {
    border-color: blue;
}

.p2 {
    border-color: red;
}

.p4 {
    border-color: #cc004b;
}


/* Core Values Mobile View */

@media (max-width: 768px) {
    /* Scale the whole wrapper down so it fits a phone screen */
    .core-wrapper {
        width: 360px;
        height: 360px;
        margin: 20px auto 40px;
        position: relative;
        /* Use CSS scale so every child scales together */
        transform: scale(0.5);
        transform-origin: top center;
        /* Compensate for the whitespace the scaled-down box still occupies */
        margin-bottom: calc(-360px * 0.5 + 100px);
        margin-top: 50px;
    }
    /* Centre badge */
    .middle {
        width: 200px;
        height: 200px;
        top: 80px;
        left: 80px;
        border-width: 4px;
        border-radius: 30%;
        padding: 10px;
    }
    .middle h2 {
        font-size: 24px;
        letter-spacing: 0.5px;
    }
    .middle img {
        margin-top: 10px;
        height: 100px;
        width: 100px;
    }
    /* Petals – keep absolute positioning & animation intact */
    .petal {
        width: 200px;
        height: 200px;
        padding: 10px;
        border-radius: 10px;
        border-width: 3px;
        text-align: center;
    }
    .petal h3 {
        font-size: 24px;
        margin-bottom: 4px;
        margin-top: 1px;
    }
    .petal p {
        font-size: 20px;
    }
    .bold {
        font-size: 28px;
    }
    /* ── Re-map the 5 orbital positions to the smaller 360×360 canvas ── */
    /* Desktop canvas: 700px  → Mobile canvas: 360px  → ratio ≈ 0.514      */
    .p1 {
        top: -120px;
        left: 200px;
    }
    .p2 {
        top: 200px;
        left: 500px;
    }
    .p3 {
        top: 600px;
        left: 200px;
    }
    .p4 {
        top: 520px;
        left: 100px;
    }
    .p5 {
        top: 600px;
        left: 40px;
    }
    @keyframes swap {
        0% {
            top: -120px;
            left: 230px;
            /* pos1 */
        }
        20% {
            top: 150px;
            left: 320px;
            /* pos2 */
        }
        40% {
            top: 350px;
            left: 80px;
            /* pos3 */
        }
        60% {
            top: 150px;
            left: -150px;
            /* pos4 */
        }
        80% {
            top: -120px;
            left: -40px;
            /* pos5 */
        }
        100% {
            top: -120px;
            left: 230px;
            /* back to pos1 */
        }
    }
}


/* ─────────────────────────────────────────
TIMELINE SECTION
───────────────────────────────────────── */

.timeline-section {
    background: var(--off-black);
    padding: 100px 80px;
}

.timeline-section .section-label {
    color: var(--primary-color) !important;
}

.section-label {
    color: var(--primary-color) !important;
}

.timeline-section .section-title {
    color: var(--white);
    margin-bottom: 0;
}

.section-title {
    color: var(--white);
}

.timeline-wrap {
    margin-top: 60px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.timeline-progress-bar {
    height: 100%;
    background: var(--gold);
    transition: width 0.6s ease;
    border-radius: 2px;
}

.timeline-markers-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 60px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-markers-row::-webkit-scrollbar {
    display: none;
}

#tlDesc b {
    color: white;
    font-weight: bold;
}

.tl-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    min-width: 60px;
    padding-top: 0;
}

.tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    margin: 3px;
}

.tl-marker.active .tl-dot {
    /* background: var(--gold); */
    border-color: var(--gold);
    box-shadow: 0 0 0 5px rgba(248, 174, 58, 0.2);
    transform: scale(1.4);
}

.tl-year {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.tl-marker.active .tl-year {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
}

.tl-marker:hover .tl-dot {
    background: rgba(248, 174, 58, 0.5);
}

.mactive {
    border-radius: 20px;
}

.tl-marker:hover .tl-year {
    /* color: rgba(248, 174, 58, 0.7); */
}

.timeline-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
    min-height: 320px;
}

.timeline-image {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    background: #1a1a1a;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.timeline-image:hover img {
    transform: scale(1.04);
}

.timeline-year-big {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 900;
    color: rgba(248, 174, 58, 0.12);
    line-height: 1;
    margin-bottom: -16px;
    user-select: none;
}

.timeline-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    margin-top: 0;
}

.timeline-info p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.58);
}

.timeline-nav {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.tl-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.tl-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 24px;
    }
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .timeline-image {
        height: 220px;
    }
    .timeline-year-big {
        font-size: 60px;
    }
    .timeline-info h3 {
        font-size: 22px;
    }
    .tl-marker {
        min-width: 50px;
    }
    .tl-year {
        font-size: 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 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;
    }
}