
        :root {
            --primary-color: #4361ee;
            --primary-light: rgba(67, 97, 238, 0.1);
            --secondary-color: #f72585;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --success-color: #4cc9f0;
            --gradient-blue: linear-gradient(135deg, var(--primary-color), #3a0ca3);
            --gradient-green: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #3a56e8;
            border-color: #3a56e8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }

        /* Breadcrumb Area */
        .breadcumb-area {
            background: url('../AboutHero.jpg') no-repeat center center/cover;
            padding: 180px 0;
            position: relative;
            overflow: hidden;
        }

        .breadcumb-area:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .breadcumb-area::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .breadcumb-inner {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
        }

        .breadcumb-inner ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
            flex-wrap: wrap;
        }

        .breadcumb-inner ul li {
            margin: 0 10px;
            color: #fff;
        }

        .breadcumb-inner ul li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcumb-inner ul li a:hover {
            color: var(--primary-light);
        }

        .breadcumb-inner ul li i {
            margin-right: 10px;
        }

        .brpt h2 {
            position: relative;
            z-index: 2;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin: 0;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Trust Badge */
        .trust-badge-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            position: relative;
            z-index: 3;
            flex-direction: column;
            align-items: center;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            position: relative;
        }

        .trust-title-text {
            font-size: 14px;
            font-weight: 600;
            color: silver;
            text-align: center;
            line-height: 1.2;
            min-width: 80px;
        }

        .trust-leaf-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-leaf {
            width: 44px;
            height: 44px;
            background-image: url('../badge.webp');
            background-size: contain;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-leaf-left {
            transform: scaleX(-1);
        }

        .trust-subtitle {
            font-size: 14px;
            color: var(--gray-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .trust-subtitle::before,
        .trust-subtitle::after {
            content: "";
            height: 1px;
            width: 50px;
            display: inline-block;
            background: var(--primary-light);
        }

        .trust-subtitle::before {
            background: linear-gradient(to right, var(--primary-light), var(--primary-color));
        }

        .trust-subtitle::after {
            background: linear-gradient(to left, var(--primary-light), var(--primary-color));
        }

        /* About Header */
        .about-header {
            text-align: center;
            padding: 60px 0 40px;
        }

        .about-header h2 {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .about-header h2:after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: var(--gradient-green);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .about-header p {
            color: var(--gray-color);
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        /* Story Section */
        .story-section {
            padding: 60px 0;
            position: relative;
        }

        .story-section:before {
            content: '';
            position: absolute;
            top: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(248, 249, 250, 0) 70%);
            z-index: 0;
        }

        .story-image {
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            height: 100%;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .story-content {
            padding: 30px;
        }

        .story-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
        }

        .story-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: var(--gradient-green);
            margin: 15px 0 0;
            border-radius: 2px;
        }

        .story-text {
            margin-bottom: 20px;
            color: var(--gray-color);
        }

        /* Milestones Section */
        .milestones-section {
            padding: 60px 0;
            background: var(--gradient-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .milestones-section:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(67, 97, 238, 0) 70%);
            z-index: 0;
        }

        .milestone-item {
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .milestone-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1;
            color: white;
        }

        .milestone-label {
            font-size: 1.1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Mission Section */
        .mission-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .mission-image {
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            height: 100%;
        }

        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mission-content {
            padding: 30px;
        }

        .mission-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
        }

        .mission-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: var(--gradient-green);
            margin: 15px 0 0;
            border-radius: 2px;
        }

        .mission-text {
            margin-bottom: 20px;
            color: var(--gray-color);
        }

        .mission-features {
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .feature-content p {
            color: var(--gray-color);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Vision Section */
        .vision-section {
            padding: 60px 0;
            background: #ffffff;
            position: relative;
        }

        .vision-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .vision-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .vision-header p {
            font-size: 1.1rem;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }

        .vision-card {
            border: none;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(20px);
            opacity: 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            height: 90%;
            padding: 30px;
            margin-bottom: 30px;
        }

        .vision-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
        }

        .vision-card-img {
            height: 200px;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .vision-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .vision-card:hover .vision-card-img img {
            transform: scale(1.05);
        }

        .vision-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .vision-card-text {
            color: var(--gray-color);
        }

        /* Values Section */
        .values-section {
            padding: 60px 0;
            background: #f8f9fa;
            position: relative;
        }

        .values-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .values-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .values-header p {
            font-size: 1.1rem;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }

        .value-card {
            border: none;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(20px);
            opacity: 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            height: 90%;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
        }

        .value-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-green);
        }

        .value-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #3a0ca3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            margin: 0 auto 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
        }

        .value-card:hover .value-icon {
            transform: rotateY(180deg) scale(1.1);
        }

        .value-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .value-text {
            color: var(--gray-color);
        }

        /* CTA Section */
        .about-cta-section {
            padding: 80px 0;
            background: var(--gradient-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .about-cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(67, 97, 238, 0) 70%);
            z-index: 0;
        }

        .about-cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .about-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-cta-text {
            font-size: 1.25rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 999;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            color: white;
            transform: translateY(-5px) scale(1.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .brpt h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 991.98px) {
            .brpt h2 {
                font-size: 2.5rem;
            }

            .story-image, .mission-image {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .breadcumb-area {
                padding: 120px 0 60px;
            }

            .brpt h2 {
                font-size: 2rem;
            }

            .milestone-number {
                font-size: 2.5rem;
            }

            .about-cta-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .breadcumb-area {
                padding: 100px 0 40px;
            }

            .brpt h2 {
                font-size: 1.8rem;
            }

            .milestone-number {
                font-size: 2rem;
            }

            .about-cta-title {
                font-size: 1.8rem;
            }
        }