/* ==========================================================================
   CSS Variables & Reset (Theme: Green & Gold)
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #143a31; /* Deep Green */
    --primary-dark: #0b211b; /* Dark Green */
    --accent-color: #c59b55; /* Gold */
    --accent-hover: #a58145; /* Darker Gold */
    --text-color: #10201c; /* Ink */
    --text-light: #60716a; /* Muted */
    --bg-color: #f6f3ea; /* Paper */
    --bg-light: #e3eee9; /* Soft Green Background */
    --bg-dark: #143a31; /* Dark Background */
    --bg-white: #ffffff; /* White */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
    
    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 3.5rem;
    
    /* Utility */
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(20,58,49, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    width: 100%;
    position: relative;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.large-text {
    font-size: 1.25rem;
    font-weight: 500;
}

.highlight-text {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.highlight-text-light {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.text-center { text-align: center; }
.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white p { color: #ffffff !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 2rem !important; }

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-primary { background-color: var(--primary-color); }

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-accent {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
}

.btn-outline-light {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a:not(.btn) {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-color);
    white-space: nowrap;
}

.nav-links a:not(.btn):hover,
.nav-links a.active:not(.btn) {
    color: var(--accent-color);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1050;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color) !important;
}

.nav-btn-compact {
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Offset for navbar */
    background: linear-gradient(135deg, rgba(249,247,244,1) 0%, rgba(255,255,255,1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.compact-h1 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.compact-sub {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.compact-p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(13, 43, 69, 0.15);
    z-index: 2;
    position: relative;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background-color: var(--accent-color);
    border-radius: var(--border-radius);
    z-index: 1;
    opacity: 0.2;
}

/* ==========================================================================
   The Secret Section
   ========================================================================== */
.the-secret {
    background: #143A31;
    position: relative;
    overflow: hidden;
}

.the-secret-bg {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 163, 115, 0.08) 0%, transparent 60%),
                radial-gradient(circle at bottom right, rgba(13, 43, 69, 0.8) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(135deg, #c59b55 0%, #e2b979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-accent {
    color: var(--accent-color) !important;
}

.secret-visual-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.secret-glass-card {
    background: rgba(255, 255, 255, 0.05);
    
    -webkit-
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    z-index: 1;
}

.card-glow { display: none; }

.accent-glow {
    background: rgba(212, 163, 115, 0.15);
}

.highlight-glass-card { border: 1px solid rgba(212, 163, 115, 0.3); background: rgba(255,255,255,0.05); }

.secret-list {
    list-style: none;
    flex-grow: 1;
}

.secret-list li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.secret-list li p {
    margin: 0;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.accent-box {
    background: rgba(212, 163, 115, 0.15);
    border-color: rgba(212, 163, 115, 0.3);
    color: var(--accent-color);
}

.secret-connector {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100px;
    flex-shrink: 0;
    gap: 10px;
}

.connector-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.5), transparent);
}

.connector-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.1);
    border: 1px solid rgba(212, 163, 115, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(212, 163, 115, 0.2);
}

.secret-alert { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1.25rem; border-radius: 12px; }

.secret-alert p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #ffffff;
}

.transformation-result { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1.25rem; border-radius: 12px; }

.transformation-result p {
    margin-bottom: 0;
    color: #f4d0a3;
    font-size: 1.1rem;
}

/* ==========================================================================
   Awareness Section (Exact UI Design Layout)
   ========================================================================== */
.design-section {
    background-color: #f7f9fa;
}

.design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.design-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.design-subtitle {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.design-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-dark);
}

.design-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem !important;
}

.d-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.d-border-bottom {
    border-bottom: 1px solid rgba(13, 43, 69, 0.1);
    padding-bottom: 0.75rem;
}

.d-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.d-text p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.5;
    letter-spacing: -0.2px;
    margin-bottom: 0;
}

.d-text p strong {
    color: var(--primary-dark);
}

.d-highlight-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(212, 163, 115, 0.4);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.05);
}

.d-highlight-box .d-icon {
    background: var(--primary-color);
    color: var(--accent-color);
}

.d-highlight-box .d-text p {
    font-size: 1.05rem;
    color: var(--text-color);
    letter-spacing: -0.2px;
}

.design-bottom-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.d-bottom-box {
    border: 1px solid rgba(13, 43, 69, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.d-bottom-box i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.d-bottom-box p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.design-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.design-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Definition Section
   ========================================================================== */
.definition-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.zen-circle-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zen-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(13, 43, 69, 0.05);
}

.zen-ring-1 {
    width: 100%;
    height: 100%;
    animation: pulse-ring 6s infinite alternate;
}

.zen-ring-2 {
    width: 75%;
    height: 75%;
    border: 1px dashed rgba(212, 163, 115, 0.4);
    animation: rotate-ring 30s linear infinite;
}

.zen-ring-3 {
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
}

.zen-core {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 2rem;
    box-shadow: 0 20px 40px rgba(13, 43, 69, 0.2);
    z-index: 2;
}

@keyframes rotate-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); border-color: rgba(13, 43, 69, 0.05); }
    100% { transform: scale(1.05); border-color: rgba(212, 163, 115, 0.2); }
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(20, 58, 49, 0.25);
    color: #143a31;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 20px;
    border: 1px solid rgba(20, 58, 49, 0.2);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.definition-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.definition-points li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 43, 69, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.definition-points p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.freedom-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3854 100%);
    color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(13, 43, 69, 0.2);
}

.freedom-badge i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.freedom-badge span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ==========================================================================
   Why Our Approach is Different
   ========================================================================== */
.four-pillars {
    margin-top: var(--spacing-md);
}

.pillar-card {
    background: rgba(255,255,255,0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.pillar-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* ==========================================================================
   A.R.I.S.E Framework
   ========================================================================== */
.arise-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.arise-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.2;
    z-index: 0;
}

.arise-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    margin-bottom: var(--spacing-md);
}

.step-letter {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 15px rgba(13, 43, 69, 0.2);
}

.arise-step h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.arise-step p {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 500;
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.program-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(13, 43, 69, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 43, 69, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.program-card.highlight-card {
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #ffffff;
    border: 1px solid rgba(197, 155, 85, 0.2);
    box-shadow: 0 20px 40px rgba(20, 58, 49, 0.15);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(20, 58, 49, 0.1);
}

.program-card.highlight-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(20, 58, 49, 0.25);
}

.program-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(20, 58, 49, 0.05);
    z-index: 0;
    transition: var(--transition);
}

.highlight-card .program-number {
    color: rgba(255, 255, 255, 0.03);
}

.program-card:hover .program-number {
    color: rgba(197, 155, 85, 0.1);
    transform: scale(1.1);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: rgba(20, 58, 49, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.highlight-card .program-icon {
    background: rgba(197, 155, 85, 0.15);
}

.program-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.highlight-card h3 {
    color: #ffffff;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
}

.program-footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.program-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.program-btn i {
    transition: transform 0.3s ease;
}

.program-btn:hover {
    color: var(--accent-color);
}

.program-btn:hover i {
    transform: translateX(5px);
}

.highlight-card .program-btn {
    color: var(--accent-color);
}

.highlight-card .program-btn:hover {
    color: #ffffff;
}

.program-btn.btn-primary {
    background: var(--accent-color);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: normal;
}

.program-btn.btn-primary:hover {
    background: #e6b885;
    color: #ffffff;
}

/* ==========================================================================
   Testimonials Slider
   ========================================================================== */
.testimonials .container {
    max-width: 1400px;
    padding: 0 4rem; /* Give room for absolute arrows */
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 2rem;
    -ms-overflow-style: none; /* hide scrollbar IE */
    scrollbar-width: none; /* hide scrollbar Firefox */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* hide scrollbar Chrome/Safari */
}

.t-card {
    flex: 0 0 calc(33.333% - 1rem); /* 3 items with 1.5rem gap */
    scroll-snap-align: start;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(13, 43, 69, 0.04);
    border: 1px solid rgba(212, 163, 115, 0.15);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.t-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(245,248,250,0.5) 100%);
    z-index: -1;
}

.t-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-color) 100%);
}

.t-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(13, 43, 69, 0.08);
    border-color: rgba(212, 163, 115, 0.4);
}

.t-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4.5rem;
    color: rgba(212, 163, 115, 0.08);
    z-index: 0;
}

.t-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.t-text {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.t-title {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(13, 43, 69, 0.08);
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bg-gradient-1 { background: linear-gradient(135deg, #1a3854, #0d2b45); }
.bg-gradient-2 { background: linear-gradient(135deg, #c59b55, #a58145); }
.bg-gradient-3 { background: linear-gradient(135deg, #2c3e50, #1a252f); }

.testimonial-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn-absolute {
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(13, 43, 69, 0.08);
    background: #ffffff;
    width: 60px !important;
    height: 60px !important;
    font-size: 1.4rem !important;
    border-color: rgba(212, 163, 115, 0.3) !important;
    color: var(--primary-dark) !important;
}

.carousel-btn-absolute:hover {
    box-shadow: 0 15px 30px rgba(13, 43, 69, 0.15);
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #ffffff !important;
    transform: scale(1.05);
}

.testimonials-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(13, 43, 69, 0.05);
    padding-top: 1.5rem;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
}

.carousel-controls.m-0 {
    margin: 0;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid rgba(13, 43, 69, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.t-meta {
    display: flex;
    flex-direction: column;
}

.t-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.t-role {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================================================
   About Page Premium Definition
   ========================================================================== */
.def-glass-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(20,58,49,0.06) !important;
    border-color: rgba(197,155,85,0.3) !important;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
    background-image: linear-gradient(rgba(13, 43, 69, 0.9), rgba(13, 43, 69, 0.9)), url('../images/cta-bg.jpg'); /* Optional background image */
    background-size: cover;
    background-position: center;
}

.final-cta .container {
    max-width: 800px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: var(--spacing-lg) 0 1rem 0;
}

.site-footer ul li a:hover {
    color: var(--accent-color) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: #ffffff !important;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: #888;
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-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; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .arise-timeline::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .testimonials .container {
        padding: 0 3.5rem;
    }
    .carousel-btn-absolute {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    .t-card {
        flex: 0 0 calc(50% - 0.75rem); /* 2 items on tablet */
    }

    .cta-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 3rem !important;
    }

    .cta-content {
        text-align: center !important;
    }
    
    .cta-buttons-wrapper, .cta-buttons {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
        --spacing-sm: 0.75rem;
    }

    h1, .compact-h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    p, .compact-p { font-size: 0.9rem; }
    .large-text, .compact-sub { font-size: 1rem; }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        gap: 1rem;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border-left: 2px solid var(--accent-color);
        border-radius: 0;
        padding: 0;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.active .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--spacing-xl);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 1rem;
        gap: var(--spacing-md);
    }
    
    .hero-text {
        max-width: 100%;
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }
    
    .hero-image-wrapper {
        order: 2;
        margin-top: 1rem;
    }
    
    .secret-visual-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .secret-connector {
        flex-direction: column;
        width: 100%;
        height: 80px;
    }

    .connector-line {
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(212, 163, 115, 0.5), transparent);
    }
    
    .design-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .design-content {
        padding: 0;
    }
    
    .design-bottom-blocks {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonials .container {
        padding: 0 1rem;
    }
    
    .carousel-btn-absolute {
        display: none !important;
    }

    .t-card {
        flex: 0 0 100%;
        padding: 2rem;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem !important;
        /* border-radius removed */
    }
    
    .cta-card h2 {
        font-size: 1.8rem !important;
    }
    
    .cta-pillars {
        flex-direction: column;
    }
    
    .cta-pillars span {
        width: 100%;
    }
    
    .testimonials-footer {
        flex-direction: column;
        gap: 2rem;
    }
    
    .arise-step {
        width: 100%;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .definition-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .definition-lead p {
        border-left: none !important;
        border-top: 4px solid var(--accent-color);
        padding-left: 0 !important;
        padding-top: 1rem;
    }

    .zen-circle-container {
        max-width: 250px;
        margin: 0 auto;
    }

    .definition-points li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .about-hero-grid {
        grid-template-columns: 1fr !important;
    }
    
    .about-hero-grid > div:nth-child(1) {
        order: 2; /* Text comes second */
    }
    
    .about-hero-grid > div:nth-child(2) {
        order: 1; /* Image comes first */
        margin-bottom: 2rem;
    }
    
    .about-hero-title { font-size: 2.2rem !important; }
    .philosophy-title { font-size: 1.6rem !important; line-height: 1.3; }
    .about-hero-lead { font-size: 1.1rem !important; }
    .about-hero-p { font-size: 0.95rem !important; }
    
    .philosophy-card {
        flex-direction: row !important;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 1.25rem !important;
        padding: 1.5rem !important;
    }
    .phil-icon-wrapper {
        margin-bottom: 0 !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .free-course-card {
        padding: 2.5rem 1.5rem !important;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.25rem;
        --spacing-md: 1rem;
    }

    h1, .compact-h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1.1rem; }
    p, .compact-p { font-size: 0.85rem; margin-bottom: 0.75rem; line-height: 1.5; }
    .large-text, .compact-sub { font-size: 0.95rem; margin-bottom: 0.5rem; }

    .the-secret h2 { font-size: 1.8rem !important; }
    .secret-glass-card { padding: 1.25rem; border-radius: 12px; }
    .secret-list li { margin-bottom: 0.85rem; gap: 0.85rem; }
    .secret-list li p { font-size: 0.85rem; }
    .icon-box { width: 35px; height: 35px; font-size: 0.9rem; border-radius: 8px; }
    .transformation-result { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1.25rem; border-radius: 12px; }
    .transformation-result p { font-size: 0.9rem; }
    .secret-alert { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1.25rem; border-radius: 12px; }
    .secret-alert p { font-size: 0.85rem; }
    .secret-connector { height: 50px; }
    .connector-icon { width: 35px; height: 35px; font-size: 0.9rem; }

    .design-title { font-size: 1.5rem; }
    .d-point, .d-highlight-box { gap: 0.75rem; }
    .d-icon { width: 30px; height: 30px; font-size: 0.8rem; }
    .d-text p, .d-highlight-box .d-text p { font-size: 0.85rem; }
    .design-bottom-blocks { gap: 1rem; }
    .d-bottom-box { padding: 1rem; gap: 0.75rem; }
    .d-bottom-box i { font-size: 2rem; }
    .d-bottom-box p { font-size: 0.85rem !important; }
    
    .hero-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .hero-buttons .btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .cta-card {
        padding: 3rem 1.25rem !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }

    .cta-card h2 br {
        display: none;
    }

    .cta-content {
        text-align: center !important;
        flex-basis: auto !important;
    }
    
    .cta-card > div[style*="position: absolute"] {
        display: none !important;
    }
    
    .cta-card h2 {
        font-size: 1.7rem !important;
    }

    .cta-card p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
    }
    
    .cta-buttons-wrapper {
        justify-content: center !important;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        justify-content: center !important;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}
/* ==========================================================================
   About Page Hero Fonts
   ========================================================================== */
.about-hero-title { font-size: 3.5rem; }
.about-hero-lead { font-size: 1.25rem; font-family: 'Poppins', sans-serif; }
.about-hero-p { font-size: 1.05rem; font-family: 'Poppins', sans-serif; }
.philosophy-title { font-size: 2.5rem; }
.philosophy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.phil-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(197,155,85,0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.free-course-card { padding: 4rem; }

@media (max-width: 768px) {
    .free-course-wrapper {
        padding: 2rem !important;
        border-radius: 24px !important;
    }
    
    .free-course-wrapper > div:nth-child(2) {
        /* On mobile, make the overlay darker across the whole image for readability */
        background: rgba(11,33,27,0.75) !important;
    }
    
    .free-course-content {
        padding: 2rem 1.5rem !important;
        text-align: center;
        margin: 0 auto;
    }
    
    .free-course-content h2 {
        font-size: 2rem !important;
    }
}

.regular-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 768px) {
    .regular-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

.course-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}
@media (max-width: 992px) {
    .course-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Responsive Icon Card */
.responsive-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.responsive-icon-card .icon-wrapper {
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .responsive-icon-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
    .responsive-icon-card .icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}






