*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --earth: #8A5A44;
    --terracotta: #A75D3A;
    --sand: #F6F1EA;
    --ivory: #FCFAF7;
    --charcoal: #2D2926;
    --bronze: #B58A56;
    --sage: #6F7D68;
    --biscuit: #DFBC94; /* NEW */
    --biscuit-rgb: 223, 188, 148;
  
    --deep-umber: #6c3e2b;
    --warm-sand: #f4ede4;
    --charcoal-soft: #2c241e;
    --off-white: #fefaf5;
    --accent-gradient: linear-gradient(105deg, #DFBC94 0%, #ce7e4a 100%);
    --border-organic: rgba(223, 188, 148, 0.25);
    --shadow-elevated: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    --pattern-opacity: 0.035;
}

body {
    background-color: var(--off-white);
    font-family: 'Inter', sans-serif;
    color: var(--charcoal-soft);
    overflow-x: hidden;
}

h1,h2,h3{
    font-family:'Cormorant Garamond',serif;
}

body{
    font-family:'Inter',sans-serif;
}

/* African-inspired pattern overlay */
.african-pattern {
    position: relative;
}

.african-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, 
        rgba(223, 188, 148, 0.03) 0px, 
        rgba(223, 188, 148, 0.03) 2px, 
        transparent 2px, 
        transparent 8px),
        repeating-linear-gradient(135deg, 
        rgba(223, 188, 148, 0.03) 0px, 
        rgba(223, 188, 148, 0.03) 2px, 
        transparent 2px, 
        transparent 12px);
    pointer-events: none;
    z-index: 0;
}

/* Mudcloth-inspired border accent */
.border-accent {
    height: 4px;
    background: linear-gradient(90deg, 
        #DFBC94 0%, 
        #ce7e4a 30%, 
        #DFBC94 60%, 
        #8A5A44 100%);
    width: 100%;
    margin: 1rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #c4734e;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: larger;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 40px 20px;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    margin-top:-80px;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(33,28,24,0.55),
        rgba(33,28,24,1.45)
    ),
    url('../img/hero.jpg');
    background-size:cover;
    background-position:center;
    z-index:-1;
}

/* Hero background overlay */
.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(223, 188, 148, 0.15) 0%, 
        rgba(223, 188, 148, 0.08) 50%,
        transparent 100%);
    pointer-events: none;
}

/* Fixed background graphics */
.hero-bg {
    position: fixed;
    inset: 0;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    color:black;
    opacity: 0.4;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 0;
    animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

.hero::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:180px;
    background:url('../img/acacia-silhouette.svg')
    center bottom no-repeat;
    background-size:cover;
    opacity:.15;
}

.orb-container {
    position: relative;
    width: min(400px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    top:30px;
}

.orb-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, 
        rgba(253, 248, 240, 0.92) 0%, 
        rgba(253, 248, 240, 0.75) 100%);
    border: 1px solid rgba(223, 188, 148, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.orb-inner img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 0%;
    display: block;
}

.orb-ring {
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(223, 188, 148, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.orb-ring::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(223, 188, 148, 0.25);
    border-radius: 50%;
    animation: orbBreathe 3s infinite ease-in-out;
}

.hero-visual img{
    max-width:420px;
    filter:drop-shadow(
        0 25px 35px rgba(0,0,0,0.15)
    );
}

.hero-image-wrap {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.pulse {
    animation: markerPulse 2s infinite ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes orbBreathe {
    0% { transform: scale(0.98); opacity: 0.5; }
    50% { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(0.98); opacity: 0.5; }
}

@keyframes markerPulse {
    0% { 
        transform: scale(1); 
        opacity: 0.7; 
    }
    100% { 
        transform: scale(1.2); 
        opacity: 0; 
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    .hero-content {
        max-width: 650px;
        margin: 0 auto;
    }
    .orb-container {
        width: min(380px, 80vw);
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero-grid {
        gap: 2.5rem;
    }
    .orb-container {
        width: min(280px, 75vw);
    }
    .orb-ring {
        inset: -10px;
    }
    .orb-ring::before {
        inset: -8px;
    }
}

.section-divider{
    width:120px;
    height:2px;
    margin:60px auto;
    background:
    linear-gradient(
        to right,
        transparent,
        #DFBC94,
        transparent
    );
}

.glass-card{
    background:#FCFAF7;
    border: 1px solid rgba(223, 188, 148, 0.2);
    border-radius:24px;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.star-map{
    position:relative;
}

.star-map::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('../img/africa-outline.svg')
    center center no-repeat;
    background-size:50%;
    background-color: rgba(14, 14, 14, 0.6);
}

.mission::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:1;
    background-image: repeating-linear-gradient(
        45deg,
        #DFBC94 0,
        #DFBC94 2px,
        transparent 2px,
        transparent 20px
    );
    background-color: linear-gradient(rgba(33,28,24,0.55), rgba(33,28,24,1.45));
    pointer-events:none;
}

.mission-tag {
    color: #DFBC94;
    background: rgba(223, 188, 148, 0.1);
}

.mission::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(223, 188, 148, 0.04) 0%, transparent 90%);
    pointer-events: none;
    display: none;
}

.mission::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DFBC94, #DFBC94, transparent);
    background: rgba(14, 14, 14, 0.6);
    display: none;
}

.mission-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0.5;
    background-color: black;
}

.mission .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mission-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.mission-header, 
.mission-body {
    color: black;
    opacity: 1;
    width: 100%;
    max-width: 100%;
}

  @media (max-width: 400px) {
    .mission-lead {
      display: block !important;
      width: 100% !important;
      margin-bottom: 0.5rem; /* optional spacing */
    }
    /* Ensure the heading text wraps and stays on its own line */
    .mission-lead br {
      display: none; /* remove any unwanted line breaks inside */
    }
  }

.mission-tag {
    display: inline-block;
    font-size: 1.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    background: rgba(223, 188, 148, 0.2);
    padding: 10px 40px;
    border-radius: 40px;
    font-family: 'Savanna Gold';
    margin-top:20px;
    opacity: 1;
    border: 1px solid rgba(223, 188, 148, 0.2);
}

.mission-title {
    font-size: 3.8rem;
    font-weight: 400;
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    color: #ffffff;
    line-height: 1.2;
}

.title-break {
    display: inline-block;
}

.mission-accent {
    background: linear-gradient(90deg, #DFBC94, #ce7e4a);
    width: 100px;
    height: 3px;
    margin:0 auto;
    border-radius: 3px;
}

.mission-body {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
}

.mission-lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.4;
}

.mission-body p {
    font-size: 18pt;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mission-body p strong {
    color: #DFBC94;
}

.mission-quote {
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #DFBC94;
    border-radius: 0 24px 24px 0;
    backdrop-filter: blur(8px);
    padding: 1.8rem 2rem;
    border: 1px solid rgba(223, 188, 148, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.quote-mark {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: #DFBC94;
    opacity: 0.5;
    display: inline-block;
    margin-right: 0.5rem;
    line-height: 1;
    vertical-align: middle;
}

.quote-text {
    font-size: 1rem;
    font-weight: 400;
    color: #5a5a6e;
    font-style: italic;
    letter-spacing: -0.2px;
}

@media (max-width: 768px) {
    .mission {
        padding: 4rem 1.5rem;
    }
    .mission-title {
        font-size: 2.5rem;
    }
    .mission-lead {
        font-size: 1.2rem;
    }
    .mission-body p {
        font-size: 1rem;
    }
    .mission-quote {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 430px) {
    .mission-wrapper,
    .mission-body,
    .mission-quote {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .mission-body {
        padding: 0 18px;
    }
    .mission-quote {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 2rem;
    }
    .mission-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

.stats { display: flex; gap: 4rem; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: #DFBC94; }

/* Founders */
.founders { 
    padding: 8rem 0;
    margin-top: 50px;
    width: 100%;
}

.founders .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header { 
    text-align: center; 
    margin-bottom: 5rem; 
}

.section-header .h2 {
    font-size: 3rem;
    color:rgb(2, 2, 2);
}

.founders {
    background-color: #ffffff;
    position: relative;
    isolation: isolate;
}

.founders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(223, 188, 148, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.badge {
    display: inline-block;
    background: rgba(223, 188, 148, 0.1);
    color: #DFBC94;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(2px);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.section-header h2 span {
    background: linear-gradient(135deg, #DFBC94 0%, #ce7e4a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 7rem;
    align-items: start;
}

.founder-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    border-radius: 2rem;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
}

.founder-card:hover {
    transform: translateY(-4px);
}

.founder-card:not(.reverse) {
    flex-direction: row;
}

.founder-card.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.founder-img {
    position: relative;
    width: 260px;
    height: 260px;
    flex-shrink: 0;
}

.founder-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(223, 188, 148, 0.08);
    transition: transform 0.4s ease, box-shadow 0.3s;
}

.founder-card:hover .founder-img img {
    transform: scale(1.02);
    box-shadow: 0 28px 38px -16px rgba(223, 188, 148, 0.2);
}

.founder-icon {
    position: absolute;
    bottom: 12px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #ffffff;
    backdrop-filter: blur(2px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(223, 188, 148, 0.15);
    transition: all 0.2s;
}

.founder-icon .material-symbols-outlined {
    font-size: 28px;
    color: #DFBC94;
    font-weight: 500;
}

.founder-card.reverse .founder-icon {
    left: 20px;
    right: auto;
    background: #ffffff;
}

.founder-icon.alt {
    background: #DFBC94;
}
.founder-icon.alt .material-symbols-outlined {
    color: white;
}

.founder-info h3 {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0e2e32;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.role {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #DFBC94;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(223, 188, 148, 0.08);
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    text-align: center;
}

.founder-info p {
    color: #2c4750;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 95%;
}

.founder-card.reverse .founder-info {
    text-align: right;
}
.founder-card.reverse .founder-info p {
    margin-left: auto;
}

@media (max-width: 1024px) {
    .founders-grid {
        gap: 3rem;
    }
    .founder-img {
        width: 220px;
        height: 220px;
    }
    .founder-info h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 860px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .founder-card, .founder-card.reverse {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1.5rem;
    }
    .founder-card.reverse .founder-info,
    .founder-card .founder-info {
        text-align: center;
    }
    .founder-card.reverse .founder-info p,
    .founder-info p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .founder-icon {
        right: 12px;
        bottom: 6px;
    }
    .founder-card.reverse .founder-icon {
        left: 12px;
        right: auto;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .badge {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }
    .founder-img {
        width: 180px;
        height: 180px;
    }
    .founder-icon {
        width: 44px;
        height: 44px;
    }
    .founder-icon .material-symbols-outlined {
        font-size: 24px;
    }
    .founder-info h3 {
        font-size: 1.5rem;
    }
}

.section-header::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #DFBC94, #ce7e4a);
    margin: 1.2rem auto 0;
    border-radius: 3px;
}

/* Star Map */
.star-map {
    padding: 4rem 0;
    color: var(--white);
    margin-bottom: -4.5rem;
}

.section-header.light h2, .section-header.light .badge { 
    color:#b1916c;
}

.badge { 
    display: inline-block; 
    font-size:20pt; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    color: #DFBC94;
    font-weight: 600; 
    background: rgba(223, 188, 148, 0.1); 
    padding: 0.5rem 1.2rem; 
    border-radius: 40px; 
    margin-bottom: 1.8rem;
    margin-top: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 0 20px;
}

.glass-card {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(223, 188, 148, 0.15);
    transition: var(--transition);
    color: var(--text);
    height: 375px;
    padding: 1.5rem;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 188, 148, 0.3);
    box-shadow: 0 20px 35px -12px rgba(223, 188, 148, 0.15);
    color:white;
}

.glass-card .icon {
    color: #DFBC94;
}

.progress-bar .fill {
    background: linear-gradient(90deg, #DFBC94, #ce7e4a);
}

.advance{
    background-color: #DFBC94;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 1.8rem;
    color: #000000;
}

.progress-bar .fill { 
    height: 100%; 
    background: linear-gradient(90deg, #DFBC94, #ce7e4a); 
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1.8rem;
    opacity: 1;
    z-index: 1;
}

.btn-white {
    background: linear-gradient(135deg, #DFBC94 0%, #ce7e4a 100%);
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(223, 188, 148, 0.35);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-white:hover {
    background: linear-gradient(135deg, #eac8a0 0%, #d48a5a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(223, 188, 148, 0.5);
}

.btn-white:hover::before {
    left: 100%;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1.8rem;
    opacity: 1;
    z-index: 1;
}

.btn-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero-grid, .mission-wrapper, .founders-grid, .card-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual { justify-content: center; margin-top: -2rem; }
    .founder-card, .founder-card.reverse { flex-direction: column; align-items: center; text-align: center; }
}

h2{
    text-align:center;
    padding: 20px;
    font-size: 40pt;
    color: white;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
    height: 160px;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.red-line {
    width: 50px;
    height: 4px;
    background-color: #DFBC94;
    margin: 0 auto 15px;
}

.header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: start;
}

.approach-card {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.red-bg { background-color: #DFBC94; }
.gray-bg { background-color: #2D2926; }

.content h3 {
    margin-top: 0;
    color: #DFBC94;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.content p {
    font-size: 0.95rem;
    color: #555;
    text-align: justify;
}

@media (max-width: 768px) {
    .approach-card {
        flex-direction: column;
        text-align: center;
    }
    .icon-box {
        margin: 0 auto;
    }
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.2, 0, 0.2, 1), transform 1s cubic-bezier(0.2, 0, 0.2, 1);
    will-change: opacity, transform;
    
}


.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .glass-card, 
.reveal.active .founder-card,
.reveal.active .mission-body > * {
    animation: fadeInUpSubtle 0.8s ease-out forwards;
}

.reveal.active .glass-card:nth-child(1) { animation-delay: 0.1s; }
.reveal.active .glass-card:nth-child(2) { animation-delay: 0.2s; }
.reveal.active .glass-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUpSubtle {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mission {
        margin-top:-50px;
    }
    .hero{
        padding-top: 150px;
        margin-bottom: 30px;
    }
    .orb-inner img{
        width: 90%;
        max-width: 300px;
        height: auto;
    }
    .orb-inner {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    h2{
        text-align: center;
        font-size: 2.5rem;
        padding: 20px;
    }
}

@media (max-width: 430px) {
    .slick-slide img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .card-grid {
        gap: 2rem;
        padding: 0 10px;
    }
    .mission-body {
        padding: 0 12px;
    }
    .mission-lead {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    .mission-body p {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    .mission-quote {
        padding: 1.2rem 1rem;
        border-radius: 0 16px 16px 0;
        margin-top: 1.5rem;
        margin-left: 0;
        margin-right: 0;
    }
    .mission-quote .quote-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .mission-quote .quote-mark {
        font-size: 2rem;
        margin-right: 0.25rem;
    }
}

/* ============================================
   GLASS CARD HOVER - BISCUIT THEME
   ============================================ */

.glass-card h4,
.glass-card p,
.glass-card .advance {
    color: #1a1a2e !important;
    transition: color 0.4s ease;
}

.glass-card .icon {
    color: #DFBC94 !important;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    background: rgba(44, 62, 80, 0.95) !important;
    border-color: rgba(223, 188, 148, 0.3) !important;
}

.glass-card:hover h4,
.glass-card:hover p,
.glass-card:hover .advance,
.glass-card:hover .progress-bar {
    color: #ffffff !important;
}

.glass-card:hover .icon {
    color: #DFBC94 !important;
    transform: scale(1.2) rotate(-10deg) !important;
}

.glass-card .advance {
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
    color: #000000;
}

.glass-card .advance:hover {
    transform: translateX(5px) !important;
    color: #ffffff !important;
}

.glass-card .fill {
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0;
    background: linear-gradient(90deg, #DFBC94, #ce7e4a);
}

.glass-card:hover .fill {
    width: var(--fill-width, 50%);
}

.glass-card:hover .progress-bar {
    color: #ffffff !important;
}

.glass-card:hover {
    background: rgba(44, 62, 80, 0.95) !important;
    border-color: rgba(223, 188, 148, 0.3) !important;
}

.glass-card[style] {
    background: rgba(255, 255, 255, 0.15) !important;
}

.glass-card:hover[style] {
    background: rgba(44, 62, 80, 0.95) !important;
}