/* ===================================
           CSS VARIABLES & ROOT STYLES
           =================================== */
        :root {
            /* Dark Theme Colors (Default) */
            --bg-primary: #0b0e17;
            --bg-secondary: #151b2e;
            --bg-hero: #000000;
            --bg-overview: rgb(13, 14, 19);
            --bg-story: rgb(15, 18, 26);
            --bg-mission:rgb(5, 12, 20);
            --bg-choose: rgb(10, 19, 37);
            --text-primary: #e8edf4;
            --text-secondary: #b8c5d8;
            --text-muted: #8a9ab0;
            --accent-primary: #d4af37;
            --accent-secondary: #f4d03f;
            --accent-glow: rgba(212, 175, 55, 0.15);
            --border-color: rgba(212, 175, 55, 0.15);
            --shadow-color: rgba(0, 0, 0, 0.5);

            /* CTA-specific colors */
            --cta-bg-start: #050810;
            --cta-bg-end: #0c1628;
            --cta-overlay: rgba(13, 20, 36, 0.95);
            
            /* Spacing */
            --hero-padding-y: 90px;
            --container-max-width: 1280px;
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        /* Light Theme Variables */
        body.light-theme {
            --bg-primary: #f5f7fa;
            --bg-secondary: #ffffff;
            --bg-hero: #f0f4f8;
            --bg-overview: white;
            --bg-story: white;
            --bg-mission: white;
            --bg-choose: white;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            --accent-primary: #c4941f;
            --accent-secondary: #e6c84f;
            --accent-glow: rgba(196, 148, 31, 0.08);
            --border-color: rgba(26, 32, 44, 0.1);
            --shadow-color: rgba(0, 0, 0, 0.1);


            --cta-bg-start: #e8eef5;
            --cta-bg-end: #d4dce8;
            --cta-overlay: rgba(232, 238, 245, 0.95);
        }

        /* ===================================
           RESET & BASE STYLES
           =================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            height: 100%;
        }

        body {
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            transition: background-color var(--transition-slow), color var(--transition-normal);
            height: 100%;
            width: 100%;
        }

        /* ===================================
           HERO SECTION STYLES
           =================================== */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 500px;
            background: linear-gradient(135deg, var(--bg-hero) 0%, var(--bg-secondary) 100%);
            padding: var(--hero-padding-y) 0;
            overflow: hidden;
            transition: background var(--transition-slow);
        }

        /* Decorative Background Elements */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            transition: background var(--transition-slow);
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            transition: background var(--transition-slow);
        }

        /* Hero Container */
        .hero-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            justify-content: center;
        }

        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .breadcrumb a:hover {
            color: var(--accent-primary);
        }

        .breadcrumb-separator {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .breadcrumb-current {
            color: var(--accent-primary);
            font-weight: 500;
        }

        /* Hero Content */
        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Main Heading */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            transition: color var(--transition-normal);
        }

        /* Accent text within title (optional highlight) */
        .hero-title-accent {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Subtitle */
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
            transition: color var(--transition-normal);
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Decorative Underline */
        .hero-underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            margin: 2rem auto 0;
            border-radius: 2px;
            transition: background var(--transition-slow);
        }

        /* Bottom Accent Line */
        .hero-accent-line {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 30%, var(--accent-secondary) 70%, transparent 100%);
            transition: background var(--transition-slow);
        }

        /* Stats or Key Points (Optional) */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-primary);
            display: block;
            margin-bottom: 0.5rem;
        }

        .hero-stat-label {
            font-size: 0.95rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ===================================
           RESPONSIVE STYLES
           =================================== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.15rem;
            }

            .hero-section {
                min-height: 450px;
                padding: 100px 0;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 400px;
                padding: 80px 0;
            }

            .hero-container {
                padding: 0 1.5rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                line-height: 1.7;
            }

            .breadcrumb {
                font-size: 0.85rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .hero-stat-number {
                font-size: 2rem;
            }

            .hero-stat-label {
                font-size: 0.85rem;
            }

            .hero-section::before,
            .hero-section::after {
                width: 400px;
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                min-height: 350px;
                padding: 60px 0;
            }

            .hero-container {
                padding: 0 1.25rem;
            }

            .hero-title {
                font-size: 2rem;
                margin-bottom: 1.25rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.6;
            }

            .breadcrumb {
                font-size: 0.8rem;
                gap: 0.4rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .hero-stat-number {
                font-size: 1.75rem;
            }

            .hero-stat-label {
                font-size: 0.8rem;
            }

            .hero-underline {
                width: 80px;
                height: 3px;
            }
        }

        /* ===================================
           ANIMATION (Optional Enhancement)
           =================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content > * {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .breadcrumb {
            animation-delay: 0.1s;
        }

        .hero-title {
            animation-delay: 0.2s;
        }

        .hero-subtitle {
            animation-delay: 0.3s;
        }

        .hero-underline {
            animation-delay: 0.4s;
        }

        .hero-stats {
            animation-delay: 0.5s;
        }


        /* ===================================
           COMPANY OVERVIEW SECTION
           =================================== */
        .company-overview-section {
            width: 100%;
            background-color: var(--bg-overview);
            padding: var(--section-padding) 0;
            transition: background-color var(--transition-slow);
        }

        .overview-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            transition: color var(--transition-normal);
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            margin: 0 auto;
            border-radius: 2px;
            transition: background var(--transition-slow);
        }

        /* Two-Column Layout */
        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Left Column - Text Content */
        .overview-text-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .overview-paragraph {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            text-align: justify;
            transition: color var(--transition-normal);
        }

        .overview-paragraph:first-child::first-letter {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-primary);
            float: left;
            line-height: 1;
            margin-right: 0.5rem;
            margin-top: 0.1rem;
        }

        /* Highlight box within text */
        .overview-highlight {
            background-color: var(--bg-secondary);
            border-left: 4px solid var(--accent-primary);
            padding: 1.5rem;
            margin-top: 1.5rem;
            border-radius: 8px;
            transition: background-color var(--transition-slow), border-color var(--transition-normal);
        }

        .overview-highlight-text {
            font-size: 1.05rem;
            color: var(--text-secondary);
            font-style: italic;
            transition: color var(--transition-normal);
        }

        .overview-highlight-author {
            font-size: 0.95rem;
            color: var(--accent-primary);
            margin-top: 0.75rem;
            font-weight: 600;
        }

        /* Right Column - Values Card */
        .overview-values-column {
            position: relative;
            display: flex;
            align-items: stretch;
            justify-content: center;
        }

        .values-card {
            background: var(--bg-secondary);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem;
            width: 100%;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-normal);
            box-shadow: 0 4px 20px var(--shadow-color);
        }

        .values-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            transition: background var(--transition-slow);
        }

        .values-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px var(--shadow-color);
            border-color: var(--accent-primary);
        }

        /* Values Header */
        .values-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .values-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            transition: color var(--transition-normal);
        }

        .values-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            transition: color var(--transition-normal);
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .value-item {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.75rem;
            text-align: center;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .value-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-glow), transparent);
            opacity: 0;
            transition: opacity var(--transition-normal);
        }

        .value-item:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
            box-shadow: 0 8px 20px var(--shadow-color);
        }

        .value-item:hover::before {
            opacity: 1;
        }

        /* Value Icon */
        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .value-icon-shape {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 12px;
            transition: all var(--transition-normal);
            position: relative;
            z-index: 1;
        }

        .value-item:hover .value-icon-shape {
            transform: rotate(45deg) scale(1.1);
        }

        .value-item:nth-child(2) .value-icon-shape {
            border-radius: 50%;
        }

        .value-item:nth-child(3) .value-icon-shape {
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        .value-item:nth-child(4) .value-icon-shape {
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        /* Value Label */
        .value-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            transition: color var(--transition-normal);
            position: relative;
            z-index: 1;
        }

        .value-description {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
            transition: color var(--transition-normal);
            position: relative;
            z-index: 1;
        }

        /* Bottom Accent */
        .values-accent {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .values-accent-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-style: italic;
        }

        /* ===================================
           RESPONSIVE STYLES
           =================================== */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.25rem;
            }

            .overview-content {
                gap: 3rem;
            }

            .overview-paragraph {
                font-size: 1.05rem;
            }

            .values-title {
                font-size: 1.5rem;
            }

            .value-icon {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 768px) {
            .company-overview-section {
                padding: 3.5rem 0;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .overview-container {
                padding: 0 1.5rem;
            }

            /* Switch to single column */
            .overview-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .overview-paragraph {
                font-size: 1rem;
                text-align: left;
            }

            .overview-paragraph:first-child::first-letter {
                font-size: 3rem;
            }

            .values-card {
                padding: 2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .value-item {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .company-overview-section {
                padding: 3rem 0;
            }

            .overview-container {
                padding: 0 1.25rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .title-underline {
                width: 60px;
                height: 3px;
            }

            .overview-paragraph {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .overview-paragraph:first-child::first-letter {
                font-size: 2.5rem;
            }

            .overview-highlight {
                padding: 1.25rem;
            }

            .overview-highlight-text {
                font-size: 0.95rem;
            }

            .values-card {
                padding: 1.5rem;
            }

            .values-header {
                margin-bottom: 1.5rem;
            }

            .values-title {
                font-size: 1.35rem;
            }

            .values-subtitle {
                font-size: 0.85rem;
            }

            .value-item {
                padding: 1.25rem;
            }

            .value-icon {
                width: 45px;
                height: 45px;
            }

            .value-label {
                font-size: 1rem;
            }

            .value-description {
                font-size: 0.85rem;
            }
        }

    

        /* ===================================
           OUR STORY SECTION
           =================================== */


        .our-story-section {
            width: 100%;
            background-color: var(--bg-story);
            padding: var(--section-padding) 0;
            transition: background-color var(--transition-slow);
            position: relative;
        }

        .story-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            transition: color var(--transition-normal);
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            margin: 0 auto;
            border-radius: 2px;
            transition: background var(--transition-slow);
        }

        /* Two-Column Layout */
        .story-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 5rem;
            align-items: center;
        }

        /* Left Column - Story Text */
        .story-text-column {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .story-intro {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--accent-primary);
            line-height: 1.6;
            margin-bottom: 0.5rem;
            transition: color var(--transition-normal);
        }

        .story-paragraph {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
            transition: color var(--transition-normal);
        }

        .story-paragraph:first-of-type::first-letter {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-primary);
            float: left;
            line-height: 1;
            margin-right: 0.5rem;
            margin-top: 0.1rem;
        }

        /* Milestone Cards */
        .story-milestones {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }

        .milestone-item {
            background-color: var(--bg-secondary);
            border-left: 3px solid var(--accent-primary);
            padding: 1.25rem 1.5rem;
            border-radius: 8px;
            transition: all var(--transition-normal);
            position: relative;
        }

        .milestone-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 13px;
            height: 13px;
            background-color: var(--accent-primary);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--accent-glow);
            transition: all var(--transition-normal);
        }

        .milestone-item:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 20px var(--shadow-color);
        }

        .milestone-item:hover::before {
            box-shadow: 0 0 25px var(--accent-glow);
            transform: translateY(-50%) scale(1.2);
        }

        .milestone-year {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent-primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.25rem;
        }

        .milestone-text {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Right Column - Visual Timeline */
        .story-visual-column {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
        }

        /* Timeline Visual */
        .timeline-visual {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding: 2rem 0;
        }

        /* Vertical Timeline Line */
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 10%;
            bottom: 10%;
            width: 2px;
            background: linear-gradient(180deg, 
                transparent 0%, 
                var(--accent-primary) 15%, 
                var(--accent-secondary) 50%,
                var(--accent-primary) 85%, 
                transparent 100%);
            transform: translateX(-50%);
            transition: background var(--transition-slow);
        }

        /* Timeline Nodes */
        .timeline-node {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem 0;
        }

        .node-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 50%;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow);
            transition: all var(--transition-normal);
        }

        .timeline-node:hover .node-circle {
            transform: scale(1.15);
            box-shadow: 0 0 40px var(--accent-glow), 0 0 80px var(--accent-glow);
        }

        .node-inner {
            width: 50px;
            height: 50px;
            background-color: var(--bg-secondary);
            border-radius: 50%;
            transition: background-color var(--transition-slow);
        }

        /* Node Label */
        .node-label {
            position: absolute;
            background-color: var(--bg-secondary);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            border: 1px solid var(--border-color);
            transition: all var(--transition-normal);
            box-shadow: 0 4px 15px var(--shadow-color);
    
        }


        .timeline-node:nth-child(odd) .node-label {
            left: 120%;
        }

        .timeline-node:nth-child(even) .node-label {
            right: 120%;
        }

        .timeline-node:hover .node-label {
            background-color: var(--accent-primary);
            color: var(--bg-primary);
            transform: scale(1.05);
        }

        /* Decorative Glow Elements */
        .glow-element {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            transition: background var(--transition-slow);
        }

        .glow-top {
            top: -5%;
            right: -10%;
        }

        .glow-bottom {
            bottom: -5%;
            left: -10%;
        }

        /* ===================================
           RESPONSIVE STYLES
           =================================== */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.25rem;
            }

            .story-content {
                gap: 4rem;
            }

            .story-intro {
                font-size: 1.15rem;
            }

            .story-paragraph {
                font-size: 1.05rem;
            }

            .node-circle {
                width: 70px;
                height: 70px;
            }

            .node-inner {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 768px) {
            .our-story-section {
                padding: 3.5rem 0;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .story-container {
                padding: 0 1.5rem;
            }

            /* Switch to single column */
            .story-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .story-intro {
                font-size: 1.1rem;
            }

            .story-paragraph {
                font-size: 1rem;
            }

            .story-paragraph:first-of-type::first-letter {
                font-size: 3rem;
            }

            /* Adjust visual for mobile */
            .story-visual-column {
                min-height: 400px;
            }

            .timeline-line {
                left: 20px;
                top: 5%;
                bottom: 5%;
            }

            .timeline-node {
                justify-content: flex-start;
                margin: 1.5rem 0;
            }

            .node-circle {
                width: 60px;
                height: 60px;
                margin-left: -10px;
            }

            .node-inner {
                width: 38px;
                height: 38px;
            }

            .node-label {
                font-size: 0.85rem;
                padding: 0.4rem 0.8rem;
            }

            .timeline-node:nth-child(odd) .node-label,
            .timeline-node:nth-child(even) .node-label {
                left: 70px;
                right: auto;
            }

            .glow-element {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .our-story-section {
                padding: 3rem 0;
            }

            .story-container {
                padding: 0 1.25rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .title-underline {
                width: 60px;
                height: 3px;
            }

            .story-intro {
                font-size: 1.05rem;
            }

            .story-paragraph {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .story-paragraph:first-of-type::first-letter {
                font-size: 2.5rem;
            }

            .milestone-item {
                padding: 1rem 1.25rem;
            }

            .milestone-year {
                font-size: 0.8rem;
            }

            .milestone-text {
                font-size: 0.9rem;
            }

            .story-visual-column {
                min-height: 350px;
            }

            .node-circle {
                width: 50px;
                height: 50px;
            }

            .node-inner {
                width: 32px;
                height: 32px;
            }

            .node-label {
                font-size: 0.8rem;
                padding: 0.35rem 0.7rem;
                left: 55px;
            }
        }


        /* ===================================
           OUR MISSION SECTION
           =================================== */
        .our-mission-section {
            width: 100%;
            background-color: var(--bg-mission);
            padding: var(--section-padding) 0;
            transition: background-color var(--transition-slow);
            position: relative;
        }

        .mission-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            transition: color var(--transition-normal);
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            margin: 0 auto;
            border-radius: 2px;
            transition: background var(--transition-slow);
        }

        /* Mission Card Container */
        .mission-card-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mission-card {
            max-width: 900px;
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow-color);
            transition: all var(--transition-slow);
        }

        /* Top Gradient Border */
        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
            transition: background var(--transition-slow);
        }

        /* Decorative Corner Accents */
        .mission-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            transition: background var(--transition-slow);
        }

        /* Mission Content */
        .mission-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Mission Icon Symbol */
        .mission-icon {
            width: 100px;
            height: 100px;
            margin-bottom: 2rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-symbol {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* Central Circle */
        .icon-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 50%;
            box-shadow: 0 0 20px var(--accent-glow);
            transition: all var(--transition-slow);
        }

        /* Orbiting Nodes */
        .icon-node {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--accent-primary);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--accent-glow);
            transition: all var(--transition-slow);
        }

        .icon-node:nth-child(1) {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .icon-node:nth-child(2) {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .icon-node:nth-child(3) {
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .icon-node:nth-child(4) {
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Connection Lines */
        .icon-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
            transition: background var(--transition-slow);
        }

        .icon-line:nth-child(5) {
            width: 50%;
            top: 50%;
            left: 25%;
            transform: translateY(-50%) rotate(45deg);
        }

        .icon-line:nth-child(6) {
            width: 50%;
            top: 50%;
            left: 25%;
            transform: translateY(-50%) rotate(-45deg);
        }

        /* Primary Mission Statement */
        .mission-statement-primary {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.5;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
            transition: color var(--transition-normal);
        }

        /* Supporting Text */
        .mission-statement-secondary {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 750px;
            transition: color var(--transition-normal);
        }

        /* Core Pillars */
        .mission-pillars {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .pillar-item {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 1rem 1.75rem;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            transition: all var(--transition-normal);
            position: relative;
        }

        .pillar-item::before {
            content: '';
            position: absolute;
            left: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background-color: var(--accent-primary);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-glow);
            transition: all var(--transition-normal);
        }

        .pillar-item:hover {
            transform: translateY(-4px);
            background-color: var(--accent-primary);
            color: var(--bg-primary);
            border-color: var(--accent-primary);
        }

        .pillar-item:hover::before {
            background-color: var(--bg-primary);
            box-shadow: 0 0 15px var(--bg-primary);
        }

        /* Decorative Bottom Glow */
        .mission-glow-bottom {
            position: absolute;
            bottom: -30%;
            left: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            transition: background var(--transition-slow);
        }

        /* ===================================
           RESPONSIVE STYLES
           =================================== */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.25rem;
            }

            .mission-card {
                padding: 3rem;
            }

            .mission-statement-primary {
                font-size: 1.6rem;
            }

            .mission-statement-secondary {
                font-size: 1.1rem;
            }

            .mission-icon {
                width: 90px;
                height: 90px;
            }

            .icon-center {
                width: 26px;
                height: 26px;
            }

            .icon-node {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 768px) {
            .our-mission-section {
                padding: 3.5rem 0;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .mission-container {
                padding: 0 1.5rem;
            }

            .mission-card {
                padding: 2.5rem 2rem;
            }

            .mission-icon {
                width: 80px;
                height: 80px;
                margin-bottom: 1.5rem;
            }

            .icon-center {
                width: 24px;
                height: 24px;
            }

            .icon-node {
                width: 16px;
                height: 16px;
            }

            .mission-statement-primary {
                font-size: 1.4rem;
            }

            .mission-statement-secondary {
                font-size: 1.05rem;
            }

            .mission-pillars {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .pillar-item {
                width: 100%;
                max-width: 300px;
                text-align: center;
                padding: 1rem 2rem;
            }

            .pillar-item::before {
                left: 50%;
                top: auto;
                bottom: 0.5rem;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 480px) {
            .our-mission-section {
                padding: 3rem 0;
            }

            .mission-container {
                padding: 0 1.25rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .title-underline {
                width: 60px;
                height: 3px;
            }

            .mission-card {
                padding: 2rem 1.5rem;
                border-radius: 16px;
            }

            .mission-icon {
                width: 70px;
                height: 70px;
            }

            .icon-center {
                width: 20px;
                height: 20px;
            }

            .icon-node {
                width: 14px;
                height: 14px;
            }

            .mission-statement-primary {
                font-size: 1.25rem;
                margin-bottom: 1.25rem;
            }

            .mission-statement-secondary {
                font-size: 1rem;
                line-height: 1.7;
            }

            .pillar-item {
                font-size: 0.95rem;
                padding: 0.9rem 1.75rem;
            }
        }

      
        /* Why Choose Section */

        :root {
            /* Spacing */
            --section-padding: 5rem;
            --container-max-width: 1280px;
            
        }
        
        /* ===================================
           WHY CHOOSE US SECTION
           =================================== */
        .why-choose-us-section {
            width: 100%;
            background-color: var(--bg-choose);
            padding: var(--section-padding) 0;
            transition: background-color var(--transition-slow);
            position: relative;
        }

        .why-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            transition: color var(--transition-normal);
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-top: 0.75rem;
            transition: color var(--transition-normal);
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            margin: 0 auto;
            border-radius: 2px;
            transition: background var(--transition-slow);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        /* Feature Card */
        .feature-card {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-normal);
            box-shadow: 0 4px 20px var(--shadow-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Top Gradient Border */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            transition: background var(--transition-slow);
        }

        /* Decorative Corner Element */
        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            transition: opacity var(--transition-normal);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-primary);
            box-shadow: 0 12px 40px var(--shadow-color);
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        /* Icon Container */
        .feature-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 1.75rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            transition: transform var(--transition-normal);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .icon-background {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 16px;
            opacity: 0.15;
            transition: all var(--transition-normal);
        }

        .feature-card:hover .icon-background {
            opacity: 0.25;
            box-shadow: 0 0 30px var(--accent-glow);
        }

        /* Icon Graphics (Pure CSS) */
        .icon-graphic {
            position: relative;
            z-index: 1;
            width: 50px;
            height: 50px;
        }

        /* Icon 1: Experienced Team (Stacked People) */
        .icon-team {
            position: relative;
        }

        .icon-team .person {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--accent-primary);
            border-radius: 50%;
            transition: background-color var(--transition-normal);
        }

        .icon-team .person::after {
            content: '';
            position: absolute;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 20px;
            background-color: var(--accent-primary);
            border-radius: 10px 10px 0 0;
            transition: background-color var(--transition-normal);
        }

        .icon-team .person:nth-child(1) {
            top: 0;
            left: 15px;
        }

        .icon-team .person:nth-child(2) {
            top: 8px;
            left: 0;
            opacity: 0.7;
        }

        .icon-team .person:nth-child(3) {
            top: 8px;
            right: 0;
            opacity: 0.7;
        }

        /* Icon 2: Client-Focused (Target) */
        .icon-target {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .target-ring {
            position: absolute;
            border: 3px solid var(--accent-primary);
            border-radius: 50%;
            transition: border-color var(--transition-normal);
        }

        .target-ring:nth-child(1) {
            width: 50px;
            height: 50px;
        }

        .target-ring:nth-child(2) {
            width: 35px;
            height: 35px;
        }

        .target-ring:nth-child(3) {
            width: 20px;
            height: 20px;
        }

        .target-center {
            width: 10px;
            height: 10px;
            background-color: var(--accent-primary);
            border-radius: 50%;
            position: relative;
            z-index: 1;
            transition: background-color var(--transition-normal);
        }

        /* Icon 3: Modern Technologies (Layered Squares) */
        .icon-tech {
            position: relative;
            width: 50px;
            height: 50px;
        }

        .tech-layer {
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: var(--accent-primary);
            border-radius: 6px;
            transition: background-color var(--transition-normal);
        }

        .tech-layer:nth-child(1) {
            top: 0;
            left: 0;
            opacity: 1;
        }

        .tech-layer:nth-child(2) {
            top: 10px;
            left: 10px;
            opacity: 0.7;
        }

        .tech-layer:nth-child(3) {
            top: 20px;
            left: 20px;
            opacity: 0.4;
        }

        /* Icon 4: Reliable Support (Shield with Check) */
        .icon-support {
            position: relative;
            width: 50px;
            height: 50px;
        }

        .shield {
            position: absolute;
            width: 40px;
            height: 48px;
            background-color: var(--accent-primary);
            clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
            transition: background-color var(--transition-normal);
        }

        .checkmark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -60%) rotate(45deg);
            width: 12px;
            height: 20px;
            border-right: 4px solid var(--bg-secondary);
            border-bottom: 4px solid var(--bg-secondary);
            z-index: 1;
            transition: border-color var(--transition-slow);
        }

        /* Feature Content */
        .feature-content {
            position: relative;
            z-index: 1;
        }

        .feature-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            transition: color var(--transition-normal);
        }

        .feature-description {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            transition: color var(--transition-normal);
        }

        /* ===================================
           RESPONSIVE STYLES
           =================================== */
        @media (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.25rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .feature-card {
                padding: 2.25rem 1.75rem;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
            }

            .icon-graphic {
                width: 45px;
                height: 45px;
            }

            .feature-title {
                font-size: 1.25rem;
            }

            .feature-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            .why-choose-us-section {
                padding: 3.5rem 0;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .why-container {
                padding: 0 1.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }

            .feature-card {
                padding: 2rem 1.5rem;
            }

            .feature-icon {
                width: 75px;
                height: 75px;
            }
        }

        @media (max-width: 480px) {
            .why-choose-us-section {
                padding: 3rem 0;
            }

            .why-container {
                padding: 0 1.25rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .title-underline {
                width: 60px;
                height: 3px;
            }

            .feature-card {
                padding: 1.75rem 1.25rem;
                border-radius: 14px;
            }

            .feature-icon {
                width: 65px;
                height: 65px;
                margin-bottom: 1.5rem;
            }

            .icon-graphic {
                width: 40px;
                height: 40px;
            }

            .feature-title {
                font-size: 1.15rem;
                margin-bottom: 0.75rem;
            }

            .feature-description {
                font-size: 0.9rem;
                line-height: 1.6;
            }
        }

      
        /* Call To Action section */

    
        .cta-section {
            width: 100%;
            background: linear-gradient(135deg, var(--cta-bg-start) 0%, var(--cta-bg-end) 100%);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            transition: background var(--transition-slow);
        }

        /* Background Pattern Overlay */
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, var(--accent-glow) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--accent-glow) 0%, transparent 50%);
            opacity: 0.6;
            pointer-events: none;
            transition: background var(--transition-slow);
        }

        /* Decorative Floating Orbs */
        .cta-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent-primary), transparent);
            opacity: 0.1;
            pointer-events: none;
            transition: background var(--transition-slow);
        }

        .cta-orb.orb-1 {
            width: 400px;
            height: 400px;
            top: -200px;
            left: -100px;
        }

        .cta-orb.orb-2 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            right: -50px;
        }

        .cta-orb.orb-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Container */
        .cta-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        /* Content Wrapper */
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        /* Decorative Top Accent */
        .cta-accent-top {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
            border-radius: 2px;
            transition: background var(--transition-slow);
        }

        /* Main Heading */
        .cta-heading {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin: 0;
            transition: color var(--transition-normal);
        }

        .cta-heading-highlight {
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: background var(--transition-slow);
        }

        /* Supporting Text */
        .cta-description {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 600px;
            margin: 0;
            transition: color var(--transition-normal);
        }

        /* CTA Button */
        .cta-button-wrapper {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.25rem 3rem;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--bg-primary);
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border: none;
            border-radius: 12px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
            transition: all var(--transition-normal);
            text-decoration: none;
        }

        /* Button Glow Effect */
        .cta-button::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 12px;
            opacity: 0;
            z-index: -1;
            transition: opacity var(--transition-normal);
            filter: blur(10px);
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .cta-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        /* Button Arrow Icon */
        .button-arrow {
            display: inline-block;
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform var(--transition-normal);
        }

        .button-arrow::before,
        .button-arrow::after {
            content: '';
            position: absolute;
            background-color: var(--bg-primary);
            transition: background-color var(--transition-normal);
        }

        .button-arrow::before {
            width: 20px;
            height: 3px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .button-arrow::after {
            width: 10px;
            height: 3px;
            top: 50%;
            right: 0;
            transform: translateY(-50%) rotate(45deg);
            transform-origin: right center;
        }

        .cta-button:hover .button-arrow {
            transform: translateX(5px);
        }

        /* Secondary Text Below Button */
        .cta-secondary-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            transition: color var(--transition-normal);
        }

        /* Decorative Bottom Accent */
        .cta-accent-bottom {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
            border-radius: 2px;
            margin-top: 1rem;
            transition: background var(--transition-slow);
        }

        /* ===================================
           RESPONSIVE STYLES
           =================================== */
        @media (max-width: 1024px) {
            .cta-heading {
                font-size: 2.5rem;
            }

            .cta-description {
                font-size: 1.15rem;
            }

            .cta-button {
                padding: 1.15rem 2.75rem;
                font-size: 1.1rem;
            }

            .cta-orb.orb-1 {
                width: 350px;
                height: 350px;
            }

            .cta-orb.orb-2 {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 4.5rem 0;
            }

            .cta-container {
                padding: 0 1.5rem;
            }

            .cta-content {
                gap: 1.75rem;
            }

            .cta-heading {
                font-size: 2rem;
            }

            .cta-description {
                font-size: 1.05rem;
            }

            .cta-button {
                padding: 1rem 2.5rem;
                font-size: 1.05rem;
                width: 100%;
                max-width: 350px;
            }

            .cta-accent-top,
            .cta-accent-bottom {
                width: 80px;
                height: 3px;
            }

            .cta-orb.orb-1 {
                width: 300px;
                height: 300px;
            }

            .cta-orb.orb-2 {
                width: 200px;
                height: 200px;
            }

            .cta-orb.orb-3 {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .cta-section {
                padding: 4rem 0;
            }

            .cta-container {
                padding: 0 1.25rem;
            }

            .cta-content {
                gap: 1.5rem;
            }

            .cta-heading {
                font-size: 1.75rem;
                line-height: 1.3;
            }

            .cta-description {
                font-size: 1rem;
                line-height: 1.6;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .cta-secondary-text {
                font-size: 0.9rem;
            }

            .button-arrow {
                width: 18px;
                height: 18px;
            }

            .button-arrow::before {
                width: 18px;
                height: 2.5px;
            }

            .button-arrow::after {
                width: 9px;
                height: 2.5px;
            }
        }
