@import "https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP&display=swap";

        :root {
            --primary-color: #005081;
            --secondary-color: #be1800;
            --accent-color: #be1800;
            --text-dark: #1a202c;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #005081 0%, #0074b7 50%, #be1800 100%);
            --gradient-secondary: linear-gradient(45deg, #be1800 0%, #ff4444 100%);
            --gradient-accent: linear-gradient(135deg, rgba(0, 80, 129, 0.1) 0%, rgba(190, 24, 0, 0.1) 100%);
            --shadow-soft: 0 10px 40px rgba(0, 80, 129, 0.1);
            --shadow-medium: 0 20px 60px rgba(0, 80, 129, 0.15);
            --shadow-strong: 0 30px 80px rgba(0, 80, 129, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }

        /* Animated Background Elements */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape-1 {
            top: 10%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            animation-delay: 0s;
        }

        .shape-2 {
            top: 20%;
            right: 10%;
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            transform: rotate(45deg);
            animation-delay: 5s;
        }

        .shape-3 {
            bottom: 20%;
            left: 20%;
            width: 100px;
            height: 100px;
            background: var(--gradient-secondary);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        /* Hero Section with 3D Effect */
        .vision-hero {
            background: var(--gradient-primary);
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            perspective: 1000px;
        }

        .vision-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(190, 24, 0, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 80, 129, 0.2) 0%, transparent 50%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            transform-style: preserve-3d;
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 2rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: translateZ(50px);
            animation: slideInUp 1s ease-out;
        }

        .hero-title .highlight {
            background: linear-gradient(45deg, #ffd700, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            color: rgba(255,255,255,0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
            font-weight: 400;
            transform: translateZ(30px);
            animation: slideInUp 1s ease-out 0.2s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px) translateZ(0px);
            }
            to {
                opacity: 1;
                transform: translateY(0) translateZ(50px);
            }
        }

        /* Glassmorphism Cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow-medium);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .glass-card:hover::before {
            left: 100%;
        }

        .glass-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-strong);
        }

        /* Content Sections */
        .content-section {
            padding: 120px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 100px;
            position: relative;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: var(--gradient-accent);
            border: 1px solid rgba(0, 80, 129, 0.2);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 6px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .section-description {
            font-size: 1.3rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Vision Section with Split Layout */
        .vision-section {
            background: var(--white);
            position: relative;
        }

        .vision-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .vision-content {
            position: relative;
        }

        .vision-content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
            line-height: 1.2;
        }

        .vision-text {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .vision-highlights {
            display: grid;
            gap: 20px;
            margin-top: 3rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: var(--gradient-accent);
            border-radius: 16px;
            border: 1px solid rgba(0, 80, 129, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .highlight-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-soft);
        }

        .highlight-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-soft);
        }

        .highlight-text {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .vision-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .vision-card-3d {
            background: var(--white);
            padding: 50px;
            border-radius: 32px;
            box-shadow: var(--shadow-strong);
            text-align: center;
            position: relative;
            transform: perspective(1000px) rotateY(-15deg);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 400px;
        }

        .vision-card-3d:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-20px);
        }

        .vision-card-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            border-radius: 32px 32px 0 0;
        }

        .vision-icon-3d {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--white);
            font-size: 2.5rem;
            box-shadow: var(--shadow-medium);
        }

        /* Mission Section with Card Grid */
        .mission-section {
            background: var(--bg-light);
            position: relative;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .mission-card {
            background: var(--white);
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 80, 129, 0.1);
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .mission-card:hover::before {
            transform: scaleX(1);
        }

        .mission-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-strong);
        }

        .mission-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 2rem;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .mission-card:hover .mission-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .mission-card h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .mission-card p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Values Section with Creative Layout */
        .values-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .values-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            opacity: 0.3;
            transform: rotate(15deg);
            z-index: 0;
        }

        .values-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .value-item {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 80, 129, 0.1);
        }

        .value-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: var(--gradient-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .value-item:hover::before {
            opacity: 0.1;
        }

        .value-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-medium);
        }

        .value-content {
            position: relative;
            z-index: 2;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .value-item:hover .value-icon {
            transform: scale(1.1) rotate(-10deg);
        }

        .value-item h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .value-item p {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* CTA Section with Dynamic Background */
        .cta-section {
            background: var(--gradient-primary);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(190, 24, 0, 0.2) 0%, transparent 50%);
            animation: backgroundShift 10s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .cta-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 2rem;
            text-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .cta-description {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .ctaa-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: var(--white);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .ctaa-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.4s ease;
        }

        .ctaa-button:hover::before {
            left: 0;
        }

        .ctaa-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            color: var(--white);
            text-decoration: none;
        }

        .ctaa-button span {
            position: relative;
            z-index: 2;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .vision-container {
                gap: 60px;
            }
        }

        @media (max-width: 992px) {
            .vision-container {
                grid-template-columns: 1fr;
                gap: 80px;
                text-align: center;
            }
            
            .vision-card-3d {
                transform: none;
                max-width: 500px;
            }
            
            .vision-card-3d:hover {
                transform: translateY(-20px);
            }
        }

        @media (max-width: 768px) {
            .content-section {
                padding: 80px 0;
            }
            
            .section-header {
                margin-bottom: 60px;
            }
            
            .mission-grid {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hero-content {
                padding: 0 1rem;
            }
        }

        /* Scroll animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }
  