
        :root {
            --primary-color: #4e54c8;
            --secondary-color: #8f94fb;
            --accent-color: #ff6b6b;
            --light-color: #f9f9f9;
            --dark-color: #333;
        }

        .mission-vision-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-color) 0%, #e6e9f0 100%);
        }

        .section-title {
            position: relative;
            margin-bottom: 60px;
            font-weight: 700;
            color: var(--dark-color);
        }

        .card {
            border-radius: 15px !important;
            border: none;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .mission-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .vision-card {
            background: white;
            color: var(--dark-color);
            border-left: 4px solid var(--accent-color) !important;
        }

        .card-header {
            border: none;
            padding: 30px 30px 0 !important;
            background: transparent;
        }

        .card-body {
            padding: 30px !important;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white !important;
        }

        .mission-icon {
            background-color: rgba(255, 255, 255, 0.2);

        }

        .vision-icon {
            background-color: rgba(78, 84, 200, 0.1);
            color: var(--primary-color);
        }

        .icon-circle i {
            font-size: 32px;
        }

        .card-title {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 24px;
            padding: 0 !important;
        }

        .mission-points,
        .vision-points {
            list-style: none;
            padding-left: 0;
            margin-top: 25px;
        }

        .mission-points li,
        .vision-points li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }

        .mission-points li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .vision-points li:before {
            content: '\f138';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        @media (max-width: 991px) {
            .card {
                margin-bottom: 30px;
            }
        }

        .animated-bg {
            position: relative;
            overflow: hidden;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(transparent,
                    transparent 20px,
                    rgba(255, 255, 255, 0.05) 20px,
                    rgba(255, 255, 255, 0.05) 40px);
            transform: rotate(45deg);
            animation: bgAnimation 30s linear infinite;
            z-index: 0;
        }

        .card-content {
            position: relative;
            z-index: 1;
        }

        @keyframes bgAnimation {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 100% 100%;
            }
        }

        .timeline *::before,
        .timeline *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .timeline {
            --color: rgba(30, 30, 30);
            --bgColor: rgba(245, 245, 245);
            min-height: 100vh;
            display: grid;
            align-content: center;
            gap: 2rem;
            padding: 2rem;
            font-family: "Poppins", sans-serif;
            color: var(--color);
            background: var(--bgColor);
        }

        .timeline h1 {
            text-align: center;
            font-size: 3em;
        }

        .timeline ul {
            --col-gap: 2rem;
            --row-gap: 2rem;
            --line-w: 0.25rem;
            display: grid;
            grid-template-columns: var(--line-w) 1fr;
            grid-auto-columns: max-content;
            column-gap: var(--col-gap);
            list-style: none;
            width: min(60rem, 90%);
            margin-inline: auto;
        }

        /* line */
        .timeline ul::before {
            content: "";
            grid-column: 1;
            grid-row: 1 / span 20;
            background: rgb(225, 225, 225);
            border-radius: calc(var(--line-w) / 2);
        }

        /* row gaps */
        .timeline ul li:not(:last-child) {
            margin-bottom: var(--row-gap);
        }

        /* card */
        .timeline ul li {
            grid-column: 2;
            --inlineP: 1.5rem;
            margin-inline: var(--inlineP);
            grid-row: span 2;
            display: grid;
            grid-template-rows: min-content min-content min-content;
        }

        /* date */
        .timeline ul li .date {
            --dateH: 3rem;
            height: var(--dateH);
            margin-inline: calc(var(--inlineP) * -1);
            text-align: center;
            background-color: var(--accent-color);
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
            display: grid;
            place-content: center;
            position: relative;
            border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
        }

        /* date flap */
        .timeline ul li .date::before {
            content: "";
            width: var(--inlineP);
            aspect-ratio: 1;
            background: var(--accent-color);
            background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
            position: absolute;
            top: 100%;
            clip-path: polygon(0 0, 100% 0, 0 100%);
            right: 0;
        }

        /* circle */
        .timeline ul li .date::after {
            content: "";
            position: absolute;
            width: 2rem;
            aspect-ratio: 1;
            background: var(--bgColor);
            border: 0.3rem solid var(--accent-color);
            border-radius: 50%;
            top: 50%;
            transform: translate(50%, -50%);
            right: calc(100% + var(--col-gap) + var(--line-w) / 2);
        }

        /* title and description */
        .timeline ul li .title,
        .timeline ul li .descr {
            background: var(--bgColor);
            position: relative;
            padding-inline: 1.5rem;
        }

        .timeline ul li .title {
            overflow: hidden;
            padding-block-start: 1.5rem;
            padding-block-end: 1rem;
            font-weight: 500;
        }

        .timeline ul li .descr {
            padding-block-end: 1.5rem;
            font-weight: 300;
        }

        /* shadows */
        .timeline ul li .title::before,
        .timeline ul li .descr::before {
            content: "";
            position: absolute;
            width: 90%;
            height: 0.5rem;
            background: rgba(0, 0, 0, 0.5);
            left: 50%;
            border-radius: 50%;
            filter: blur(4px);
            transform: translate(-50%, 50%);
        }

        .timeline ul li .title::before {
            bottom: calc(100% + 0.125rem);
        }

        .timeline ul li .descr::before {
            z-index: -1;
            bottom: 0.25rem;
        }

        /* responsive layout */
        @media (min-width: 40rem) {
            .timeline ul {
                grid-template-columns: 1fr var(--line-w) 1fr;
            }

            .timeline ul::before {
                grid-column: 2;
            }

            .timeline ul li:nth-child(odd) {
                grid-column: 1;
            }

            .timeline ul li:nth-child(even) {
                grid-column: 3;
            }

            .timeline ul li:nth-child(2) {
                grid-row: 2/4;
            }

            .timeline ul li:nth-child(odd) .date::before {
                clip-path: polygon(0 0, 100% 0, 100% 100%);
                left: 0;
            }

            .timeline ul li:nth-child(odd) .date::after {
                transform: translate(-50%, -50%);
                left: calc(100% + var(--col-gap) + var(--line-w) / 2);
            }

            .timeline ul li:nth-child(odd) .date {
                border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
            }
        }

        .timeline .credits {
            margin-top: 1rem;
            text-align: right;
        }

        .timeline .credits a {
            color: var(--color);
        }

        .why-choose-us {
            background-color: #f8f9fa;
        }

        .section-title {
            margin-bottom: 0px;

        }

        .section-title h2 {
            font-size: 2.2em !important;
            font-weight: 700;
            color: #333;
            position: relative;
            margin-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: #226915;
        }

        #about-timeline {
            scroll-margin-top: 100px;
            /* Adjust based on your header height */
        }

        .feature-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .feature-card h3 {
            padding: 0 !important;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #007bff;
            display: inline-block;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .feature-points {
            color: #666;
            padding-left: 20px;
            margin-bottom: 0;
        }

        .feature-points li {
            margin-bottom: 8px;
            list-style: outside !important;
        }

        .feature-points li:last-child {
            margin-bottom: 0;
        }


       
        @media(max-width: 620px) {
            #about-img {
                height: 500px;
            }
        }

        .hero-img {
            width: 100%;
            height: auto;
            /* desktop: natural aspect ratio */
            display: block;
        }

        /* phones & small tablets: control height and crop nicely */
        @media (max-width: 767px) {
            .hero-img {
                height: 48vh;
                /* about half screen height */
                object-fit: cover;
                /* fill area without distortion */
                object-position: center top;
                /* show top portion of building */
            }
        }
        