 
        :root {
            --color-primary: #b28c42;
            --color-secondary: #C19A6B;
            --color-background: #FAF8F5;
            --color-white: #FFFFFF;
            --color-text-primary: #2C2C2C;
            --color-text-secondary: #6B6B6B;
            --color-border: #E8E2DB;
            --color-accent: #D4AF37;
            --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #C19A6B 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ========================================
           GLOBAL SECTION HEADING SYSTEM
        ======================================== */

        /* Main container for section headings */
        .section-head {
            position: relative;
            z-index: 1;
        }

        /* Default: Center aligned */
        .section-head.is-center {
            text-align: center;
        }

        /* Left aligned variant */
        .section-head.is-left {
            text-align: left;
        }

        /* Subtitle (eyebrow text above main heading) */
        .section-subtitle {
            font-size: 0.8125rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: 20px;
            font-weight: 600;
            display: inline-block;
        }

        /* Main heading */
        .section-title {
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 28px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-top: 0;
        }

        /* Supporting intro paragraph (optional) */
        .section-intro {
            max-width: 750px;
            font-size: 1.0625rem;
            color: var(--color-text-secondary);
            line-height: 1.9;
            font-weight: 300;
            margin-bottom: 0;
        }

        /* Center alignment auto-centers intro text */
        .section-head.is-center .section-intro {
            margin-left: auto;
            margin-right: auto;
        }

        /* Left alignment keeps intro text left */
        .section-head.is-left .section-intro {
            margin-left: 0;
            margin-right: 0;
        }

        /* Spacing Modifiers */
        .section-head.has-spacing-lg {
            margin-bottom: 80px;
        }

        .section-head.has-spacing-md {
            margin-bottom: 50px;
        }

        .section-head.has-spacing-sm {
            margin-bottom: 30px;
        }

        /* Optional decorative divider */
        .section-divider {
            width: 100px;
            height: 3px;
            background: var(--gradient-gold);
            margin: 28px 0;
            position: relative;
            border-radius: 2px;
        }

        .section-head.is-center .section-divider {
            margin-left: auto;
            margin-right: auto;
        }

        .section-head.is-left .section-divider {
            margin-left: 0;
        }

        .section-divider::after {
            content: '';
            position: absolute;
            right: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: var(--color-accent);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
        }

        /* Responsive Design for Section Headings */
        @media (max-width: 991px) {
            .section-title {
                font-size: 2.75rem;
            }

            .section-head.has-spacing-lg {
                margin-bottom: 60px;
            }

            .section-head.has-spacing-md {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 767px) {
            .section-title {
                font-size: 2.25rem;
            }

            .section-subtitle {
                font-size: 0.75rem;
                letter-spacing: 2px;
                margin-bottom: 16px;
            }

            .section-intro {
                font-size: 1rem;
            }

            .section-head.has-spacing-lg {
                margin-bottom: 50px;
            }

            .section-head.has-spacing-md {
                margin-bottom: 35px;
            }

            .section-head.has-spacing-sm {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 575px) {
            .section-title {
                font-size: 1.875rem;
            }

            .section-divider {
                width: 80px;
                height: 2px;
            }
        }

        /* ========================================
           SECTION-SPECIFIC CLASS ALIASES
           Each section has unique classes but shares global styles
        ======================================== */

        /* About Us Section */
        .about-label {
            font-size: 0.8125rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: 20px;
            font-weight: 600;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(193, 154, 107, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(193, 154, 107, 0.2);
        }

        .about-title {
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 32px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        /* Sustainability Section */
        .sustainability-label {
            font-size: 0.8125rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: 20px;
            font-weight: 600;
            display: inline-block;
        }

        .sustainability-title {
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 28px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .sustainability-intro {
            max-width: 750px;
            margin: 0 auto;
            font-size: 1.0625rem;
            color: var(--color-text-secondary);
            line-height: 1.9;
            font-weight: 300;
        }

        /* Journey Section */
        .journey-label {
            font-size: 0.8125rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: 20px;
            font-weight: 600;
            display: inline-block;
        }

        .journey-title {
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 32px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .journey-intro {
            max-width: 750px;
            margin: 0 auto;
           font-size: 16px;
           line-height: 26px;
        }

        /* Responsive for section-specific classes */


        /* ========================================
           MINIMAL BANNER HERO SECTION
        ======================================== */

        .minimal-banner-hero {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../dummy/b_Can_you_increase_the.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

        /* Overlay for text readability */
        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(44, 44, 44, 0.45) 0%,
                    rgba(44, 44, 44, 0.25) 100%);
            z-index: 1;
        }

        /* Heading Wrapper */
        .banner-heading-wrapper {
            position: relative;
            z-index: 2;
            text-align: center;
            /*padding: 40px 20px;*/
        }

        @keyframes bannerFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Minimal Banner Heading */
        .minimal-banner-heading {
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    /* line-height: 2; */
    /* letter-spacing: -0.5px; */
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 56px;
}


        /* ========================================
           ABOUT US HERO SECTION
        ======================================== */
        .about-hero-section {
            /* min-height: 100vh; */
            display: flex;
            align-items: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #FFFCF7 0%, var(--color-background) 50%, #F5F1EB 100%);
            background: #f8f4f0;
            position: relative;
            overflow: hidden;
            padding-bottom: 100px;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* About Content */
        .about-content {
            padding-right: 40px;
        }



        .about-label {
            font-size: 0.8125rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: 20px;
            font-weight: 600;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(193, 154, 107, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(193, 154, 107, 0.2);
        }

        .about-title {

            font-weight: 400;
            color: var(--color-primary);
            margin-bottom: 15px;


            font-size: 42px;
            line-height: 50.4px;
        }



        .about-divider {
            width: 100px;
            height: 4px;
            background: var(--gradient-gold);
            margin-bottom: 32px;
            position: relative;
            border-radius: 2px;
        }

        .about-divider::after {
            content: '';
            position: absolute;
            right: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: var(--color-accent);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
        }

        .about-story {
            /* font-size: 1.125rem; */
            /* color: var(--color-text-secondary); */
            line-height: 2;
            /* margin-bottom: 48px; */
            /* font-weight: 300; */
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 20px;
        }



        /* Stats Highlights */
        .about-stats {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 48px;
            padding: 32px 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 12px;
        }



        .stat-label {
            font-size: 0.875rem;
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--color-primary);
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: linear-gradient(180deg, transparent, var(--color-border), transparent);
        }

        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 25px;
            background: var(--color-white);
            color: var(--color-primary);
            text-decoration: none;
            border-radius: 5px;
            border: 1px solid var(--color-primary);
            /* font-weight: 600; */
            font-size: 16px;
            /* letter-spacing: 0.5px; */
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(178, 140, 66, 0.15);
            position: relative;
            overflow: hidden;
            background: #b28c42;
            color: #fff;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-gold);
            transform: translateY(100%);
            transition: transform 0.4s ease;
            z-index: -1;
        }

        .cta-button:hover {
            color: var(--color-white);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(178, 140, 66, 0.3);
        }

        .cta-button:hover::before {
            transform: translateY(0);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.4s ease;
        }

        .cta-button:hover svg {
            transform: translateY(4px);
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(4px);
            }

            50% {
                transform: translateY(8px);
            }
        }

        /* Image Section */
        .about-image-wrapper {
            position: relative;
        }



        .about-hero-image {
            width: 100%;
            height: 650px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(139, 115, 85, 0.2);
            position: relative;
            z-index: 2;
        }

        /* Decorative Frame */
        .image-decoration {
            position: absolute;
            top: -20px;
            right: -20px;
            width: calc(100% - 40px);
            height: calc(100% - 40px);
            border: 2px solid var(--color-secondary);
            border-radius: 24px;
            z-index: 1;
            opacity: 0.3;
        }

        /* Image Overlay Badge */
        .image-overlay {
            position: absolute;
            bottom: 40px;
            left: 40px;
            z-index: 3;
        }

        .overlay-badge {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 24px 32px;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .badge-year {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-secondary);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .badge-number {

            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .scroll-line {
            width: 2px;
            height: 60px;
            background: linear-gradient(180deg, transparent, var(--color-primary));
            position: relative;
        }

        .scroll-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: var(--color-primary);
            border-radius: 50%;
            animation: scrollDot 2s ease-in-out infinite alternate;
        }

        @keyframes scrollDown {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes scrollDot {
            0% {
                top: 0;
            }

            100% {
                top: 100%;
            }
        }



        /* ========================================
           SUSTAINABILITY SECTION
        ======================================== */

        .sustainability-section {

            background: #fff;
            position: relative;
            overflow: hidden;
        }

        .sustainability-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-border) 50%, transparent);
            display: none;
        }

        /* Section Header */
        .sustainability-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-subtitle-sustain {
            font-size: 0.8125rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-title-sustain {

            font-size: 3.5rem;
            font-weight: 500;
            color: var(--color-primary);
            margin-bottom: 28px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .section-intro-sustain {
            max-width: 750px;
            margin: 0 auto;
            font-size: 1.0625rem;
            color: var(--color-text-secondary);
            line-height: 1.9;
            font-weight: 300;
        }

        /* Values Grid */
        .values-grid {
            margin-top: 10px;
        }

        /* Value Cards */
        .value-card {
            padding: 40px 0;
            position: relative;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .value-card.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .value-card.left {
            text-align: right;
            padding-right: 40px;
        }

        .value-card.right {
            text-align: left;
            padding-left: 40px;
        }

        /* Value Number Badge */
        .value-number {

            font-size: 1rem;
            font-weight: 600;
            color: var(--color-secondary);
            background: rgba(193, 154, 107, 0.1);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(193, 154, 107, 0.25);
            transition: all 0.3s ease;
        }

        .value-card.left .value-number {
            margin-left: auto;
        }

        .value-card:hover .value-number {
            background: var(--gradient-gold);
            color: var(--color-white);
            border-color: transparent;
            transform: scale(1.1);
        }

        /* Value Content */
        .value-content {
            margin-bottom: 16px;
        }

        .value-title {

            font-size: 1.75rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 12px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .value-card:hover .value-title {
            color: var(--color-secondary);
        }

        .value-description {
            font-size: 0.9375rem;
            color: var(--color-text-secondary);
            line-height: 1.8;
            margin: 0;
            font-weight: 300;
        }

        /* Accent Line */
        .value-accent-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--color-border), transparent);
            margin-top: 20px;
            transition: all 0.4s ease;
        }

        .value-card.left .value-accent-line {
            margin-left: auto;
            background: linear-gradient(90deg, transparent, var(--color-border));
        }

        .value-card:hover .value-accent-line {
            width: 80px;
            background: var(--gradient-gold);
        }

        /* Center Product */
        .center-product {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 60px 0;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .product-image-wrapper {
            position: relative;
            z-index: 3;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .center-product:hover .product-image-wrapper {
            transform: translateY(-10px);
        }

        .product-image {
            width: 100%;
            max-width: 350px;
            height: auto;
            display: block;
            filter: drop-shadow(0 20px 40px rgba(139, 115, 85, 0.2));
            transition: filter 0.4s ease;
        }

        .center-product:hover .product-image {
            filter: drop-shadow(0 30px 60px rgba(139, 115, 85, 0.35));
        }

        /* Decorative Circle */
        .product-decoration {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            border: 1px solid var(--color-border);
            border-radius: 50%;
            z-index: 1;
            opacity: 0.4;
            transition: all 0.6s ease;
        }

        .center-product:hover .product-decoration {
            width: 320px;
            height: 320px;
            border-color: var(--color-secondary);
            opacity: 0.6;
        }

        /* Glow Effect */
        .product-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 2;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.8;
            }
        }



        /* ========================================
           JOURNEY SECTION
        ======================================== */

        /* Journey Section */
        .journey-section {
            padding: 60px 0;
            background: linear-gradient(180deg, #FAF8F5 0%, #F5F1EB 50%, #FAF8F5 100%);
            position: relative;
            overflow: hidden;
        }

        .journey-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-border) 50%, transparent);
        }

        /* Decorative Background Elements */
        .journey-section::after {
            content: '';
            position: absolute;
            top: 20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .section-subtitle {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: 24px;
            font-weight: 600;
            display: inline-block;
        }

        .section-title {
            
            font-size: 4rem;
            font-weight: 500;
            color: var(--color-primary);
            margin-bottom: 32px;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .section-intro {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.125rem;
            color: var(--color-text-secondary);
            line-height: 1.8;
            font-weight: 300;
        }

        /* Milestones Container */
        .milestones-container {
            position: relative;
            margin-top: 60px;
            padding-bottom: 60px;
        }

        /* Central Timeline Line */
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(212, 175, 55, 0.2);
            transform: translateX(-50%);
            z-index: 1;
        }

        /* Milestone Row */
        .milestone-row {
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .milestone-row:last-child {
            margin-bottom: 0;
        }

        /* Timeline Dot */
        .timeline-dot {
            width: 12px;
            height: 12px;
            background: var(--color-primary);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            box-shadow: 0 0 0 6px rgba(250, 248, 245, 1);
            /* Match bg color to create spacing */
        }

        .timeline-dot.left {
            right: -6px;
            /* align to center line from left column */
        }

        .timeline-dot.right {
            left: -6px;
            /* align to center line from right column */
        }

        /* Image Container */
        .milestone-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 20px 40px rgba(139, 115, 85, 0.1);
            transition: box-shadow 0.5s ease;
            width: 100%;
        }

        .milestone-image-container:hover {
            box-shadow: 0 30px 60px rgba(139, 115, 85, 0.15);
        }

        .milestone-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Year Badge on Image */
        .image-year-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            color: var(--color-primary);
            padding: 8px 16px;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        /* Content Container */
        .milestone-content {
            position: relative;
        }

        /* Number Badge */
        .milestone-number {
            
            font-size: 120px;
            font-weight: 400;
            color: rgba(212, 175, 55, 0.15);
            /* Subtle watermark */
            line-height: 1;
            position: absolute;
            top: -60px;
            left: -20px;
            z-index: 0;
            pointer-events: none;
            display: none;
        }

        .milestone-text {
            position: relative;
            z-index: 1;
        }

        /* Phase Title */
        .milestone-phase {
            
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--color-primary);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        /* Decorative Line */
        .milestone-divider {
            width: 60px;
            height: 1px;
            background: var(--color-primary);
            margin: 24px 0;
            opacity: 0.5;
        }

        /* Description */
        .milestone-description {
            font-size: 1.0625rem;
            color: var(--color-text-secondary);
            line-height: 1.8;
            margin-bottom: 0;
            font-weight: 300;
        }

        @media (max-width: 991px) {
            .milestone-row {
                margin-bottom: 80px;
            }

            .section-title {
                font-size: 3rem;
            }

            .milestone-number {
                font-size: 80px;
                top: -40px;
            }
        }
        
        .text-md-right{
            text-align: left;
        }
        
        .text-md-left{
            text-align:right;
        }
 
 
  /*-----------Media Query Code Start Here-----------*/
    
    @media only screen and (max-width: 600px){
        .minimal-banner-hero {
   
    padding: 40px 0;
   
}
   .minimal-banner-heading {
    font-size: 36px;
  
   
    margin: 0;
    text-shadow: unset;
    line-height: 44px;
}  
.about-title {
  
    margin-bottom: 10px;
   
    font-size: 32px;
    line-height: 36px;
}
.about-content {
    padding-right: 0;
}

.about-label {
    font-size: 0.8125rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 14px;
    font-weight: 600;
    display: inline-block;
    padding: 5px 20px;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(193, 154, 107, 0.2);
}

.cta-button, .about-image-wrapper, .about-stats{
    display: none;
}
.value-card.left , .value-card.right{
    text-align: right;
    padding-right: 40px;
    text-align: center;
    padding: 20px;
    border-radius: 7px;
    box-shadow: 0 0 40px rgb(168 111 50 / 15%);
    margin-bottom: 10px;
}
.value-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-size: 24px;
    margin-bottom: 3px;
    font-weight: 500;
    color: #b28c42;
    margin-bottom: 10px;
}
.value-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 24px;
    margin: 0;
    font-weight: 400;
}
.milestone-phase {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 32px;
    line-height: 36px;
}

.milestone-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 300;
}
    .milestone-row {
        margin-bottom: 30px;
    }
.text-md-left {
    text-align: left;
}
.milestone-divider {
    width: 60px;
    height: 1px;
    background: var(--color-primary);
    margin: 15px 0;
    opacity: 0.5;
    margin-left: 0 !important;
}
.milestone-phase {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 26px;
    line-height: 30px;
}


.milestones-container {
    position: relative;
    margin-top: 0;
    padding-bottom: 0;
}
.milestone-row {
        margin-bottom: 30px;
        margin-top: 20px;
    }

    }