/* Start custom CSS for html, class: .elementor-element-4179fb2 */<style>
        body {
            background-color: var(--primary-white);
            background-image: url('images/BG.png');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

        .about-page {
            min-height: 100vh;
            padding-top: 150px;
            padding-bottom: 60px;
            position: relative;
        }

        .about-page::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.88) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .about-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 40px;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .back-button:hover {
            gap: 12px;
            color: var(--accent-dark);
        }

        .back-button::before {
            content: "←";
            font-size: 20px;
        }

        /* Animated Hero Section */
        .animated-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
            margin-bottom: 80px;
            padding: 10px 1px;
        }

        .animated-text-container {
            font-size: 200px;
            font-weight: 900;
            font-family: 'Bebas Neue', 'Anton', 'Poppins', sans-serif;
            letter-spacing: 0.02em;
            line-height: 0.9;
            margin: 0;
            padding: 0;
            color: var(--primary-red);
        }

        .text-we {
            display: block;
            color: var(--primary-red);
            margin: 0;
            padding: 0;
            animation: fadeIn 0.3s ease-out forwards;
        }

        .text-serve {
            display: block;
            color: var(--primary-red);
            margin: 0;
            padding: 0;
            animation: fadeIn 0.3s ease-out forwards 1s;
            opacity: 0;
        }

        .cycling-word {
            display: block;
            color: var(--accent-dark);
            font-weight: 900;
            font-family: 'Bebas Neue', 'Anton', 'Poppins', sans-serif;
            height: auto;
            position: relative;
            margin: 0;
            padding: 0;
            animation: fadeIn 0.3s ease-out forwards 2s;
            opacity: 0;
        }

        .word {
            display: inline;
            animation: fadeIn 0.3s ease-out forwards;
        }

        .word.active {
            animation: fadeIn 0.3s ease-out forwards;
        }

        .word.exit {
            animation: fadeOut 0.3s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
            }
            to {
                opacity: 0;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeOutDown {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-30px);
            }
        }

        .final-text {
            display: block;
            margin-top: 15px;
            font-size: 16px;
            color: var(--text-dark);
            opacity: 1;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            border-radius: 20px;
            padding: 80px 40px;
            text-align: center;
            margin-bottom: 80px;
            border: 2px solid rgba(255, 45, 45, 0.2);
        }

        .about-hero h1 {
            font-size: 64px;
            color: var(--primary-red);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 5px;
        }

        .about-hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .section-block {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 24px;
            padding: 48px;
            border: 1px solid rgba(255, 45, 45, 0.12);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
            margin-bottom: 64px;
        }

        .section-title,
        .values-title,
        .team-title,
        .achievements-title {
            font-family: "Playfair Display", "Poppins", serif;
            letter-spacing: 0.5px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-light);
            text-align: center;
            margin-top: -30px;
            margin-bottom: 40px;
        }

        /* Content Grid */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 64px;
        }

        .about-content h2 {
            font-size: 40px;
            color: var(--primary-red);
            margin-bottom: 20px;
            font-weight: 700;
            font-family: "Playfair Display", "Poppins", serif;
        }

        .about-content p {
            font-size: 15px;
            color: var(--text-dark);
            line-height: 1.9;
            margin-bottom: 15px;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Mission & Vision */
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 64px;
        }

        .mv-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255, 45, 45, 0.12);
            border-left: 5px solid var(--primary-red);
            overflow: hidden;
            margin: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 60px rgba(255, 45, 45, 0.18);
        }

        .mv-card h3 {
            font-size: 28px;
            color: var(--primary-red);
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .mv-card p {
            font-size: 15px;
            color: var(--text-dark);
            line-height: 1.8;
        }

        /* Values Section */
        .values-section {
            margin-bottom: 64px;
        }

        .values-title {
            font-size: 48px;
            color: var(--primary-red);
            text-align: center;
            margin-bottom: 60px;
            font-weight: 700;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255, 45, 45, 0.12);
            text-align: center;
            transition: all 0.3s ease;
            overflow: hidden;
            margin: 10px;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 45, 45, 0.2);
        }

        .value-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .value-card h4 {
            font-size: 22px;
            color: var(--primary-red);
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .value-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            margin-bottom: 64px;
        }

        .team-title {
            font-size: 48px;
            color: var(--primary-red);
            text-align: center;
            margin-bottom: 60px;
            font-weight: 700;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255, 45, 45, 0.12);
            text-align: center;
            transition: all 0.3s ease;
            margin: 10px;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 45, 45, 0.2);
        }

        .team-member-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
        }

        .team-member-info {
            padding: 25px;
        }

        .team-member-name {
            font-size: 20px;
            color: var(--primary-red);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .team-member-role {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .team-member-desc {
            font-size: 13px;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Achievements Section */
        .achievements {
            background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            padding: 60px 40px;
            border-radius: 20px;
            margin-bottom: 64px;
            border: 1px solid rgba(255, 45, 45, 0.12);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
        }

        .achievements-title {
            font-size: 40px;
            color: var(--primary-red);
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .achievement-item h3 {
            font-size: 36px;
            color: var(--primary-red);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .achievement-item p {
            font-size: 15px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .about-page {
                padding-top: 120px;
            }

            .about-hero {
                padding: 40px 20px;
            }

            .about-hero h1 {
                font-size: 40px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content h2 {
                font-size: 32px;
            }

            .mission-vision {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
            }

            .section-block {
                padding: 32px 24px;
            }
        }
    </style>/* End custom CSS */