 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
    
    :root {
            --primary: #BF3131;
            --secondary: #7D0A0A;
            --third: #EAD196;
            --bg: #f7f7f7;
            --text: #1d1d1d;
            --text-secondary: #666666;
            --white: #ffffff;
            --overlay: rgba(0, 0, 0, 0.8);
            --font-h1: 42px;
            --font-h2: 32px;
            --font-h3: 24px;
            --font-p: 16px;
            --font-btn: 16px;
            --image-height: 500px;
            --padding-large: 80px;
            --padding-medium: 50px;
            --padding-small: 30px;
            --padding-xsmall: 15px;
        }
        .ap-abt-section {
            max-width: 1600px;
            width: 98%;
            margin: 0 auto;
            margin-top: 60px;
            padding: 10px;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 30px;
        }

        .ap-abt-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .ap-abt-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            object-fit: cover;
            border-radius: 8px;
        }

        .ap-abt-text-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .ap-abt-title {
            font-size: var(--font-h2);
            color: var(--text);
            margin-bottom: 20px;
        }

        .ap-abt-description {
            font-size: var(--font-p);
            color: var(--text-secondary);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .ap-abt-section {
                flex-direction: column;
                padding: 20px;
                margin-top: 45px;
            }

            .ap-abt-image-container {
                order: 1;
                width: 100%;
            }

            .ap-abt-image {
                max-width: 100%;
                width: 100%;
                height: auto;
            }

            .ap-abt-text-container {
                order: 2;
                text-align: left;
            }

            .ap-abt-title {
                font-size: var(--font-h3);
            }

            .ap-abt-description {
                font-size: var(--font-p);
            }
        }








   .tim-abt-section {
        max-width: 1000px;
        width: 98%;
        margin: 0 auto;
        padding: 40px 20px;
        /* background-color: var(--bg); */
        overflow: hidden;
    }

    .tim-abt-timeline {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .tim-abt-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 6px;
        background: var(--primary);
        transform: translateX(-50%);
        border-radius: 3px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    }

    .tim-abt-year {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
        opacity: 0;
        animation: slideIn 0.8s ease-out forwards;
    }

    .tim-abt-year:nth-child(2) {
        animation-delay: 0.2s;
    }

    .tim-abt-year:nth-child(3) {
        animation-delay: 0.4s;
    }

    .tim-abt-year:nth-child(odd) .tim-abt-content {
        margin-left: auto;
        margin-right: 60px;
        text-align: right;
        flex-direction: row-reverse;
    }

    .tim-abt-year:nth-child(even) .tim-abt-content {
        margin-right: auto;
        margin-left: 60px;
        text-align: left;
    }

    .tim-abt-content {
        width: 45%;
        display: flex;
        align-items: stretch;
        position: relative;
        /* border: 2px solid var(--primary); */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background: var(--white);
    }

    .tim-abt-year:nth-child(odd) .tim-abt-content {
        border-radius: 8px 0 0 8px;
        border-right: none;
    }

    .tim-abt-year:nth-child(even) .tim-abt-content {
        border-radius: 0 8px 8px 0;
        border-left: none;
    }

    .tim-abt-year-label {
        background: var(--secondary);
        color: var(--white);
        writing-mode: vertical-rl;
        text-orientation: mixed;
        padding: 20px 10px;
        font-size: var(--font-h3);
        font-weight: bold;
        /* border: 2px solid var(--primary); */
        min-width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tim-abt-year:nth-child(odd) .tim-abt-year-label {
        border-radius: 0 8px 8px 0;
        border-left: none;
    }

    .tim-abt-year:nth-child(even) .tim-abt-year-label {
        border-radius: 8px 0 0 8px;
        border-right: none;
    }

    .tim-abt-year-details {
        padding: 20px;
        flex: 1;
    }

    .tim-abt-year-title {
        font-size: var(--font-h3);
        color: var(--primary);
        margin-bottom: 10px;
    }

    .tim-abt-year-description {
        font-size: var(--font-p);
        color: var(--text-secondary);
        line-height: 1.6;
    }

    .tim-abt-content::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 24px;
        height: 24px;
        background: var(--third);
        border: 3px solid var(--primary);
        border-radius: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .tim-abt-year:nth-child(odd) .tim-abt-content::before {
        right: -53px;
    }

    .tim-abt-year:nth-child(even) .tim-abt-content::before {
        left: -53px;
    }

    @keyframes slideIn {
        to {
            opacity: 1;
        }
    }

    @media (max-width: 768px) {
        .tim-abt-section {
            padding: 20px;
        }

        .tim-abt-timeline::before {
            left: 20px;
        }

        .tim-abt-year {
            flex-direction: column;
            align-items: flex-start;
        }

        .tim-abt-year:nth-child(odd) .tim-abt-content,
        .tim-abt-year:nth-child(even) .tim-abt-content {
            margin-left: 50px;
            margin-right: 20px;
            width: calc(100% - 70px);
            text-align: left;
            border-radius: 0 8px 8px 0;
            /* border: 2px solid var(--primary); */
            border-left: none;
            flex-direction: row;
        }

        .tim-abt-year:nth-child(odd) .tim-abt-year-label,
        .tim-abt-year:nth-child(even) .tim-abt-year-label {
            writing-mode: horizontal-tb;
            padding: 10px;
            border-radius: 8px 8px 0 0;
            /* border: 2px solid var(--primary); */
            border-bottom: none;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tim-abt-year:nth-child(odd) .tim-abt-content::before,
        .tim-abt-year:nth-child(even) .tim-abt-content::before {
            left: -33px;
            right: auto;
        }
    }










     .kan-abt-container {
        max-width: 1000px;
        width: 96%;
        margin: 100px auto;
        padding: 10px;
        display: flex;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        overflow: hidden;
    }

    .kan-abt-text-section {
        width: 65%;
        padding: 30px;
        text-align: left;
        background-color: var(--white);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
    }

    .kan-abt-title {
        font-size: var(--font-h2);
        color: var(--text);
        margin-bottom: 20px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .kan-abt-description {
        font-size: var(--font-p);
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .kan-abt-buttons {
        display: flex;
        justify-content: start;
        gap: 8px;
        flex-wrap: wrap;
    }

    .kan-abt-button {
        font-size: var(--font-btn);
        color: var(--text);
        background-color: transparent;
        border: 1px solid rgba(0, 0, 0, 0.8);
        padding: 7px 14px;
        border-radius: 12px;
        cursor: default;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .kan-abt-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .kan-abt-slider-section {
        width: 35%;
        padding: 30px;
        background-color: var(--white);
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .kan-abt-slider {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .kan-abt-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateX(100%);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .kan-abt-slide.active {
        opacity: 1;
        transform: translateX(0);
    }

    .kan-abt-slide img {
        width: auto;
        height: 100%;
        object-fit: contain;
        border-radius: 8px;
    }

    .kan-abt-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .kan-abt-dot {
        width: 8px;
        height: 8px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.3s;
    }

    .kan-abt-dot.active {
        background-color: var(--secondary);
        transform: scale(1.3);
    }

    @media (max-width: 768px) {
        .kan-abt-container {
            flex-direction: column;
            padding: 15px;
                    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .kan-abt-text-section {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            padding-bottom: 20px;
        }

        .kan-abt-slider-section {
            width: 100%;
            padding-top: 20px;
        }

        .kan-abt-title {
            font-size: var(--font-h3);
        }

        .kan-abt-description {
            font-size: 16px;
        }

        .kan-abt-button {
            padding: 10px 15px;
            font-size: 14px;
        }
    }









  .in-abt-section {
        max-width: 1300px;
        width: 98%;
        margin: 100px auto;
        padding: 20px;
        /* background-color: var(--bg); */
        display: flex;
        flex-direction: row;
        /* gap: 10px; */
        border-radius: 12px;
        /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); */
        overflow: hidden;
    }

    .in-abt-side-section, .in-abt-middle-section {
        width: 33.33%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 8px;
        background-color: var(--white);
    }

    .in-abt-sub-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: var(--white);
        border: 1px solid var(--text);
        padding: 20px;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .in-abt-sub-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .in-abt-icon {
        font-size: 20px;
        padding: 15px;
        background-color: #070707;
        border-radius: 50%;
        color: var(--white);
        margin-bottom: 15px;
    }

    .in-abt-text {
        text-align: left;
    }

    .in-abt-title {
        font-size: var(--font-h3);
        color: var(--text);
        margin-bottom: 10px;
        font-weight: 700;
    }

    .in-abt-description {
        font-size: var(--font-p);
        color: var(--text-secondary);
        line-height: 1.6;
    }

    .in-abt-image {
        width: auto;
        height: 100%;
        max-height: 600px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 1024px) {
        .in-abt-section {
            flex-direction: column;
            padding: 15px;
        }

        .in-abt-side-section, .in-abt-middle-section {
            width: 100%;
        }

        .in-abt-middle-section {
            padding: 15px;
        }

        .in-abt-image {
            max-width: 400px;
        }
    }

    @media (max-width: 768px) {
        .in-abt-section {
            margin: 50px auto;
        }

        .in-abt-title {
            font-size: var(--font-p);
        }

        .in-abt-description {
            font-size: 14px;
        }

        .in-abt-icon {
            font-size: 30px;
        }

        .in-abt-image {
            max-width: 300px;
            height: auto;
            margin: 0 auto;
        }
    }










    
    .pr-abt-section {
        max-width: 1200px;
        width: 98%;
        margin: 100px auto;
        padding: var(--padding-medium) var(--padding-xsmall);
        text-align: center;
    }

    .pr-abt-title {
        font-size: var(--font-h2);
        color: var(--text);
        margin-bottom: var(--padding-medium);
        font-weight: 700;
        letter-spacing: 1px;
    }

    .pr-abt-top-cards, .pr-abt-bottom-cards {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-bottom: var(--padding-medium);
    }

    .pr-abt-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .pr-abt-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .pr-abt-top-cards .pr-abt-card {
        max-width: 350px;
        width: 100%;
        height: 350px;
        background: radial-gradient(circle 150px, rgb(221, 65, 65) 30%, var(--secondary) 80%);
    }

    .pr-abt-bottom-cards .pr-abt-card {
        max-width: 240px;
        width: 100%;
        height: calc(var(--image-height) * 0.7);
        background: radial-gradient(circle, var(--white), #333333);
    }

    .pr-abt-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        position: absolute;
        top: 68%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* border-radius: 8px; */
    }

  .pr-abt-blur-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 0) 50%, rgba(245, 245, 245, 0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--padding-xsmall);
    border-top: none; /* Remove any border to avoid sharp lines */
}

    .pr-abt-name {
        font-size: var(--font-h3);
        color: var(--white);
        font-weight: 700;
        text-align: left;
        margin-bottom: 5px;
    }

    .pr-abt-role {
        font-size: var(--font-p);
        color: var(--white);
        text-align: left;
        margin-bottom: 15px;
    }

    .pr-abt-social-icons {
        display: flex;
        gap: 10px;
        
    }

    .pr-abt-social-icon {
        font-size: 20px;
        color: var(--white);
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .pr-abt-social-icon:hover {
        color: var(--primary);
    }

    @media (max-width: 1024px) {
        .pr-abt-top-cards, .pr-abt-bottom-cards {
            gap: 20px;
        }

        .pr-abt-top-cards .pr-abt-card {
            max-width: 300px;
            height: calc(var(--image-height) * 0.8);
        }

        .pr-abt-bottom-cards .pr-abt-card {
            max-width: 200px;
            height: calc(var(--image-height) * 0.6);
        }
    }

    @media (max-width: 768px) {
        .pr-abt-section {
            margin: 50px auto;
            padding: var(--padding-small);
        }

        .pr-abt-title {
            font-size: var(--font-h3);
        }

        .pr-abt-top-cards, .pr-abt-bottom-cards {
            flex-direction: column;
            align-items: center;
        }

        .pr-abt-top-cards .pr-abt-card, .pr-abt-bottom-cards .pr-abt-card {
            max-width: 90%;
            width: 100%;
        }

        .pr-abt-name {
            font-size: var(--font-p);
        }

        .pr-abt-role {
            font-size: 14px;
        }

        .pr-abt-social-icon {
            font-size: 16px;
        }
    }