body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
}

.hero-text {
    flex: 1 1 50%;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-text span {
    color: #007bff;
}

.hero-image {
    flex: 1 1 40%;
    text-align: center;
}

.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 4rem 0;
    gap: 0.5rem;
}

.stat-box {
    flex: 1 1 22%;
    background-color: #f0f0f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    margin: 4rem 0 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
    gap: 2rem;
}

.team-card {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-card:hover {
    cursor: pointer;
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-card img {
    width: 100%;
    height: 13.75rem;
    object-fit: cover;
}

.team-card h5 {
    margin-top: 1rem;
    font-weight: 600;
}

.workflow-section {
    background: #0c1a2c;
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 1rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
    gap: 2rem;
}

.workflow-card {
    background: #172a45;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workflow-card img {
    border-radius: 0.5rem;
    max-height: 7.5rem;
    object-fit: cover;
}

/*
                         Discover Area Style - FIXED VERSION
                         ======================================================*/

.discover-area.discover-area-style-two {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

/* #myVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    object-fit: cover;
    border-radius: 0.625rem;
} */

.discover-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.discover-bg2 {
    position: relative;
    z-index: 1;
}

.discover-content {
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 1.25rem 0.1875rem rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 0.5rem;
    color: #333;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.discover-content p {
    font-size: 1rem;
    margin-bottom: 0;
    text-align: justify;
}

.discover-content h2 {
    font-size: 2.1875rem;
    margin-top: -0.6875rem;
    margin-bottom: 0.9375rem;
}

.discover-content h3 {
    font-size: 1.4375rem;
    margin-bottom: 0.625rem;
}

.discover-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: -0.1875rem;
}

.discover-content ul li {
    font-size: 0.9375rem;
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.8;
}

.discover-content ul li::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 0.625rem;
    height: 0.625rem;
    background-color: #00aa55;
    border-radius: 50%;
}

.discover-content ul li:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE FIXES */
@media (max-width: 1200px) {
    .discover-content {
        max-width: 90%;
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .discover-area.discover-area-style-two {
        min-height: 60vh;
        padding: 1.5rem 0;
    }

    .discover-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .discover-content p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .discover-area.discover-area-style-two {
        min-height: auto;
        padding: 2rem 0;
        color: #0c1a2c !important;
    }

    .discover-content {
        padding: 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
        color: #0c1a2c !important;
    }

    .discover-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #0c1a2c !important;
    }

    #myVideo {
        border-radius: 0;
    }

    .hero-section {
        flex-direction: column;
        padding: 2rem 0;
    }

    .hero-text,
    .hero-image {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 2rem;
    }

    .responsive-heading {
        font-size: 2rem;
    }

    .hero-image img {
        max-height: 15rem;
    }
}

@media (max-width: 480px) {
    .discover-area.discover-area-style-two {
        padding: 1rem 0;
        color: #0c1a2c !important;
    }

    .discover-content {
        padding: 1.25rem;
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
        border-radius: 0.25rem;
    }

    .discover-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #0c1a2c !important;
    }

    .responsive-heading {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 1rem 0;
    }
}

/* Remove Bootstrap column restrictions on mobile */
@media (max-width: 991px) {
    .discover-area .pr-0,
    .discover-area .pl-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .discover-area .col-lg-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/*history section*/
.section-header {
    text-align: center;
    margin: 4rem 0 2rem;
}
.container {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.timeline-section {
    position: relative;
    margin: 4rem 0;
}

/* Central line */
.timeline-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(70, 126, 130), rgb(104, 166, 172));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    align-items: stretch;
    min-height: 300px;
}

/* Left side items - image left, text right */
.timeline-item.left {
    justify-content: flex-end;
    /* padding-right: 2rem; */
    padding-right: 2%;
}

.timeline-item.left .timeline-image {
    order: 1;
    /* margin-right: 6rem; */
    margin-right: 12%;
    align-self: center!important;

}

.timeline-item.left .timeline-content {
    text-align: left;
    margin-right: 5rem;
    order: 2;
}

/* Right side items - text left, image right */
.timeline-item.right {
    justify-content: flex-start;
    /* padding-left: 2rem; */
    padding-left: 2%;
}

.timeline-item.right .timeline-content {
    text-align: left;
    margin-left: 5rem;
    order: 1;
}

.timeline-item.right .timeline-image {
    order: 2;
    /* margin-left: 6rem; */
    margin-left: 12%;
    align-self: center!important;

}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 500px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Arrow pointing from center line to content */
.timeline-item.left .timeline-content::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-item.right .timeline-content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

/* Central dot */
.timeline-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgb(70, 126, 130), rgb(160, 212, 216));
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 6px rgb(122, 183, 187);
}

.timeline-time {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.timeline-image {
    width: 500px;
    height: 250px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.placeholder-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 968px) {
    .timeline-section::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 4rem;
        padding-right: 1rem;
        min-height: auto;
    }

    .timeline-item.left,
    .timeline-item.right {
        justify-content: flex-start;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: auto;
        order: 1;
        margin-bottom: 1rem;
    }

    .timeline-item.left .timeline-image,
    .timeline-item.right .timeline-image {
        order: 2;
        margin: 0;
        width: 100%;
        max-width: 400px;

    }

    .timeline-item::before {
        left: 2rem;
    }

    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after {
        display: none;
    }

    .timeline-content::before {
        content: "";
        position: absolute;
        top: 2rem;
        left: -15px;
        width: 0;
        height: 0;
        border-right: 15px solid white;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }
}

/* awards section */
.umkm-card {
    transition: all 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    margin-bottom: 1rem;
}

.umkm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.umkm-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.umkm-card:hover .card-img-top {
    transform: scale(1.05);
}

.umkm-card .card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.3;
}

.umkm-card .card-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.umkm-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(-20px);
}

.umkm-card:hover .card-body {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
}

.umkm-card .card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 1.5rem;
    margin-top: auto;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(-20px);
}

.umkm-card:hover .card-footer {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
}

.category-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.filter-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-filter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-reset {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background-color: #6c757d;
    color: white;
    transform: translateY(-2px);
}

.page-title-area {
    color: white;
    /* padding: 3rem 0; */
    margin-bottom: 2rem;
}

.page-title-content h2 {
    font-weight: 700;
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.results-info {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 2rem;
}

.spinner-border-custom {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
    border-color: #667eea;
    border-right-color: transparent;
}

/* Isotope + Masonry Grid Layout */
.isotope-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Grid sizer for consistent column width */
.grid-sizer {
    width: calc(33.333% - 10.67px);
}

.isotope-item {
    width: calc(33.333% - 10.67px);
    margin-bottom: 16px;
    float: left;
}

/* Masonry grid responsive breakpoints */
@media (max-width: 1200px) {
    .grid-sizer,
    .isotope-item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .grid-sizer,
    .isotope-item {
        width: calc(50% - 8px);
    }

    .filter-section {
        padding: 1.5rem;
    }

    .page-title-content h2 {
        font-size: 2rem;
    }

    .umkm-card .card-img-top {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .grid-sizer,
    .isotope-item {
        width: 100%;
    }
}

/* Hover effect overlay for better UX */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.umkm-card:hover .card-overlay {
    opacity: 1;
}

/* Variable card heights for masonry grid layout */
.isotope-item:nth-child(6n + 1) .umkm-card .card-img-top {
    height: 280px;
}

.isotope-item:nth-child(8n + 2) .umkm-card .card-img-top {
    height: 200px;
}

.isotope-item:nth-child(10n + 3) .umkm-card .card-img-top {
    height: 320px;
}

.isotope-item:nth-child(12n + 4) .umkm-card .card-img-top {
    height: 240px;
}

.isotope-item:nth-child(15n + 5) .umkm-card .card-img-top {
    height: 260px;
}

.isotope-item:nth-child(18n + 6) .umkm-card .card-img-top {
    height: 300px;
}

/* Additional masonry variations for better grid distribution */
.isotope-item:nth-child(20n + 7) .umkm-card .card-img-top {
    height: 220px;
}

.isotope-item:nth-child(25n + 8) .umkm-card .card-img-top {
    height: 340px;
}

/* Ensure proper masonry flow */
.umkm-card .card-img-top {
    width: 100%;
    object-fit: contain;
    min-height: 180px;
    max-height: 350px;
    background-color: #f8f9fa;
}

/* Masonry grid improvements */
.isotope-container::after {
    content: "";
    display: block;
    clear: both;
}

/* Enhanced masonry item styling */
.isotope-item {
    box-sizing: border-box;
    break-inside: avoid;
    page-break-inside: avoid;
}

/* Masonry loading animation */
.isotope-item.loaded {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Isotope loading state */
.isotope-container.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.isotope-container.loaded {
    opacity: 1;
}

/* Isotope item transitions - handled by Isotope itself */
.isotope-item {
    opacity: 1;
    transform: scale(1);
}

/* video background */
/* ========================================
   ABOUT SECTION - VIDEO LEFT & TEXT RIGHT
   ======================================== */

.about-section {
    margin-top: 2rem;;
    padding: 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    /* min-height: 100vh;
    display: flex; */
    align-items: center;
    border-radius: 0.625rem;
}

.about-section .container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 2rem;
}

/* .about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
} */

/* Video Container - Left Side */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(0);
    transition: all 0.4s ease;
    will-change: transform;
}

.video-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.08);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    filter: brightness(1) contrast(1.05);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Company Description - Right Side */
.company-description {
    padding: 2rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.company-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 0 2px 2px 0;
}

.company-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.2s;
}

.company-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
    text-align: justify;
}

.company-info p:nth-of-type(1) {
    animation-delay: 0.4s;
}

.company-info p:nth-of-type(2) {
    animation-delay: 0.6s;
}

.company-info p:nth-of-type(3) {
    animation-delay: 0.8s;
}

.company-info p:last-child {
    margin-bottom: 0;
}

/* Highlight important text */
.company-info p strong,
.company-info p b {
    color: #7a7a7a;
    font-weight: 600;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Video animation */
.video-container {
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.1s;
}

/* Performance Optimizations */
.about-section * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content-wrapper {
        gap: 3rem;
    }

    .company-info {
        padding: 2.5rem 2rem;
    }

    .company-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .video-container {
        min-height: 400px;
        order: 1;
    }

    .company-description {
        order: 2;
        padding: 1rem 0;
    }

    .company-info {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .company-info p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-section .container-fluid {
        padding: 0 1rem;
    }

    .about-content-wrapper {
        gap: 2rem;
    }

    .video-container {
        min-height: 300px;
        border-radius: 15px;
    }

    .video-container video {
        border-radius: 15px;
    }

    .company-info {
        padding: 1.5rem 1.2rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }

    .company-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .company-info p {
        font-size: 1rem;
        line-height: 1.7;
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .video-container {
        min-height: 250px;
        border-radius: 12px;
    }

    .video-container video {
        border-radius: 12px;
    }

    .company-info {
        padding: 1.2rem 1rem;
        border-radius: 12px;
    }

    .company-info h2 {
        font-size: 1.6rem;
    }

    .company-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* .about-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    } */

    .company-info {
        /* background: rgba(40, 40, 40, 0.9); */
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .company-info h2 {
        color: #000000;
    }

    .company-info p {
        color: #000000;
    }

    .company-info p strong,
    .company-info p b {
        color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .video-container,
    .company-info h2,
    .company-info p {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .video-container:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .video-container {
        display: none;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
    }

    .about-section {
        background: white;
        padding: 2rem 0;
    }

    .company-info {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
