:root {
    /* Color Variables */
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #FF6A00;
    /* --text-primary: hsla(202, 84%, 15%, 1.00); */
    --text-primary: #2B2F4C;
    --text-secondary: #6b7280;
    --text-light: #ffffff;

    --sidebar-text-hover: #ff6a00;
    --sidebar-width: 350px;
    --sidebar-right: -370px;

    --bg-primary: #101328;
    --bg-secondary: #f8fafc;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --header-scroll-bg: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-hero: linear-gradient(145deg, #101328, #1c1f36, #2e324f);;
    /* --gradient-hero-mobile: radial-gradient(circle at 50% 100%, rgba(255,122,24,0.25), transparent 40%); */
    --gradient-hero-mobile: linear-gradient(145deg, #101328, #1c1f36, #2e324f);;
    --gradient-hero-desktop: radial-gradient(circle at 25% 40%, #1a1d33 0%, #101328 35%);;


    --hero-height: 100vh;
    --hero-max-height: 850px;


    /* font size */
    --font-size-1: 5.5rem;
    --font-size-2: 3.4rem;
    --font-size-3: 1.25rem;
    --font-size-4: 1.12rem;
}

html{
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: opacity 1s ease,transform 0.8s ease;
}

.font-bg {
    font-family: "Bricolage Grotesque", sans-serif;
}

.font-ph{
    font-family: "Patrick Hand", cursive;
}

p,
h1,
h2,
h3,
h4,
h5 {
    margin: 0px;
    padding: 0px;
}

body a{
    color: var(--accent-color);
    text-decoration: underline
}

body {
    font-family: "Bricolage Grotesque", Roboto, sans-serif;
    line-height: 1.6;
    font-size: var(--font-size-4);
    color: var(--text-primary);
    overflow-x: hidden;
    background-color: var(--bg-primary);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
    background: transparent;
    color: var(--text-light);
}

.header.hero-mode {
    background: transparent;
    transform: translateY(0);
    backdrop-filter: none;
    position: absolute;
}

.header.scrolled {
    background: var(--header-scroll-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
    transform: translateY(0);
    color: var(--text-primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0px;
    margin: 0 auto;
}

.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-blue {
    display: none
}

.header.scrolled .logo img:first-child {
    display: none;
}

.header.scrolled .logo .logo-blue {
    display: block;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}


.nav a::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.header .nav a:hover::after,
.header .nav a.active::after {
    width: 100%;
}

.header .nav a:hover,
.header .nav a.active {
    color: var(--accent-color);
}

.header nav > ul ul a::after{
    display: none;
}

/* header theme change */
.color-primary.header{
    --text-light: var(--text-primary);
    --accent-color: var(--text-primary);
}

.header.color-primary .logo img:first-child {
    display: none;
}

.header.color-primary .logo .logo-blue {
    display: block;
}



.menu-active{
    overflow: hidden;
}

#mobile-menu{
    transform: translateY(100%);
    opacity: 0;
    position: fixed;
    z-index: -1;
    top: 0;
    width: 100%;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: var(--font-size-1);
}

#mobile-menu a{
    color: inherit;
    text-decoration: none;
}

#burger-icon{
    display: block;
}

#close-icon{
    display: none;
}

.menu-active #burger-icon{
    display: none;
}

.menu-active #close-icon{
    display: block;
}

#mobile-menu.active{
    transform: translateY(0%);
    opacity: 1;

}

.menu-active .header-content{
    background-color: var(--bg-primary);
}

.menu-active .header{
    --text-primary: #ffffff;
}

.menu-active .header .logo img:first-child {
    display: block;
}

.menu-active .header .logo .logo-blue {
    display: none;
}


#sidebar-menu a.active{
    color: var(--accent-color);
}


.contact-btn {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}



.loading .hero-content h1,
.loading .hero-content p,
.loading header,
.loading .bottom-graphics{
    opacity: 0;
}

.loading .hero-content h1{
    transform: translateY(-20px);
}

/* Hero Section */
.section {
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    position: relative;
    padding: 4rem 0px;
}

.section#home {
    padding-top: 0px;
    background: var(--gradient-hero-desktop);

}

.container-style {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;

}

.hero-content {
    height: var(--hero-height);
    max-height: var(--hero-max-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content h1 {
    font-size: var(--font-size-1);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: var(--font-size-3);
    color: var(--accent-color);
}

.hero-content .heartbeat path{
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawHeartbeat 4s ease forwards;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

@keyframes drawHeartbeat {
    to {
      stroke-dashoffset: 0;
    }
}

.hero-content .bottom-graphics {
    position: absolute;
    right: -54px;
    bottom: -93px;
    width: 420px;
    height: 420px;
    transform: rotate(-7deg);
}

.hero-btn {
    background: var(--bg-primary);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: var(--font-size-4);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.heading-1 {
    font-size: var(--font-size-2);
    font-weight: bold;
    line-height: 1.1;
}


/* about section */
section#about::before,
section#about::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12%;
    max-width: 280px;
    height: 22vw;
    max-height: 420px;
    opacity: 0.3;
}

section#about::before {
    left: 0;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    transform: translateY(-50%) skewY(-15deg)
}

section#about::after {
    right: 0;
    background: linear-gradient(225deg, var(--accent-color), transparent);
    transform: translateY(-50%) skewY(15deg)
}

.feature-card {
    width: 40%;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-card svg {
    width: 28px;
    flex-shrink: 0;
}

.feature-card svg path {
    fill: var(--accent-color);
}

/* board of directors */

#about-bod .text-left > p{
    font-family: "Patrick Hand", cursive;
}



/* Leadership - Minimal style on body background */
.leadership {
    position: relative;
}

.leadership h2 {
    color: #ff6b35;
}

.leadership > .container > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.leadership h3 {
    color: white;
    border-bottom: 2px solid #ff6b35;
    display: inline-block;
    padding-bottom: 10px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0 50px;
}

.leader {
    background: transparent;
    padding: 25px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.leader:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.leader strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.leader span {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Boxes */
.cta-box {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 40px;
    border-radius: 25px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.cta-box p {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}

.cta-box a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* Global Leadership */

.leader-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 90px
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.leader-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,#FF6A00,#ff8533);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px
}

.leader-grid.global .leader-img {
    width: 150px;
    height: 150px;
    border-radius: 10%;
}

.leader-info h4 {
    font-size: var(--font-size-3);
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1;
}

.leader-info p {
    font-size: var(--font-size-4);
    font-family: "Patrick Hand";
    opacity: 0.8
}

.cta-section {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #FF6A00 0%, #e55a00 100%);
    margin-top: 2rem;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1)
}

.cta-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px
}

.cta-text {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9
}

.cta-email {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
    text-underline-offset: 3px;
}

.cta-link {
    font-weight: bold;
    text-underline-offset: 3px;

}

.v1 {
    background: linear-gradient(135deg,#101328 0%,#1a1f42 100%);
    padding-top: 80px;
    padding-bottom: 0px;
    color: #ffffff
}

.v1 .section-desc {
    opacity: 0.9
}

.v1 .leader-grid {
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr))
}

#about-global a {
    color: var(--text-light);
}


footer{
    border-top: 1px solid var(--accent-color);
}

@media (min-width: 1536px){
    :root{
        --font-size-1: 6.1rem;
    }
}

@media(max-width:1024px){
    section#about::after,
    section#about::before{
        display: none;
    }
}

@media (max-width: 1100px) and (min-width: 768px){
    :root{
        --font-size-1: 4rem;
        --font-size-2: 2.5rem;
        --font-size-3: 1.125rem;
    }

    .hero-content .bottom-graphics{
        width: 300px;
        height: 300px;
        bottom: -66px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root{
        --font-size-1: 3.1rem;
        --font-size-2: 2.2rem;
        --font-size-3: 1.125rem;
        --font-size-4: 0.875rem;

        /* sidebar variable */
        --sidebar-width:100%;
        --sidebar-right:-110%;
    }

    .header-content {
        gap: 1rem;
    }

    .logo{
        font-size: var(--font-size-3);
    }

    .nav {
        gap: 1rem;
    }

    .container-style{
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .hero-content .bottom-graphics{
        display: none;
    }

    .section#home{
        padding-top: 0px;
        padding-bottom: 0px;
        background: var(--gradient-hero-mobile);
    }

    .section#about{
    }

    .feature-card{
        width: 100%;
        padding: 0px;
    }
}

.color-accent {
    color: var(--accent-color);
}

.color-primary{
    color: var(--text-primary);
}

.font-size-1{
    font-size: var(--font-size-1);
}
.font-size-2{
    font-size: var(--font-size-2);
}
.font-size-3{
    font-size: var(--font-size-3);
}
.font-size-4{
    font-size: var(--font-size-4);
}