/* About Page Specific Styles */
:root {
    /* Brand Colors - Professional steel industry palette */
    --primary: #E84E1B;
    --primary-dark: #C43D0F;
    --primary-light: #FF6B3D;
    --secondary: #1B3C87;
    --secondary-dark: #142D66;
    --secondary-light: #2650B3;
    --dark: #1A1A1A;
    --light: #F8F9FA;
    --gray: #6C757D;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --success: #26a69a;
    --info: #29b6f6;
    --white: #ffffff;
    --black: #000000;
    --warning: #fdd835;
    --danger: #ef5350;

    /* Font Families */
    --font-heading: 'Poppins', sans-serif;
    /* Industrial, strong, technical */
    --font-body: 'Inter', sans-serif;
    /* Modern, clean, professional */

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 24px;

    /* Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Common Styles */
.about-page-section {
    padding: 80px 0;
    position: relative;
    overflow: visible;
    background-color: transparent;
}

@media (max-width: 991.98px) {
    .about-page-section {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .about-page-section {
        padding: 60px 0;
    }
}

/* Clean Hero Section with Ethereal Effect */
.about-hero-clean {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(232, 78, 27, 0.08) 100%);
}

.about-hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(232, 78, 27, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(232, 78, 27, 0.08) 0%, transparent 50%);
    opacity: 0.7;
    z-index: 0;
}

.about-hero-clean .container {
    position: relative;
    z-index: 1;
}

.about-hero-clean h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.about-hero-clean h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--bs-primary);
}

.about-hero-clean p {
    font-size: 1.25rem;
    color: #495057;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 991.98px) {
    .about-hero-clean {
        padding: 100px 0 60px;
    }
    
    .about-hero-clean h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero-clean {
        padding: 80px 0 40px;
    }
    
    .about-hero-clean h1 {
        font-size: 2.25rem;
    }
    
    .about-hero-clean p {
        font-size: 1.1rem;
    }
}

/* Modern Purpose Section */
.purpose-section {
    padding: 100px 0;
    padding-top: 0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.purpose-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.purpose-tag {
    display: inline-block;
    background-color: rgba(232, 78, 27, 0.1);
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.purpose-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    position: relative;
    display: inline-block;
}

.purpose-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--bs-primary);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.purpose-image {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    border-radius: 12px;
}

.purpose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.purpose-image:hover img {
    transform: scale(1.05);
}

.purpose-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    height: 100px;
    display: flex;
    align-items: end;
    background: linear-gradient(to top, #e84e1b62, transparent);
}

.purpose-overlay span {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 800 !important; 
}

.purpose-content {
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.mission-content {
    background: linear-gradient(135deg, rgba(232, 78, 27, 0.03) 0%, rgba(232, 78, 27, 0.08) 100%);
}

.vision-content {
    background: linear-gradient(135deg, rgba(232, 78, 27, 0.03) 0%, rgba(232, 78, 27, 0.08) 100%);
}

.purpose-title {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.purpose-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 16px;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.purpose-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.mission-content .purpose-icon {
    background-color: rgba(232, 78, 27, 0.1);
    color: var(--primary);
}

.vision-content .purpose-icon {
    background-color: rgba(232, 78, 27, 0.1);
    color: var(--primary);
}

.purpose-title h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #212529;
}

.purpose-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #495057;
    margin: 0 0 24px;
    padding: 0 0 24px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.purpose-features {
    margin-top: auto;
}

.purpose-feature {
    display: flex;
    margin-bottom: 16px;
    position: relative;
    padding-left: 15px;
}

.purpose-feature:last-child {
    margin-bottom: 0;
}

.purpose-feature::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.vision-content .purpose-feature::before {
    background-color: var(--primary);
}

.feature-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 16px;
    min-width: 30px;
    opacity: 0.8;
}

.vision-content .feature-number {
    color: var(--primary);
}

.purpose-feature p {
    margin: 0;
    color: #212529;
    line-height: 1.5;
    font-weight: 500;
}

.purpose-action {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.action-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #d94d16 100%);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.action-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    animation: rotate 15s infinite linear;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.action-box h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    max-width: 70%;
    position: relative;
    z-index: 1;
}

/* .action-box .btn {
    padding: 12px 24px;
    background-color: #fff;
    color: var(--bs-primary);
    border: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.action-box .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */

@media (max-width: 991.98px) {
    .purpose-grid {
        grid-template-columns: 1fr;
    }
    
    .purpose-image {
        order: -1;
    }
    
    .purpose-grid .purpose-image:nth-child(4) {
        order: 3;
    }
    
    .purpose-content {
        padding: 30px;
    }
    
    .action-box {
        padding: 30px;
        text-align: center;
        justify-content: center;
        gap: 20px;
    }
    
    .action-box h4 {
        max-width: 100%;
        margin-bottom: 16px;
    }
}

@media (max-width: 767.98px) {
    .purpose-section {
        padding: 60px 0;
    }
    
    .purpose-header {
        margin-bottom: 40px;
    }
    
    .purpose-header h2 {
        font-size: 2rem;
    }
    
    .purpose-title h3 {
        font-size: 1.5rem;
    }
    
    .purpose-content {
        padding: 24px;
    }
    
    .purpose-image {
        min-height: 250px;
    }
    
    .purpose-overlay {
        padding: 16px;
    }
    
    .purpose-overlay span {
        font-size: 1.1rem;
    }
}

/* Common Section Title Styles */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary) !important;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto;
}

/* Text alignment for section titles */
.text-center .section-title {
    margin-left: auto;
    margin-right: auto;
}

.about-cta .section-title {
    color: white;
}

/* Core Values Header Styles */
.about-overview .row.mt-5 .col-12 .text-primary {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-overview .section-subtitle,
.about-overview .section-title {
    text-align: left;
}
.about-overview .row.mt-5 .col-12 h3.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {

    .section-title,
    .about-overview .row.mt-5 .col-12 h3.section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {

    .section-title,
    .about-overview .row.mt-5 .col-12 h3.section-title {
        font-size: 2rem;
    }

    .section-subtitle,
    .about-overview .row.mt-5 .col-12 .text-primary {
        font-size: 0.9rem;
    }
}

/* Company Overview */
.about-overview {
    position: relative;
    padding: 80px 0;
}

.about-overview__img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

.about-overview__img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-overview__img-container:hover img {
    transform: scale(1.03);
}

.about-overview .row.align-items-stretch {
    min-height: 400px;
}

.about-overview .row.align-items-center.g-5 {
    min-height: 400px;
}

.about-overview .about-overview__img-container img.h-100 {
    height: 100% !important;
    min-height: 400px;
}

@media (max-width: 991.98px) {
    .about-overview .row.align-items-stretch {
        min-height: auto;
    }
    
    .about-overview__img-container {
        height: 400px;
    }

    .about-manufacturing .row.align-items-stretch {
        min-height: auto;
    }
    
    .about-manufacturing__img-container {
        height: 400px;
    }
}

.about-overview__content {
    padding: 0;
}

.about-overview__tagline {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-overview__heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0.8rem;
}

.about-overview__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.about-overview__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* New Compact Timeline */
.about-timeline-compact {
    margin-top: 35px;
    margin-bottom: 25px;
    position: relative;
}

.about-timeline-compact::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 5%;
    width: 90%;
    height: 2px;
    background-color: rgba(232, 78, 27, 0.2);
    z-index: 0;
}

.about-timeline-item {
    position: relative;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 0;
    margin-top: 7px;
    transition: all 0.3s ease;
    border-left: none;
    text-align: center;
}

.about-timeline-year {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.267);
    backdrop-filter: blur(15px);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.062);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    display: inline-block;
    padding: 0 15px;
    z-index: 1;
}

.about-timeline-year::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(232, 78, 27, 0.2);
}

.about-timeline-content {
    padding-top: 18px;
}

.about-timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.about-timeline-item:hover .about-timeline-content h4 {
    color: var(--primary);
    transform: translateY(-3px);
}

.about-timeline-item:hover .about-timeline-year::after {
    background-color: var(--primary-dark);
    box-shadow: 0 0 0 6px rgba(232, 78, 27, 0.3);
}

@media (max-width: 767.98px) {
    .about-timeline-compact::before {
        left: 10%;
        width: 80%;
    }

    .about-timeline-year {
        font-size: 1.2rem;
    }

    .about-timeline-content h4 {
        font-size: 1rem;
    }
}

/* Core Values within Overview Section */
.about-values__item {
    background: rgba(255, 255, 255, 0.212);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.062);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.about-values__item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0.3);
    transform-origin: center;
    transition: transform 0.3s ease;
    z-index: -1;
}

.about-values__item:hover::before {
    transform: scaleX(1);
}

.about-values__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-values__item:hover .about-values__icon {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.about-values__item:hover .about-values__title {
    color: var(--primary);
}

.about-values__item:hover .about-values__text {
    color: #333;
}

.about-values__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    color: var(--primary);
    background-color: rgba(232, 78, 27, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 78, 27, 0.15);
}

.about-values__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary) !important;
    transition: color 0.3s ease;
}

.about-values__text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* Core Values Header Styles */
.about-overview .row.mt-5 {
    margin-top: 60px !important;
}

.about-overview .row.mt-5 .col-12 h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

/* .about-overview .row.mt-5 .col-12 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
} */

.about-overview .row.mt-5 .text-primary {
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-overview .row.mt-5+.row {
    padding-top: 20px;
}

@media (max-width: 767.98px) {
    .about-values__item {
        padding: 25px 20px;
    }

    .about-values__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-values__title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .about-overview .row.mt-5 {
        margin-top: 40px !important;
    }
}

/* Timeline row fix */
@media (max-width: 767.98px) {
    .about-timeline-compact .row {
        row-gap: 15px;
    }
}

/* Mission & Vision Section - New Design */
.about-mission-vision {
    position: relative;
    padding: 100px 0;
    background: transparent;
    overflow: hidden;
}

.mission-vision-split {
    position: relative;
    margin: 40px 0;
}

.split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.split-panel {
    flex: 1;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-panel {
    background: linear-gradient(135deg, rgba(232, 78, 27, 0.1) 0%, rgba(232, 78, 27, 0.2) 100%);
    border-left: 5px solid var(--bs-primary);
}

.vision-panel {
    background: linear-gradient(135deg, rgba(27, 60, 135, 0.1) 0%, rgba(27, 60, 135, 0.2) 100%);
    border-left: 5px solid #1b3c87;
}

.split-panel:hover {
    transform: translateY(-10px);
}

.split-content {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.split-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #fff;
    position: relative;
    backdrop-filter: blur(10px);
}

.mission-panel .split-icon {
    color: var(--bs-primary);
    box-shadow: 0 5px 15px rgba(232, 78, 27, 0.2);
}

.vision-panel .split-icon {
    color: #1b3c87;
    box-shadow: 0 5px 15px rgba(27, 60, 135, 0.2);
}

.split-panel h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.split-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.split-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.split-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.list-marker {
    display: flex;
    width: 8px;
    height: 8px;
    background: var(--bs-primary);
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.vision-panel .list-marker {
    background: #1b3c87;
}

.list-marker::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mission-vision-cta {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.about-cta .cta-action{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 10%);
    opacity: 0.5;
}

.cta-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    max-width: 70%;
}

.cta-content .btn {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .split-container {
        flex-direction: column;
    }
    
    .split-panel {
        width: 100%;
    }
    
    .mission-vision-cta {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .cta-content {
        flex-direction: column;
        padding: 30px;
        text-align: center;
        gap: 20px;
    }
    
    .cta-content h4 {
        max-width: 100%;
    }
    
    .split-content {
        padding: 30px;
    }
    
    .split-icon {
        margin: 0 auto 20px;
    }
    
    .split-panel h3 {
        text-align: center;
        font-size: 24px;
    }
    
    .split-quote {
        text-align: center;
        font-size: 1rem;
    }
}

/* Manufacturing Section */
.about-manufacturing {
    position: relative;
    background-color: transparent;
    padding: 60px 0;
}

.about-manufacturing .section-subtitle,
.about-manufacturing .section-title {
    text-align: left;
}

.about-manufacturing__img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

.about-manufacturing__img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-manufacturing__img-container:hover img {
    transform: scale(1.03);
}

.about-manufacturing .row.align-items-stretch {
    min-height: 400px;
}

.about-manufacturing .row.align-items-center.g-5 {
    min-height: 400px;
}

.about-manufacturing__content {
    padding: 0;
}

.about-manufacturing__process {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-manufacturing__step {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(232, 78, 27, 0.03) 0%, rgba(27, 60, 135, 0.03) 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(232, 78, 27, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 0;
    min-height: 140px;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: flex-start;
}

.about-manufacturing__step-number {
    width: 8px;
    height: 100%;
    /* background-color: #e84e1b27; */
    color: transparent;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

.about-manufacturing__step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.about-manufacturing__step-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .about-manufacturing__process {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Certifications Section */
.about-certifications {
    position: relative;
}

.about-certifications__heading {
    text-align: center;
    margin-bottom: 50px;
}

.about-certifications__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-certifications__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-certifications__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-certifications__logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.about-certifications__item:hover .about-certifications__logo {
    transform: scale(1.05);
}

.about-certifications__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (max-width: 991.98px) {
    .about-certifications__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .about-certifications__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Testimonial Quote Section */
.about-quote {
    position: relative;
    background-color: transparent;
    text-align: center;
    padding: 80px 0;
}

.about-quote__content {
    max-width: 800px;
    margin: 0 auto;
}

.about-quote__text {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--dark) !important;
    margin-bottom: 2rem;
    position: relative;
}

.about-quote__text::before,
.about-quote__text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
}

.about-quote__text::before {
    top: -20px;
    left: -20px;
}

.about-quote__text::after {
    bottom: -60px;
    right: -20px;
}

.about-quote__author {
    font-size: 1.2rem;
    color: var(--primary) !important;
    margin-bottom: 0;
    font-weight: 600;
}

.about-quote__position {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 767.98px) {
    .about-quote {
        padding: 60px 0;
    }

    .about-quote__text {
        font-size: 1.5rem;
    }
}

/* Enhanced Gradient Background - Lighter Version */
body {
    background: linear-gradient(135deg, #f8faff, #fbfbff, #fffaf7);
    position: relative;
    color: #333;
}

/* Adjusted overlay gradient with lighter colors */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, 
        rgba(232, 78, 27, 0.03) 0%, 
        rgba(27, 60, 135, 0.04) 50%,
        rgba(232, 78, 27, 0.03) 100%);
    opacity: 0.7;
}

/* Restore text colors for light background */
.section-title {
    color: var(--dark);
}

.section-description {
    color: var(--gray);
}

/* Adjust shapes for lighter background */
.shape {
    opacity: 0.05;
}

/* Fix Core Values section for light background */
.about-values__title {
    color: var(--dark);
}

.about-values__item:hover .about-values__title {
    color: var(--primary);
}

.about-values__text {
    color: var(--gray);
}

/* Fix quote section for light background */
.about-quote__text {
    color: var(--dark);
}

/* Enhanced Ethereal Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 30%;
    filter: blur(100px);
    opacity: 0.1;
    animation: float 30s infinite alternate ease-in-out;
}

.shape-1 {
    width: 550px;
    height: 550px;
    background: rgba(27, 60, 135, 0.8);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 650px;
    height: 650px;
    background: rgba(232, 78, 27, 0.7);
    top: 40%;
    right: -15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 450px;
    height: 450px;
    background: rgba(27, 60, 135, 0.6);
    bottom: 5%;
    left: 10%;
    animation-delay: 6s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: rgba(232, 78, 27, 0.5);
    top: 30%;
    left: 25%;
    animation-delay: 9s;
}

.shape-5 {
    width: 400px;
    height: 400px;
    background: rgba(232, 78, 27, 0.4);
    top: 15%;
    right: 15%;
    animation-delay: 12s;
}

.shape-6 {
    width: 500px;
    height: 500px;
    background: rgba(27, 60, 135, 0.5);
    bottom: 15%;
    right: 5%;
    animation-delay: 15s;
}

/* Enhanced Industrial Elements */
.industrial-element {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

.steel-beam {
    height: 4px;
    background: var(--primary);
    transform-origin: center;
}

.steel-beam-1 {
    width: 400px;
    transform: rotate(45deg);
    top: 20%;
    left: -100px;
}

.steel-beam-2 {
    width: 300px;
    transform: rotate(-35deg);
    bottom: 30%;
    right: -50px;
}

.steel-structure {
    width: 400px;
    height: 400px;
    background-image: url('../images/pattern-steel.png');
    background-size: contain;
    opacity: 0.04;
    right: 5%;
    top: 60%;
}

.dna-strand {
    width: 120px;
    height: 600px;
    background-image: url('../images/dna-strand.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: 10%;
    top: 40%;
    opacity: 0.06;
}

.blueprint-grid {
    width: 300px;
    height: 300px;
    background-image: repeating-linear-gradient(0deg, rgba(232, 78, 27, 0.1), rgba(232, 78, 27, 0.1) 1px, transparent 1px, transparent 20px),
                      repeating-linear-gradient(90deg, rgba(232, 78, 27, 0.1), rgba(232, 78, 27, 0.1) 1px, transparent 1px, transparent 20px);
    top: 25%;
    right: 8%;
    transform: rotate(10deg);
    opacity: 0.07;
}

.circle-pattern {
    width: 250px;
    height: 250px;
    border: 2px solid rgba(232, 78, 27, 0.2);
    border-radius: 50%;
    bottom: 15%;
    left: 15%;
    opacity: 0.1;
}

.circle-pattern::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 2px solid rgba(232, 78, 27, 0.2);
    border-radius: 50%;
}

.circle-pattern::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border: 2px solid rgba(232, 78, 27, 0.2);
    border-radius: 50%;
}

/* Section Decorative Elements */
.about-mission-vision::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), transparent);
    bottom: 0;
    left: 0;
    opacity: 0.5;
}

.about-manufacturing::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), transparent);
    top: 0;
    right: 0;
    opacity: 0.5;
}

/* Add diagonal orange lines to sections */
.section-accent {
    position: absolute;
    height: 3px;
    background-color: var(--primary);
    opacity: 0.3;
    transform: rotate(-45deg);
    transform-origin: left center;
}

.about-overview::before {
    content: "";
    @extend .section-accent;
    width: 150px;
    top: 70px;
    left: 0;
}

.about-certifications::after {
    content: "";
    @extend .section-accent;
    width: 150px;
    bottom: 70px;
    right: 0;
}

/* Enhanced Cards */
.about-values__item {
    background: rgba(255, 255, 255, 0.212);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.062);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-values__item::before {
    background-color: var(--primary);
    opacity: 0.8;
    height: 5px;
}

.about-values__text {
    color: rgba(255, 255, 255, 0.7);
}

.about-values__icon {
    color: var(--primary);
    background-color: rgba(232, 78, 27, 0.15);
    box-shadow: 0 5px 15px rgba(232, 78, 27, 0.25);
}

/* Enhanced Timeline */
.about-timeline-compact::before {
    background: linear-gradient(90deg, 
        rgba(232, 78, 27, 0), 
        rgba(232, 78, 27, 0.4), 
        rgba(232, 78, 27, 0));
    height: 2px;
}

.about-timeline-year::after {
    background-color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

/* Add visual elements to the manufacturing process */
.about-manufacturing__step-number {
    background: linear-gradient(135deg, #e84e1b6c, #C43D0F6c);
    box-shadow: 0 5px 15px rgba(232, 78, 27, 0.2);
}

/* Make sure image containers stand out */
.about-overview__img-container, 
.about-manufacturing__img-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(232, 78, 27, 0.2);
    overflow: hidden;
}

.about-overview__img-container::after,
.about-manufacturing__img-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, 
        rgba(232, 78, 27, 0.1), 
        transparent, 
        rgba(27, 60, 135, 0.1));
    pointer-events: none;
}

/* Enhanced certification items */
.about-certifications__item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-certifications__item::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary);
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-certifications__item:hover::after {
    opacity: 1;
}

/* Make mission vision cards stand out more */
.mission-vision-card {
    background: rgba(255, 255, 255, 0.212);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.062);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-card {
    border-top: 5px solid var(--primary);
}

.vision-card {
    border-top: 5px solid var(--primary-light);
}

.mission-vision-quote {
    color: var(--gray);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.point-text {
    color: var(--gray);
}

/* Enhanced CTA */
.about-cta {
    background: linear-gradient(135deg, #192c5d 0%, #0e1e40 100%);
    color: white;
}

.about-cta::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, 
        rgba(232, 78, 27, 0.1) 0%, 
        transparent 50%);
    pointer-events: none;
}

/* Fix Core Values section to work with dark background */
.about-values__title {
    color: #fff;
}

.about-values__item:hover .about-values__title {
    color: var(--primary);
}

.about-values__icon {
    background-color: rgba(232, 78, 27, 0.2);
}

/* Fix quote section for dark background */
.about-quote__text {
    color: white;
}

/* Make the float animation more subtle and ethereal */
@keyframes float {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) scale(1.05) rotate(5deg);
    }
    100% {
        transform: translateY(30px) scale(0.95) rotate(-5deg);
    }
}

/* Additional effect for the about sections */
.about-page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7), transparent 70%);
    pointer-events: none;
}

/* Completely New CTA Design */
.about-cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #192c5d 0%, #0e1e40 100%);
    color: white;
}

.ethereal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.7;
}

.floating-circle, .floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.floating-circle {
    opacity: 0.2;
}

.floating-orb {
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6;
    filter: blur(30px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    top: -100px;
    left: -100px;
    animation: orbit 25s linear infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background-color: var(--secondary-light);
    bottom: -50px;
    right: -50px;
    animation: orbit 20s linear infinite reverse;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation: pulse 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 15%;
    animation: pulse 12s ease-in-out infinite reverse;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.cta-grid {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    padding-right: 20px;
}

.cta-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cta-heading {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.cta-text {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cta-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.cta-card p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.cta-links {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-cta .cta-links {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cta-btn {
    width: 100%;
    padding: 12px 25px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary);
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.cta-link {
    color: var(--primary-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 14px;
}

.cta-link i {
    transition: transform 0.3s ease;
}

.cta-link:hover {
    color: white;
}

.cta-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content {
        padding-right: 0;
    }
    
    .cta-heading {
        font-size: 2.3rem;
    }

    .cta-card {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .about-cta {
        padding: 70px 0;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-card {
        padding: 25px;
    }
}

/* Mission & Vision section */
.about-mission-vision .col-12 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-mission-vision .col-12 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.about-mission-vision .text-primary {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

/* Manufacturing section */
.about-manufacturing__content .text-primary {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.about-manufacturing__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-manufacturing p {
    font-size: 18px;
}

/* .about-manufacturing__content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
} */

/* Certifications section */
.about-certifications__heading p.text-primary {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.about-certifications__heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-certifications__heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

/* CTA section */
.about-cta__heading {
    font-size: 2.5rem !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

@media (max-width: 991.98px) {

    .about-overview__heading,
    .about-overview .row.mt-5 .col-12 h3,
    .about-mission-vision .col-12 h2,
    .about-manufacturing__content h2,
    .about-certifications__heading h2,
    .about-cta__heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {

    .about-overview__heading,
    .about-overview .row.mt-5 .col-12 h3,
    .about-mission-vision .col-12 h2,
    .about-manufacturing__content h2,
    .about-certifications__heading h2,
    .about-cta__heading {
        font-size: 1.8rem;
    }
}

/* Special styling for white section titles */
.about-cta .section-title {
    color: white;
}

.about-cta .section-title::after {
    background-color: white;
}

/* Override spacing in mobile for consistent look */
@media (max-width: 767.98px) {
    .section-title {
        margin-bottom: 1.2rem;
    }
}

/* Additional Accent Elements for Visual Interest */
.accent-line {
    position: absolute;
    background: var(--primary);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.accent-line-1 {
    width: 100px;
    height: 3px;
    top: 50px;
    right: 10%;
    transform: rotate(45deg);
}

.accent-line-2 {
    width: 200px;
    height: 3px;
    bottom: 100px;
    left: 5%;
    transform: rotate(-30deg);
}

.accent-line-3 {
    width: 150px;
    height: 3px;
    top: 80px;
    left: 20%;
    transform: rotate(60deg);
}

.accent-line-4 {
    width: 80px;
    height: 4px;
    top: 40px;
    right: 15%;
    transform: rotate(-15deg);
}

.accent-line-5 {
    width: 120px;
    height: 4px;
    bottom: 60px;
    left: 10%;
    transform: rotate(20deg);
}

.accent-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    opacity: 0.08;
    pointer-events: none;
}

.accent-dot-grid {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 30px;
    left: 50px;
    background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
    transform: rotate(10deg);
}

/* Make section contents stand out against dark background */
.about-page-section {
    position: relative;
    overflow: visible;
}
.about-cta .container{
    max-width: 800px;
}

.about-page-section .container {
    position: relative;
    /* max-width: 800px; */
    z-index: 1;
}

/* Adjust glass effect to content containers for light background */
.about-overview__content,
.about-manufacturing__content {
    background: rgba(255, 255, 255, 0.212);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.062);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Enhance image containers with glowing effect */
.about-overview__img-container::before,
.about-manufacturing__img-container::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, transparent, rgba(232, 78, 27, 0.3), transparent);
    z-index: -1;
    border-radius: 12px;
}

/* Fix the certifications grid for dark theme */
.about-certifications__grid {
    gap: 40px;
}

.about-certifications__logo {
    filter: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.about-certifications__item:hover .about-certifications__logo {
    filter: none;
    opacity: 1;
}

/* Make the mission vision cards more visually interesting */
.mission-vision-icon {
    position: relative;
}

.mission-vision-icon::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border: 2px dashed rgba(232, 78, 27, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.vision-card .mission-vision-icon::before {
    border-color: rgba(27, 60, 135, 0.3);
    animation-direction: reverse;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Keep CTA section with white text */
.about-cta {
    background: linear-gradient(135deg, #192c5d 0%, #0e1e40 100%);
    color: white;
}

.about-cta .section-title,
.about-cta .cta-heading,
.about-cta .cta-card h3 {
    color: white;
    font-size: 3.5rem;
}

.about-cta .cta-text,
.about-cta .cta-card p {
    color: rgba(255, 255, 255, 0.8);
}

.about-cta .cta-card {
    background: rgba(255, 255, 255, 0.1);
}

/* Change all text to dark color for better contrast on light background */
.about-timeline-compact .timeline-item h4,
.about-timeline-compact .timeline-item p,
.about-mission-vision h3,
.about-mission-vision p,
.about-mission-vision li,
.about-manufacturing h3,
.about-manufacturing h4,
.about-manufacturing p,
.about-overview h2,
.about-overview h3,
.about-overview p,
.about-values h3,
.about-values .value-item h4,
.about-values .value-item p {
  color: var(--dark);
}

/* Make the value icons visible against light background */
.about-values .value-item i {
  color: #ff7b00;
  opacity: 0.9;
}

/* Make timeline markers more visible */
.about-timeline-compact .timeline-item::before {
  background-color: #ff7b00;
  border: 2px solid #23374d;
}

/* Ensure the CTA section text remains white due to its dark background */
.about-cta h2,
.about-cta p {
  color: #ffffff;
}

/* Adjust glassmorphism containers for better visibility */
.glassmorphism {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(0, 31, 63, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #23374d;
}

/* Premium Hero Section */
.about-hero-premium {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(rgba(189, 12, 12, 0.185), #e84e1b5d), url('../images/about.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.about-hero-premium .container {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  position: relative;
  padding: 40px 30px;
  border-radius: 16px;
  /* background-color: rgba(0, 0, 0, 0); */
  /* backdrop-filter: blur(10px); */
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
  border: 1px solid rgba(255, 255, 255, 0);
  width: 100%; 
  transition: .4s;
}
.about-hero-content:hover {
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #e84e1b0c;
    transition: .4s;

}

.about-hero-premium h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-accent {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 30px;
  position: relative;
}

.title-accent::before,
.title-accent::after {
  content: '';
  position: absolute;
  height: 4px;
  background: var(--primary);
}

.title-accent::before {
  width: 40px;
  left: -60px;
  top: 0;
}

.title-accent::after {
  width: 40px;
  right: -60px;
  top: 0;
}

.about-hero-premium p {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 40px; /* Reconfirm auto margins for centering */
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center; /* Ensure buttons container is centered */
  gap: 20px;
}

.hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-actions .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 991.98px) {
  .about-hero-premium {
    padding: 150px 0 80px;
  }
  
  .about-hero-premium h1 {
    font-size: 2.75rem;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-premium {
    padding: 130px 0 60px;
  }
  
  .about-hero-premium h1 {
    font-size: 2.25rem;
  }
  
  .about-hero-premium p {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .title-accent::before,
  .title-accent::after {
    display: none;
  }
  
  .hero-content {
    padding: 30px 15px;
  }
}

/* Enhanced Purpose Section */
.purpose-section {
  padding: 100px 0;
  padding-top: 0;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.purpose-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.premium-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.image-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 78, 27, 0.3) 0%, transparent 70%);
  z-index: 2;
}

.purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: contrast(1.1);
}

.purpose-image:hover img {
  transform: scale(1.05);
}

.purpose-image:hover {
  transform: translateY(-10px);
}

.purpose-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  height: 100px;
  display: flex;
  align-items: end;
  background: linear-gradient(to top, #e84e1b62, transparent);
  z-index: 3;
}

.purpose-overlay span {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 800 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-left: 15px;
}

.purpose-overlay span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 25px;
  background: var(--primary);
}

.purpose-content {
  padding: 40px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.purpose-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.content-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
}

.mission-content {
  background: linear-gradient(135deg, rgba(232, 78, 27, 0.03) 0%, rgba(232, 78, 27, 0.08) 100%);
}

.vision-content {
  background: linear-gradient(135deg, rgba(232, 78, 27, 0.03) 0%, rgba(232, 78, 27, 0.08) 100%);
}

.purpose-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.purpose-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(232, 78, 27, 0.2);
}

.purpose-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px solid rgba(232, 78, 27, 0.3);
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.mission-content .purpose-icon,
.vision-content .purpose-icon {
  background-color: rgba(232, 78, 27, 0.1);
  color: var(--primary);
}

.purpose-title h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: #212529;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.purpose-content blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #495057;
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  font-weight: 500;
}

.purpose-features {
  margin-top: auto;
}

.purpose-feature {
  display: flex;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.purpose-feature:last-child {
  margin-bottom: 0;
}

.purpose-feature::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
}

.vision-content .purpose-feature::before {
  background-color: var(--primary);
}

.feature-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-right: 16px;
  min-width: 30px;
  opacity: 0.9;
}

.vision-content .feature-number {
  color: var(--primary);
}

.purpose-feature p {
  margin: 0;
  color: #212529;
  line-height: 1.5;
  font-weight: 500;
}

.purpose-action {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.action-box {
  background: linear-gradient(135deg, var(--primary) 0%, #d94d16 100%);
  padding: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.action-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
  animation: rotate 15s infinite linear;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.action-box h4 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  max-width: 70%;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.action-box .btn {
  padding: 12px 24px;
  background-color: #fff;
  color: var(--primary);
  border: none;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.action-box .btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .purpose-grid {
    grid-template-columns: 1fr;
  }
  
  .purpose-image {
    order: -1;
    min-height: 300px;
  }
  
  .purpose-grid .purpose-image:nth-child(4) {
    order: 3;
  }
  
  .purpose-content {
    padding: 30px;
  }
  
  .action-box {
    padding: 30px;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }
  
  .action-box h4 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .purpose-section {
    padding: 60px 0;
    padding-top: 0;
  }
  
  .purpose-title {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .purpose-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .purpose-title h3 {
    font-size: 1.75rem;
  }
  
  .purpose-content {
    padding: 30px 20px;
  }
  
  .purpose-content blockquote {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .purpose-image {
    min-height: 250px;
  }
}