  :root {
        --primary: #1a6dbe;
        --primary-dark: #0d4d8c;
        --secondary: #ff6b35;
        --light: #f8f9fa;
        --dark: #343a40;
        --gray: #6c757d;
        --light-blue: #e9f4ff;
    }


    .hero-content {
        text-align: center;
        color: #f8f9fb;
        z-index: 1;
        padding: 0 20px;
        max-width: 820px;
        animation: fadeInUp 1s ease-out;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 12px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
        font-weight: 700;
        letter-spacing: 0.05em;
        color: #ffffff;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: #e3e8f0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 22px;
        color: #cfd6e2;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .cta-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: #e74c3c;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin: 0 10px;
    }

    .cta-button:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .slider-controls {
        position: absolute;
        bottom: 30px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

    .slider-btn {
        background: rgba(255, 255, 255, 0.3);
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin: 0 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .slider-btn:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
    }

    .slider-dots {
        display: flex;
        margin: 0 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: white;
        transform: scale(1.2);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.4rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }

        .slider-btn {
            width: 35px;
            height: 35px;
            margin: 0 5px;
        }
    }

    /* Container */
    .contain {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    /* Section Titles */
    .section-title {
        text-align: center;
        font-size: 2.5em;
        margin-bottom: 20px;
        /* color: #1e40af; */
        position: relative;
        padding-bottom: 10px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        /* background: linear-gradient(90deg, #3b82f6, #1e40af); */
        border-radius: 2px;
    }



    /* Program Overview */
    .program-overview {
        background: white;
        padding: 10px 20px 60px 20px;
        margin-top: 5px;
    }

    .overview-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        margin-bottom: 40px;
    }

    .overview-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .overview-content {
        padding: 20px;
    }

    .overview-content h3 {
        font-size: 2em;
        color: #1e40af;
        margin-bottom: 20px;
        border-left: 5px solid #3b82f6;
        padding-left: 15px;
    }

    .overview-content p {
        font-size: 1.2em;
        line-height: 1.8;
        margin-bottom: 15px;
        color: #4a5568;
    }

    /* Industry Section */
    .industry-section {
        background: #f7fafc;
        padding: 60px 20px;
    }

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

    .industry-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid #3b82f6;
    }

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    }

    .industry-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .industry-card-content {
        padding: 25px;
    }

    .industry-card h4 {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: #2d3748;
    }

    .industry-card p {
        color: #4a5568;
        line-height: 1.6;
    }


    /* Benefits Section */
    .benefits-section {
        background: white;
        padding: 60px 20px;
    }

    .benefits-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .benefits-image {
        width: 100%;
        max-width: 1000px;
        height: auto;
        margin: 0 auto 40px;
        display: block;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .benefit-card {
        background: #f0f9ff;
        border: 2px solid #bfdbfe;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        background: white;
        border-color: #3b82f6;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        transform: translateY(-5px);
    }

    .benefit-icon {
        font-size: 3em;
        margin-bottom: 20px;
        filter: grayscale(0);
    }

    .benefit-card h4 {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: #1e40af;
    }

    .benefit-card p {
        color: #4a5568;
        line-height: 1.6;
    }

    /* Process Flow */
    .process-section {
        background: #f7fafc;
        padding: 60px 20px;
    }

    .process-flow {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .process-step {
        background: white;
        border-left: 4px solid #3b82f6;
        padding: 30px;
        border-radius: 5px;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }

    .process-step:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.25);
        border-left-color: #1e40af;
    }

    .step-number {
        font-size: 3em;
        font-weight: bold;
        color: #dbeafe;
        margin-bottom: 10px;
    }

    .process-step h4 {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: #1e40af;
    }

    .process-step p {
        font-size: 1em;
        line-height: 1.6;
        color: #4a5568;
    }

    /* Global Impact */
    .global-section {
        background: white;
        padding: 60px 20px;
    }

    .global-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .global-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .global-text h3 {
        font-size: 2em;
        color: #1e40af;
        margin-bottom: 20px;
    }

    .global-text p {
        font-size: 1.1em;
        line-height: 1.8;
        color: #4a5568;
        margin-bottom: 15px;
    }

    /* Training Capacity */
    .capacity-section {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        color: white;
        padding: 60px 20px;
        text-align: center;
    }

    .capacity-content {
        max-width: 1000px;
        margin: 0 auto;
    }

    .capacity-image {
        width: 100%;
        max-width: 800px;
        height: auto;
        margin: 30px auto;
        display: block;
        border-radius: 10px;
    }

    .contains {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--primary);
        display: inline-block;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .section-title h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary);
        border-radius: 2px;
    }

    .section-title p {
        max-width: 700px;
        margin: 0 auto;
        color: var(--gray);
    }

    .section-padding {
        padding: 80px 0;
    }

    /* Service Cards */
    #services {
        background:
            linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
            url("../images/worldmp.png");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

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

    .service-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-img {
        width: 100%;
        height: 250px;
        /* ✅ Forces equal height */
        overflow: hidden;
        /* ✅ Crops extra image */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* ✅ Crops without stretching */
        display: block;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .service-content p {
        margin-bottom: 20px;
        color: var(--gray);
    }

    .service-features {
        margin: 25px 0;
    }

    .service-features h4 {
        color: var(--primary);
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .service-features ul {
        list-style: none;
        padding-left: 0;
    }

    .service-features li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

    .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: bold;
    }

    /* .service-card.one {
    background: 
        linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
        url("../images/tokuc1.png");
    background-size: cover;
    background-position: center;
}

.service-card.two {
    background: 
        linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
        url("../images/tokuc1.png");
    background-size: cover;
    background-position: center;
} */



    /* Comparison Section */
    .comparison-section {
        background-color: var(--light-blue);
    }

    .comparison-table {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        margin-top: 40px;


    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th,
    td {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    th {
        background-color: var(--primary);
        color: white;
        font-weight: 600;
    }

    tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    tr:hover {
        background-color: #f1f7ff;
    }

    /* Process Section */
    .process-steps {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 40px;
        position: relative;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 10%;
        right: 10%;
        height: 3px;
        background-color: var(--primary);
        z-index: 1;
    }

    .step {
        flex: 0 0 22%;
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .step:hover {
        transform: translateY(-10px);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 20px;
    }

    .step h3 {
        margin-bottom: 15px;
        color: var(--primary);
        font-size: 1.4rem;
    }


    /* Contact Section */
    .contact-section {
        background: #1a202c;
        color: white;
        padding: 60px 20px;
        text-align: center;
    }

    .contact-info {
        max-width: 600px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 40px;
        margin-top: 30px;
    }

    .contact-item {
        margin: 20px 0;
        font-size: 1.2em;
    }

    .contact-item strong {
        display: block;
        margin-bottom: 10px;
        color: #90cdf4;
        font-size: 0.9em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .contact-btn {
        display: inline-block;
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        color: white;
        padding: 15px 40px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        margin-top: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2em;
        }

        .hero-subtitle {
            font-size: 1.3em;
        }

        .section-title {
            font-size: 2em;
        }

        .overview-grid,
        .global-content {
            grid-template-columns: 1fr;
        }

        .featured-image {
            height: 300px;
        }

        .overview-image,
        .global-image {
            height: 300px;
        }
    }

    /* Scroll Animation */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

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

    /* ===================================
   INLINE STYLES FROM INDEX.PHP
   =================================== */

    #services {
        background:
            linear-gradient(rgba(243, 241, 237, 0.9), rgba(238, 231, 215, 0.9)),
            url("../images/worldmp.png");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    /* Industry Section */
    .industry-section {
        background: linear-gradient(to bottom, #f7fafc, #e2e8f0);
        padding: 80px 0;
        overflow: hidden;
        position: relative;
    }

    .industry-grid-container {
        position: relative;
        width: 100%;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
        padding: 10px 0;
    }

    .industry-grid-wrapper {
        display: flex;
        width: fit-content;
        animation: slide 40s linear infinite;
        padding: 10px 0;
    }

    /* スライドアニメーション - 滑らかに継続 */
    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .industry-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border-top: 4px solid #3b82f6;
        flex: 0 0 280px;
        margin: 0 15px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Fade In Up Animation - Used for hero content and industry cards */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 各カードの表示遅延 */
    .industry-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .industry-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .industry-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .industry-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .industry-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .industry-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .industry-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .industry-card:nth-child(8) {
        animation-delay: 0.8s;
    }

    /* ホバー効果 */
    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
        border-top-color: #60a5fa;
        animation-play-state: paused;
    }

    .industry-card:hover~.industry-card {
        animation-play-state: paused;
    }

    .industry-grid-wrapper:hover {
        animation-play-state: paused;
    }

    .industry-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .industry-card:hover img {
        transform: scale(1.08);
    }

    .industry-card-content {
        padding: 25px;
    }

    .industry-card h4 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .industry-card h4 i {
        color: #3b82f6;
    }

    .industry-card p {
        color: #4b5563;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    /* 自動スライドインジケーター */
    .auto-slide-info {
        text-align: center;
        margin-top: 40px;
        color: #64748b;
        font-size: 0.9rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        opacity: 0.8;
    }

    .auto-slide-info i {
        color: #3b82f6;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }

    /* =====================================
   HERO SECTION BASE
===================================== */
    .heros {
        position: relative;
        min-height: 85svh;
        /* modern mobile safe */
        height: auto;
        width: 100%;
        overflow: hidden;
        padding-bottom: 0;
        margin-bottom: 0;
        background-image: linear-gradient(to bottom, rgba(10, 20, 35, 0.65) 0%, rgba(10, 20, 35, 0.35) 35%, rgba(10, 20, 35, 0.35) 65%, rgba(10, 20, 35, 0.65) 100%), url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&w=1950&q=80");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* ===================================== BACKGROUND IMAGE ===================================== */
    .background-container {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .sliding-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        filter: saturate(1.05) contrast(1.05);
    }

    /* Cinematic gradient + image */
    .bg1 {
        background-image: linear-gradient(to bottom, rgba(10, 20, 35, 0.65) 0%, rgba(10, 20, 35, 0.35) 35%, rgba(10, 20, 35, 0.35) 65%, rgba(10, 20, 35, 0.65) 100%), url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&w=1950&q=80");
    }

    /* ===================================== HERO CONTENT (CENTERED) ===================================== */
    .hero-overlay {
        position: relative;
        z-index: 5;
        height: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        padding: clamp(80px, 12vh, 160px) 20px 0;
    }

    /* Removed duplicate hero styles - see lines 74-110 for main definitions */
    /* ===================================== HERO BUTTONS ===================================== */
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .cta-button {
        padding: 12px 22px;
        min-width: 150px;
        background: #ffffff;
        color: #1e2a45;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .cta-button.outline {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.85);
    }

    /* ===================================== FLOATING INFO BOX ===================================== */
    /* Outer container */
    .info-box-bottom {
        position: absolute;
        left: 50%;
        bottom: clamp(16px, 4vw, 40px);
        transform: translateX(-50%);
        width: min(95%, 1100px);
        padding: 32px;
        background: transparent;
        border-radius: 22px;
        box-shadow: none;
        z-index: 10;
    }

    /* Grid */
    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    /* Cards */
    .info-card {
        position: relative;
        padding: 30px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        color: #ffffff;
        line-height: 1.8;
        opacity: 0;
        animation: slideInUp 0.8s ease-out forwards;
    }

    /* Animation delays for staggered effect */
    .info-card.mission {
        animation-delay: 0.3s;
    }

    .info-card.vision {
        animation-delay: 0.5s;
    }

    /* Keyframe Animation - Slide up from bottom */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Title */
    .card-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: white;
    }

    /* Yellow underline */
    .title-line {
        width: 42px;
        height: 3px;
        background: #fbc02d;
        margin-bottom: 16px;
        border-radius: 2px;
    }

    /* Accent bar */
    .info-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 24px;
        width: 4px;
        height: calc(100% - 48px);
        border-radius: 3px;
    }

    /* Text */
    .info-card p {
        font-size: 0.95rem;
        opacity: 0.95;
        color: white;
    }

    /* ===================================== RESPONSIVE OVERRIDES FOR INDEX PAGE ===================================== */
    @media (max-width: 1200px) {
        .industry-card {
            flex: 0 0 250px;
        }
    }

    @media (max-width: 992px) {
        .industry-card {
            flex: 0 0 220px;
        }

        .section-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .industry-card {
            flex: 0 0 200px;
            margin: 0 10px;
        }

        .industry-grid-wrapper {
            animation: slide 30s linear infinite;
        }

        .info-grid {
            grid-template-columns: 1fr;
        }

        .hero-content {
            transform: translateY(-20px);
        }

        .hero-overlay {
            padding-top: 100px;
        }

        .heros {
            min-height: auto;
            padding-bottom: 20px;
        }

        .services-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .info-box-bottom {
            position: relative;
            left: auto;
            bottom: auto;
            transform: none;
            margin-top: 32px;
            padding: 0 16px;
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .industry-section {
            padding: 60px 0;
        }

        .industry-card {
            flex: 0 0 180px;
            margin: 0 8px;
        }

        .industry-grid-wrapper {
            animation: slide 25s linear infinite;
        }

        .industry-card-content {
            padding: 15px;
        }

        .industry-card h4 {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 400px) {
        .hero-content h1 {
            font-size: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }
    }

    /* =====================================
   PROCESS SECTION - FANCY TIMELINE
===================================== */

    .process-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    .process-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .process-timeline {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
        position: relative;
        margin-top: 60px;
    }

    .process-step {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(30px);
    }

    .process-step.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .process-step:nth-child(1) {
        transition-delay: 0.1s;
    }

    .process-step:nth-child(2) {
        transition-delay: 0.2s;
    }

    .process-step:nth-child(3) {
        transition-delay: 0.3s;
    }

    .process-step:nth-child(4) {
        transition-delay: 0.4s;
    }

    .process-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    }

    .step-icon-wrapper {
        position: relative;
        margin-bottom: 25px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        position: relative;
        z-index: 2;
        transition: all 0.4s ease;
    }

    .process-step:hover .step-icon {
        transform: rotate(360deg) scale(1.1);
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    }

    .step-icon::before {
        content: '';
        position: absolute;
        inset: -5px;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        animation: pulse-ring 2s infinite;
    }

    @keyframes pulse-ring {
        0% {
            opacity: 0.6;
            transform: scale(1);
        }

        100% {
            opacity: 0;
            transform: scale(1.5);
        }
    }

    .step-number {
        position: absolute;
        bottom: -10px;
        right: -10px;
        background: white;
        color: #3b82f6;
        font-weight: 700;
        font-size: 1rem;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 3;
        border: 3px solid #f8f9fa;
    }

    .step-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .step-content p {
        font-size: 0.95rem;
        color: #64748b;
        line-height: 1.6;
    }

    .step-arrow {
        position: absolute;
        right: -35px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: #3b82f6;
        opacity: 1;
        z-index: 10;
        animation: arrow-bounce 2s infinite;
    }

    .process-step:last-child .step-arrow {
        display: none;
    }

    @keyframes arrow-bounce {

        0%,
        100% {
            transform: translateY(-50%) translateX(0);
        }

        50% {
            transform: translateY(-50%) translateX(10px);
        }
    }

    /* Responsive Design for Process Section */
    @media (max-width: 1200px) {
        .process-timeline {
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
        }

        /* Keep arrows visible, but adjust positioning for 2-column layout */
        .step-arrow {
            right: -35px;
            font-size: 1.8rem;
        }

        /* Hide arrow on even items in 2-column layout (2nd and 4th items) */
        .process-step:nth-child(even) .step-arrow {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .process-timeline {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .process-step {
            padding: 25px 15px;
        }

        .step-icon {
            width: 70px;
            height: 70px;
            font-size: 1.7rem;
        }

        .step-number {
            width: 30px;
            height: 30px;
            font-size: 0.9rem;
        }

        .step-content h3 {
            font-size: 1.1rem;
        }

        .step-content p {
            font-size: 0.9rem;
        }

        /* Show arrows vertically on mobile */
        .step-arrow {
            display: block;
            position: relative;
            right: auto;
            top: auto;
            transform: rotate(90deg);
            margin: 15px auto;
            font-size: 1.5rem;
        }

        .process-step:nth-child(even) .step-arrow {
            display: block;
        }
    }

    /* =====================================
   PAGE BANNERS - Bootstrap Style
===================================== */

    /* Base Banner Styles */
    .page-banner {
        position: relative;
        width: 100%;
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        overflow: hidden;
    }

    .page-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
    }

    .page-banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
        z-index: 2;
        animation: banner-pattern 20s linear infinite;
    }

    @keyframes banner-pattern {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(40px);
        }
    }

    .banner-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: white;
        max-width: 800px;
        padding: 40px 20px;
        animation: fadeInUp 0.8s ease-out;
    }

    .banner-content h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .banner-content p {
        font-size: clamp(1rem, 2vw, 1.3rem);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .banner-primary {
        background-image: linear-gradient(135deg, rgba(59, 130, 246, 0.85) 0%, rgba(37, 99, 235, 0.85) 100%), url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1950&q=80");
    }

    .banner-dark {
        background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1950&q=80");
    }

    .banner-contact {
        background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(59, 130, 246, 0.7) 100%), url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1950&q=80");
    }

    .banner-compact {
        min-height: 250px;
    }

    @media (max-width: 768px) {
        .page-banner {
            min-height: 250px;
            background-attachment: scroll;
        }
    }

    /* ========================================

/* ========================================
   COUNTRIES SECTION - WORLD MAP BACKGROUND
   ======================================== */

    /* Countries Section with World Map Background */
    .countries-section-below {
        margin-top: 50px;
        padding: 50px 20px;
        border-radius: 12px;
    }

    .countries-section-below .countries-title {
        font-size: 1.8rem;
        color: #1e40af;
        margin-bottom: 40px;
        font-weight: 600;
        text-align: center;
        border-left: 5px solid #3b82f6;
        padding-left: 15px;
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Single Line Countries */
    .countries-single-line {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-wrap: nowrap;
        padding: 20px 10px;
    }

    .countries-single-line::-webkit-scrollbar {
        height: 8px;
    }

    .countries-single-line::-webkit-scrollbar-track {
        background: #e5e7eb;
        border-radius: 4px;
    }

    .countries-single-line::-webkit-scrollbar-thumb {
        background: #3b82f6;
        border-radius: 4px;
    }

    .countries-single-line::-webkit-scrollbar-thumb:hover {
        background: #2563eb;
    }

    .countries-single-line .country-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        min-width: 120px;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .countries-single-line .country-item:hover {
        transform: translateY(-8px);
    }

    .countries-single-line .country-item img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        border: 4px solid #fff;
        transition: all 0.3s ease;
    }

    .countries-single-line .country-item:hover img {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
        transform: scale(1.15);
        border-color: #3b82f6;
    }

    .countries-single-line .country-item span {
        font-size: 1rem;
        color: #1f2937;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .countries-single-line {
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .countries-section-below {
            padding: 40px 20px;
        }

        .countries-section-below .countries-title {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .countries-single-line {
            flex-wrap: nowrap;
            /* keep in single line */
            overflow-x: auto;
            /* enable horizontal scrolling */
            justify-content: flex-start;
            padding-bottom: 10px;
            -webkit-overflow-scrolling: touch;
            /* smooth scrolling on iOS */
        }

        .countries-single-line::-webkit-scrollbar {
            height: 6px;
        }

        .countries-single-line::-webkit-scrollbar-thumb {
            background: #3b82f6;
        }

        .countries-single-line .country-item {
            min-width: 100px;
        }

        .countries-single-line .country-item img {
            width: 75px;
            height: 75px;
        }

        .countries-single-line .country-item span {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .countries-section-below {
            padding: 30px 15px;
        }

        .countries-section-below .countries-title {
            font-size: 1.3rem;
        }

        .countries-single-line .country-item {
            min-width: 80px;
        }

        .countries-single-line .country-item img {
            width: 65px;
            height: 65px;
        }

        .countries-single-line .country-item span {
            font-size: 0.85rem;
        }
    }

    /* Program Overview Section */
    .program-overview-section {
        margin-bottom: -100px;
    }

    .section-title-decorated {
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 70px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title-decorated span {
        position: absolute;
        bottom: -10px;
        left: 25%;
        width: 50%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    }

    .full-height-img {
        height: 100%;
    }

    .section-title-white {
        color: white;
    }

    .capacity-text {
        font-size: 1.2em;
        margin: 30px 0;
        color: white;
    }