	/* ============================================
										ABOUT SECTION
										============================================ */
	.aboutContainer {
	    margin: 0 auto;
	    padding: 5% 0% 0% 0%; 

	}

	.about-section {
	    padding: 00px 0;
	    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
	    position: relative;
	    overflow: hidden;
	}

	.about-section::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    right: 0;
	    width: 600px;
	    height: 600px;
	    background: radial-gradient(circle, rgba(139, 92, 72, 0.03) 0%, transparent 70%);
	    border-radius: 50%;
	    pointer-events: none;
	}

	/* ============================================
										HERO INTRODUCTION
										============================================ */
	.about-hero {
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	    gap: 80px;
	    align-items: center;
	    margin-bottom: 0px;
	    padding: 0% 10%;
	}

	.hero-content {
	    opacity: 0;
	    transform: translateY(30px);
	    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
	}

	@keyframes fadeInUp {
	    to {
	        opacity: 1;
	        transform: translateY(0);
	    }
	}

	.section-label {
	    display: inline-block;
	    padding: 8px 20px;
	    background: rgba(139, 92, 72, 0.08);
	    color: var(--themeColor);
	    border-radius: 50px;
	    font-size: 13px;
	    font-weight: normal;
	    letter-spacing: 1.5px;
	    text-transform: uppercase;
	    margin-bottom: 24px;
	}

	.hero-content .sectionTitle {
	    font-family: var(--fontFamilyMarcellus);
	    font-size: 56px;
	    font-weight: bold;
	    line-height: 1.2;
	    color: #1a1a1a;
	    margin-bottom: 24px;
	    letter-spacing: 2px;
	}

	.title-accent {
	    display: block;
	    background: linear-gradient(135deg, #053E81 0%, #4A8F01 100%);
	    -webkit-background-clip: text;
	    -webkit-text-fill-color: transparent;
	    background-clip: text;
	}

	.section-description {
	    font-size: 18px;
	    line-height: 1.8;
	    color: #4a4a4a;
	    max-width: 580px;
	    font-weight: 300;
	}

 
	/* ============================================
										STATS GRID
										============================================ */
	.stats-grid {
	    display: grid;
	    grid-template-columns: repeat(6, 1fr);
	    gap: 30px;
	    padding: 0% 10%;
	    margin-bottom: 70px;
	}

	.stat-card {
	    background: white;
	    padding: 40px 24px;
	    border-radius: 20px;
	    text-align: center;
	    margin-top: 45px;
	    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	    opacity: 0;
	    transform: translateY(30px);
	    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	}

	.stat-card:nth-child(1) {
	    animation-delay: 0.6s;
	}

	.stat-card:nth-child(2) {
	    animation-delay: 0.7s;
	}

	.stat-card:nth-child(3) {
	    animation-delay: 0.8s;
	}

	.stat-card:nth-child(4) {
	    animation-delay: 0.9s;
	}

	.stat-card:nth-child(5) {
	    animation-delay: 1s;
	}

	.stat-card:nth-child(6) {
	    animation-delay: 1.1s;
	}

	.stat-card:hover {
	    transform: translateY(-8px);
	    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	}

	.stat-icon {
	    width: 60px;
	    height: 60px;
	    margin: 0 auto 20px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    background: linear-gradient(135deg, rgba(139, 92, 72, 0.08), rgba(166, 124, 82, 0.08));
	    border-radius: 16px;
	    transition: transform 0.3s ease;
	}

	.stat-card:hover .stat-icon {
	    transform: scale(1.1);
	}

	.stat-icon img {
	    width: 36px;
	    height: 36px;
	    object-fit: contain;
	}

	.stat-number {
	    font-family: var(--fontFamilyMulish);
	    font-size: 36px;
	    font-weight: bold;
	    color: var(--themeColor);
	    margin-bottom: 8px;
	}

	.stat-label {
	    font-size: 18px;
	    font-weight: 600;
	    color: #1a1a1a;
	    margin-bottom: 4px;
	    font-family: var(--fontFamilyMarcellus);
	}

	.stat-description {
	    font-size: 13px;
	    color: #6a6a6a;
	    font-family: var(--fontFamilyMulish);
	    font-weight: 300;
	}

	/* ============================================
										FOUNDER SECTION
										============================================ */
	.founder-section {
	    display: grid;
	    grid-template-columns: 1.4fr 1fr;
	    gap: 80px;
	    align-items: center;
	    margin-bottom: 120px;
	    padding: 40px 40px;
	    margin: 0% 10% 5% 10%;
	    background: white;
	    border-radius: 32px;
	    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	    position: relative;
	    overflow: hidden;
	}

	.founder-section::before {
	    content: '';
	    position: absolute;
	    top: -100px;
	    right: -100px;
	    width: 300px;
	    height: 300px;
	    background: radial-gradient(circle, rgba(139, 92, 72, 0.05) 0%, transparent 70%);
	    border-radius: 50%;
	}

	.content-label {
	    display: inline-block;
	    padding: 10px 25px;
	    background: rgba(139, 92, 72, 0.08);
	    color: #8b5c48;
	    border-radius: 50px;
	    font-size: 12px;
	    font-weight: normal;
	    letter-spacing: 1.1px;
	    text-transform: uppercase;
	    margin-bottom: 16px;
	}

	.content-title {
	    font-family: var(--fontFamilyMarcellus);
	    font-size: 42px;
	    font-weight: 700;
	    color: #1a1a1a;
	    margin-bottom: 10px;
	    letter-spacing: 2px;
	}

	.founder-quote {
	    position: relative;
	    padding-left: 60px;
	    margin-bottom: 28px;
	}

	.quote-icon {
	    position: absolute;
	    left: 0;
	    top: 0;
	    width: 40px;
	    height: 40px;
	    color: #8b5c48;
	    opacity: 0.3;
	}

	.quote-text {
	    font-family: var(--fontFamilyMarcellus);
	    font-size: 20px;
	    line-height: 1.7;
	    color: #2a2a2a;
	    font-style: italic;
	    font-weight: 400;
	}

	.founder-description {
	    font-size: 16px;
	    line-height: 1.8;
	    color: #4a4a4a;
	    margin-bottom: 40px;
	    font-weight: 300;
	}

	.founder-values {
	    display: grid;
	    grid-template-columns: repeat(3, 1fr);
	    gap: 24px;
	    margin-bottom: 40px;
	}

	.value-item {
	    padding: 24px;
	    background: rgba(139, 92, 72, 0.04);
	    border-radius: 16px;
	    transition: all 0.3s ease;
	}

	.value-item:hover {
	    background: rgba(139, 92, 72, 0.08);
	    transform: translateY(-4px);
	}

	.value-icon {
	    font-size: 32px;
	    margin-bottom: 12px;
	}

	.value-item h4 {
	    font-size: 18px;
	    font-weight: 600;
	    color: #1a1a1a;
	    font-family: var(--fontFamilyMarcellus);
	    margin-bottom: 8px;
	}

	.value-item p {
	    font-size: 14px;
	    color: #6a6a6a;
	    font-family: var(--fontFamilyMulish);
	    line-height: 1.6;
	    font-weight: 300;
	}

	/* Founder Media */
	.founder-media {
	    position: relative;
	}

	.media-wrapper {
	    position: relative;
	    border-radius: 24px;
	    overflow: hidden;
	    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	}

	.media-wrapper img {
	    width: 100%;
	    height: 600px;
	    object-fit: cover;
	    display: block;
	}

	.media-overlay {
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    padding: 40px;
	    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 100%);
	}

	.overlay-content {
	    color: white;
	}

	.overlay-label {
	    display: block;
	    font-size: 13px;
	    font-weight: 600;
	    letter-spacing: 1.5px;
	    text-transform: uppercase;
	    opacity: 0.8;
	    margin-bottom: 8px;
	}

	.overlay-content h3 {
	    font-family: var(--fontFamilyMarcellus);
	    font-size: 32px;
	    color: white;
	    font-weight: 700;
	}

	/* ============================================
										CTA BUTTON
										============================================ */
	.cta-button {
	    display: inline-flex;
	    align-items: center;
	    gap: 12px;
	    padding: 16px 36px;
	    background: var(--backgroundImageRight);
	    color: white;
	    border: none;
	    font-family: var(--fontFamilyMulish);
	    border-radius: 50px;
	    font-size: 15px;
	    font-weight: 600;
	    letter-spacing: 0.5px;
	    text-decoration: none;
	    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	    box-shadow: 0 4px 16px rgba(139, 92, 72, 0.3);
	    position: relative;
	    overflow: hidden;
	}

	.cta-button::before {
	    content: '';
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    width: 0;
	    height: 0;
	    background: rgba(255, 255, 255, 0.2);
	    border-radius: 50%;
	    transform: translate(-50%, -50%);
	    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.cta-button:hover::before {
	    width: 300px;
	    height: 300px;
	}

	.cta-button:hover {
	    transform: translateY(-2px);
	    text-decoration: none;
	    color: white;
	    box-shadow: 0 6px 24px rgba(139, 92, 72, 0.4);
	}

	.cta-button svg {
	    width: 18px;
	    height: 18px;
	    transition: transform 0.3s ease;
	    position: relative;
	    z-index: 1;
	}

	.cta-button:hover svg {
	    transform: translateX(4px);
	}

	.cta-button span {
	    position: relative;
	    z-index: 1;
	}

	.cta-button.secondary {
	    background: white;
	    color: var(--themeColor);
	    border: 2px solid var(--themeColor);
	    box-shadow: 0 4px 16px rgba(139, 92, 72, 0.15);
	}

	.cta-button.secondary:hover {
	    background: rgba(139, 92, 72, 0.05);
	    color: white;
	}

	/* ============================================
										JOURNEY SECTION
										============================================ */
	.journey-section {
	    margin-bottom: 0px;
	    padding: 3% 5%;
	    font-family: var(--fontFamilyMulish);
	    background: var(--themeColor);
	}

	.journey-header {
	    text-align: center;
	    margin-bottom: 60px;
	}

	.journey-content {
	    display: grid;
	    grid-template-columns: 25% 75%;
	    gap: 30px;
	    align-items: start;
	}

	.journey-image {
	    position: relative;
	    border-radius: 24px;
	    overflow: hidden;
	    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	}

	.journey-image img {
	    width: 100%;
	    height: 500px;
	    object-fit: cover;
	    display: block;
	    transition: 0.5s ease-in-out;
	}

	.image-badge {
	    position: absolute;
	    top: 30px;
	    right: 30px;
	    padding: 12px 24px;
	    background: white;
	    border-radius: 50px;
	    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	}

	.image-badge span {
	    font-family: var(--fontFamilyMulish);
	    font-size: 16px;
	    font-weight: 700;
	    color: var(--themeColor);
	}

	.journey-image:hover img {
	    transform: scale(1.07);
	}

	.lead-text {
	    font-size: 18px;
	    line-height: 1.8;
	    color: #2a2a2a;
	    text-align: center; 
	    margin-bottom: 40px;
	    font-weight: 400;
	}

	.feature-list {
	    margin: 20px 0px 0px 0px;
	    display: flex;
	    justify-content: left;
	    flex-wrap: wrap;
	}

	.feature-item {
	    display: flex;
	    gap: 20px;
	    margin-bottom: 24px;
	    padding: 20px;
	    margin-right: 25px;
	    border: 1px solid var(--themeColorRGBA03);
	    background: rgba(0, 0, 0, 0.08);
	    border-radius: 16px;
	    transition: all 0.3s ease;
	}

	.feature-item:hover {
	    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	    transform: translateX(8px);
	}

	.feature-icon {
	    flex-shrink: 0;
	    width: 40px;
	    height: 40px;
	    background: linear-gradient(135deg, rgba(139, 92, 72, 0.1), rgba(166, 124, 82, 0.1));
	    border-radius: 12px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    color: white;
	}

	.feature-icon svg {
	    width: 20px;
	    height: 20px;
	}

	.featureContent h4 {
	    font-size: 20px;
	    font-weight: normal;
	    color: white;
	    padding: 5px 0px 5px 0px;
	    margin: 0px;
	}

	.featureContent p {
	    font-size: 14px;
	    color: white;
	    margin: 0px;
	    padding: 0px;
	    line-height: 1.6;
	    font-weight: 300;
	}

	.closing-text {
	    font-size: 20px;
	    line-height: 1.8;
	    color: #4a4a4a;
	    margin-bottom: 32px;
	    font-weight: 300;
	}
.journey-text a{
	text-decoration: none;
	color: white;
}
 

	/* ============================================
										RESPONSIVE
										============================================ */
	@media (max-width: 1200px) {
	    .about-hero {
	        gap: 60px;
	    }

	    .stats-grid {
	        grid-template-columns: repeat(3, 1fr);
	        gap: 24px;
	    }

	    .founder-section {
	        gap: 60px;
	        padding: 60px 40px;
	    }

	    .founder-values {
	        grid-template-columns: 1fr;
	    }
	}

	@media (max-width: 968px) {
	    .aboutContainer {
	        padding: 0 30px;
	    }

	    .about-section {
	        padding: 80px 0;
	    }

	    .about-hero {
	        grid-template-columns: 1fr;
	        gap: 40px;
	        margin-bottom: 80px;
	    }

	    .section-title {
	        font-size: 42px;
	    }

	    .image-slider {
	        height: 400px;
	    }

	    .stats-grid {
	        grid-template-columns: repeat(2, 1fr);
	    }

	    .founder-section {
	        grid-template-columns: 1fr;
	        gap: 40px;
	        padding: 20px 30px;
	    }

	    .content-title {
	        font-size: 36px;
	    }

	    .journey-content {
	        grid-template-columns: 1fr;
	        gap: 40px;
	    }

	    .benefits-grid {
	        grid-template-columns: repeat(2, 1fr);
	        gap: 24px;
	    }

	    .why-choose-section {
	        padding: 60px 30px;
	    }
	}

	@media (max-width: 640px) {
	    .section-title {
	        font-size: 32px;
	    }

	    .section-description {
	        font-size: 16px;
	    }

	    .stats-grid {
	        grid-template-columns: 1fr;
	    }

	    .content-title {
	        font-size: 28px;
	    }

	    .quote-text {
	        font-size: 18px;
	    }

	    .benefits-grid {
	        grid-template-columns: 1fr;
	    }

	    .cta-button {
	        width: 100%;
	        justify-content: center;
	    }
	}

	/* ============================================
										ANIMATIONS
										============================================ */
	@media (prefers-reduced-motion: reduce) {

	    *,
	    *::before,
	    *::after {
	        animation-duration: 0.01ms !important;
	        animation-iteration-count: 1 !important;
	        transition-duration: 0.01ms !important;
	    }
	}