* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

:root {
    /* Brand Colors */
    --primary: #4285f4;
    --charcoal: #344767;
    --success: #22c55e;
    --gray: #565656;
    --white: #ffffff;
    --governance: #8b5cf6;
    --red: #ef4444;
    
    /* Background Gradients */
    --bg-gradient-primary: linear-gradient(135deg, var(--charcoal) 0%, var(--primary) 100%);
    --bg-gradient-success: linear-gradient(135deg, var(--success), #16a34a, #15803d);
    --bg-gradient-white: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    --bg-gradient-charcoal: linear-gradient(135deg, var(--charcoal) 0%, #2a3441 100%);
    --bg-gradient-sky: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 50%, white 100%);
    --bg-gradient-red: linear-gradient(135deg, var(--red), #dc2626, #b91c1c);
    /* Typography */
    --font-size-title: 2.5rem;
    --font-size-subtitle: 0.9rem;
    --font-size-body: 1.1rem;
    --font-size-discalmer: 0.75rem;

    --font-weight-light: 200;
    --font-weight-normal: 400;
    --font-weight-semibold: 500;

    /* Layout & Spacing */
    --container-width-narrow: 800px;
    --container-width-normal: 1200px;
    --container-width-wide: 1600px;
    --container-padding: 0 20px;
    --section-padding: 4rem 0;

    /* Border Radius */
    --radius-normal: 20px;
    --radius-circle: 50px;

    /* Shadow */
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.08);

    /* Borders */
    --border-light: 1px solid #e2e8f0;
    --border-lighter: 1px solid #f1f5f9;

    /* Transitions */
    --transition-normal: 0.3s ease;

}

body { 
    margin: 0; 
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
    line-height: 1.6;
}

.container { 
    max-width: var(--container-width-normal); 
    margin: 0 auto; 
    padding: var(--container-padding); 
}

.container-narrow { 
    max-width: var(--container-width-narrow); 
    margin: 0 auto; 
    padding: var(--container-padding); 
}

.container-wide { 
    max-width: var(--container-width-wide); 
    margin: 0 auto; 
    padding: var(--container-padding); 
}

.first { 
    padding-top: 150px !important;
}

.section { 
    padding: var(--section-padding); 
}

.hero { 
    height: 100vh; 
}

/* BUTTON */

.btn { 
    text-decoration: none; 
    border-radius: var(--radius-normal); 
    display: inline-block; 
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.primary {
    background: var(--bg-gradient-charcoal); 
    color: var(--white); 
}

.success { 
    background: var(--bg-gradient-success); 
    color: var(--white); 
    border: none;
}

.red { 
    background: var(--bg-gradient-red); 
    color: var(--white); 
    border: none;
}

.secondary { 
    background: var(--bg-gradient-white); 
    color: var(--text-primary); 
    border: 2px solid var(--charcoal); 
}

.white {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--white);
}

.small { 
    padding: 10px 20px;
    font-size: 0.75rem; 
}

.medium { 
    padding: 14px 28px;
    font-size: 1rem; 
}

.large { 
    padding: 16px 32px;
    font-size: 1.25rem;  
}

/* TEXT */

.title { 
    font-size: var(--font-size-title); 
    font-weight: var(--font-weight-semibold); 
    margin-bottom: 1rem; 
}

.subtitle { 
    font-size: var(--font-size-subtitle); 
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.body { 
    font-size: var(--font-size-body); 
    font-weight: var(--font-weight-light); 
}

.disclaimer{ 
    font-size: var(--font-size-discalmer); 
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: var(--font-weight-semibold); 
}

h2 { 
    font-size: 2rem; 
    font-weight: var(--font-weight-semibold); 
}

h3 { 
    font-size: 1.5rem; 
    font-weight: var(--font-weight-semibold); 
}

h4 { 
    font-size: 1rem; 
    font-weight: var(--font-weight-semibold); 
}


/* Flex Container Base */
.flex {
    display: flex;
    gap: 20px; /* Adjust spacing between items */
}

/* 2 Column Layout (1fr 1fr) */
.flex-2 > * {
    flex: 1;
}

/* 3 Column Layout (1fr 1fr 1fr) */
.flex-3 > * {
    flex: 1;
}

/* 4 Column Layout (1fr 1fr 1fr 1fr) */
.flex-4 > * {
    flex: 1;
}

/* 2 rows of 3 columns grid layout */
.grid-2x3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}
/* 2 rows of 2 columns grid layout */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.grid-3x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px;
}

.grid {
    display: grid;
}  


.grid-2x3-offset {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.grid-2x3-offset > div:nth-child(1) { grid-column: 1 / 3; }
.grid-2x3-offset > div:nth-child(2) { grid-column: 3 / 5; }
.grid-2x3-offset > div:nth-child(3) { grid-column: 5 / 7; }
.grid-2x3-offset > div:nth-child(4) { grid-column: 2 / 4; }
.grid-2x3-offset > div:nth-child(5) { grid-column: 4 / 6; }
   

/* Text Alignment Utilities */
.text-left { text-align: left; }
.text-center { text-align: center;}
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-charcoal { color: var(--charcoal); }
.text-success { color: var(--success); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }
.text-red { color: var(--red); }

.bg-gradient-primary { background: var(--bg-gradient-primary); color: var(--white);  }
.bg-gradient-success { background: var(--bg-gradient-success); }
.bg-gradient-white { 
    background: var(--bg-gradient-white); 
    color: var(--charcoal);
}
.bg-gradient-white * {
    color: inherit;
}

.bg-gradient-sky { background: var(--bg-gradient-sky); }
.bg-gradient-metal { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);}




.bg-gradient-charcoal { background: var(--bg-gradient-charcoal); }



.radius-normal { border-radius: var(--radius-normal); }

.bot-space { margin-bottom: 1rem; }
.bot-space2 { margin-bottom: 2rem; }

.space1 { margin: 1rem; }
.space2 { margin: 2rem; }
.space3 { margin: 3rem; }

.p-05 { padding: 0.5rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }
.p-4 { padding: 4rem; }


/* Border utilities - all directions with 4 colors */
.border-success { border: 3px solid var(--success); }
.border-primary { border: 3px solid var(--primary); }
.border-charcoal { border: 3px solid var(--charcoal); }
.border-white { border: 3px solid var(--white); }

/* Top border with colors */
.border-top-success { border-top: 4px solid var(--success); }
.border-top-primary { border-top: 4px solid var(--primary); }
.border-top-charcoal { border-top: 4px solid var(--charcoal); }
.border-top-white { border-top: 4px solid var(--white); }

/* Bottom border with colors */
.border-bottom-success { border-bottom: 4px solid var(--success); }
.border-bottom-primary { border-bottom: 4px solid var(--primary); }
.border-bottom-charcoal { border-bottom: 4px solid var(--charcoal); }
.border-bottom-white { border-bottom: 4px solid var(--white); }

/* Left border with colors */
.border-left-success { border-left: 4px solid var(--success); }
.border-left-primary { border-left: 4px solid var(--primary); }
.border-left-charcoal { border-left: 4px solid var(--charcoal); }
.border-left-white { border-left: 4px solid var(--white); }

/* Right border with colors */
.border-right-success { border-right: 4px solid var(--success); }
.border-right-primary { border-right: 4px solid var(--primary); }
.border-right-charcoal { border-right: 4px solid var(--charcoal); }
.border-right-white { border-right: 4px solid var(--white); }



.cta-box {
    background: var(--bg-gradient-charcoal);
    border-radius: var(--radius-normal);
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: grid
;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}


.form-group {
    margin-bottom: 1.5rem;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: var(--border-light);
    border-radius: var(--radius-normal);
    font-size: var(--font-size-body);
    font-family: inherit;
    background: var(--white);
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
}
.form-textarea {
    min-height: 120px;
    resize: vertical;
}


.card{
    position: relative;
    border-radius: var(--radius-normal);
    box-shadow: var(--shadow-lg);
}

.card-horizontal{
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

.card p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: var(--font-weight-normal);
}

.card p:last-child {
    margin-bottom: 0;
}

.card i {
    font-size: 1.5rem;
}

.card .subtitle {
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.card .body {
    margin-bottom: 0;
    font-weight: var(--font-weight-light);
}

.story-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary);
}


.list{
    list-style: none;
    padding: unset;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-circle);
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-normal);
    margin: 1rem 0;
    font-style: italic;
    font-weight: var(--font-weight-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: var(--font-size-subtitle);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.9rem;
    font-weight: var(--font-weight-light);
    opacity: 0.8;
}



/* Slide Content Responsive Containers */
/* Slide Content Responsive Containers */
.slide-content-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.slide-content-normal {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.slide-content-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .slide-content-wide {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .slide-content-normal,
    .slide-content-wide {
        max-width: 1000px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .slide-content-narrow,
    .slide-content-normal,
    .slide-content-wide {
        max-width: 100%;
        padding: 0 1rem;
    }
}


.cta-center {
    background: var(--bg-gradient-success);
    padding: 4rem 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-center h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.cta-center p {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-light);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-center .flex {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-center .flex i {
    padding-right: 0.5rem;
}


/* Styled Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
}

.feature-list i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Icon color variants */
.feature-list.list-success i {
    color: var(--success);
}

.feature-list.list-red i {
    color: var(--red);
}

.feature-list.list-primary i {
    color: var(--primary);
}

/* Optional: Add background styling */
.feature-list li.styled {
    background: var(--bg-gradient-white);
    padding: 1rem;
    border-radius: var(--radius-normal);
    box-shadow: var(--shadow-lg);
    margin-bottom: 0.5rem;
}


.bg-light-primary { background: rgba(66, 133, 244, 0.05); }
.bg-light-charcoal { background: rgba(52, 71, 103, 0.05); }
.bg-light-success { background: rgba(34, 197, 94, 0.05); }
.bg-light-gray { background: rgba(86, 86, 86, 0.05); }
.bg-light-white { background: rgba(255, 255, 255, 0.05); }
.bg-light-governance { background: rgba(139, 92, 246, 0.05); }
.bg-light-red { background: rgba(239, 68, 68, 0.05); }

/* Alternative with 10% opacity for stronger effect */
.bg-light-primary-10 { background: rgba(66, 133, 244, 0.1); }
.bg-light-charcoal-10 { background: rgba(52, 71, 103, 0.1); }
.bg-light-success-10 { background: rgba(34, 197, 94, 0.1); }
.bg-light-gray-10 { background: rgba(86, 86, 86, 0.1); }
.bg-light-white-10 { background: rgba(255, 255, 255, 0.1); }
.bg-light-governance-10 { background: rgba(139, 92, 246, 0.1); }
.bg-light-red-10 { background: rgba(239, 68, 68, 0.1); }