.abt-hero-section {
            padding: 35px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .abt-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="%231ED2F7" fill-opacity="0.03" d="M0,500Q0,250,250,250Q500,250,500,500Q500,750,750,750Q1000,750,1000,500Q1000,250,750,250Q500,250,500,0Q500,-250,250,-250Q0,-250,0,500Z"/></svg>');
            background-size: cover;
            z-index: 0;
        }

        .abt-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
            position: relative;
            z-index: 1;
        }

        .abt-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Hero Text */
        .abt-hero-text {
            padding-right: 30px;
        }

        .abt-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .abt-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #1ED2F7, #0fb8de);
            border-radius: 2px;
        }

        .abt-mission-statement {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #374151;
            margin-bottom: 25px;
            padding: 20px;
            /* background: white; */
            border-radius: 10px;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
            border-left: 4px solid #1ED2F7;
        }

        .abt-text-muted {
            font-size: 1rem;
            line-height: 1.7;
            color: #6b7280;
            margin-bottom: 0;
        }

        /* Hero Image */
        .abt-hero-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .abt-hero-image:hover {
            transform: translateY(-10px);
        }

        .abt-hero-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 15px;
            transition: transform 0.5s ease;
        }

        .abt-hero-image:hover img {
            transform: scale(1.05);
        }

        .abt-hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(30, 210, 247, 0.1), rgba(30, 210, 247, 0.05));
            z-index: 1;
            pointer-events: none;
        }

        /* Values Section */
        .abt-values-section {
            padding: 80px 0;
            background: white;
        }

        .abt-values-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .abt-values-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 50px;
            position: relative;
        }

        .abt-values-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #1ED2F7, #0fb8de);
            border-radius: 2px;
        }

        /* Values Cards */
        .abt-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .abt-value-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
        }

        .abt-value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(30, 210, 247, 0.1);
            border-color: #1ED2F7;
        }

        .abt-value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1ED2F7, #0fb8de);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .abt-value-card:hover::before {
            transform: scaleX(1);
        }

        .abt-value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, rgba(30, 210, 247, 0.1), rgba(30, 210, 247, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1ED2F7;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .abt-value-card:hover .abt-value-icon {
            background: linear-gradient(135deg, #1ED2F7, #0fb8de);
            color: white;
            transform: scale(1.1);
        }

        .abt-value-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .abt-value-card-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #6b7280;
            margin-bottom: 0;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .abt-hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .abt-hero-text {
                padding-right: 0;
                text-align: center;
            }

            .abt-section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .abt-values-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .abt-hero-section {
                padding: 60px 0;
            }

            .abt-section-title {
                font-size: 2rem;
            }

            .abt-values-title {
                font-size: 1.8rem;
            }

            .abt-value-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .abt-values-grid {
                grid-template-columns: 1fr;
            }

            .abt-section-title {
                font-size: 1.8rem;
            }

            .abt-mission-statement {
                padding: 15px;
                font-size: 1rem;
            }
        }
