/* Renk paleti ve değişkenler */
:root {
    --ocean-blue: #5e548e;
    --light-mist: #eeecf4;
    --deep-violet: #433b64;
    --forest-green: #2d7a2d;
    --mint-light: #e8f5e8;
    --sunset-orange: #e67e22;
    --warm-peach: #fdf2e9;
    --crimson-red: #c0392b;
    --rose-light: #fadbd8;
    --neutral-gray: #95a5a6;
    --cloud-white: #f8f9fa;
    --midnight-blue: #2c3e50;
    --success-green: #27ae60;
    --warning-amber: #f39c12;
    --info-cyan: #3498db;
}

/* Temel reset ve tipografi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.7;
    color: var(--deep-violet);
    background-color: var(--cloud-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    color: var(--ocean-blue);
}

h2 {
    font-size: 2.3rem;
    color: var(--deep-violet);
}

h3 {
    font-size: 1.8rem;
    color: var(--ocean-blue);
}

h4 {
    font-size: 1.4rem;
    color: var(--deep-violet);
}

/* Konteyner ve layout */
.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Navigasyon stilleri */
.navigation-zone {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    box-shadow: 0 7px 34px rgba(94, 84, 142, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.primary-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand-element img {
    height: 48px;
    width: auto;
}

.navigation-trigger {
    display: none;
}

.toggle-controller {
    display: none;
}

.menu-bars {
    width: 32px;
    height: 3px;
    background: var(--ocean-blue);
    position: relative;
    transition: all 0.35s ease;
}

.menu-bars:before,
.menu-bars:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--ocean-blue);
    transition: all 0.35s ease;
}

.menu-bars:before {
    top: -9px;
}

.menu-bars:after {
    top: 9px;
}

.navigation-container {
    display: flex;
    align-items: center;
}

.menu-collection {
    display: flex;
    gap: 34px;
    list-style: none;
}

.menu-connection {
    color: var(--deep-violet);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.menu-connection::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.menu-connection:hover::after {
    width: 100%;
}

.menu-connection:hover {
    color: var(--ocean-blue);
}

/* Hero bölümü */
.hero-showcase {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--light-mist) 0%, rgba(238, 236, 244, 0.6) 100%);
    position: relative;
}

.hero-arrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero-narrative h1 {
    margin-bottom: 27px;
    font-size: 3.2rem;
}

.hero-narrative p {
    font-size: 1.25rem;
    margin-bottom: 34px;
    line-height: 1.8;
    color: var(--midnight-blue);
}

.action-cluster {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary-trigger {
    background: var(--ocean-blue);
    color: white;
    padding: 17px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 7px 21px rgba(94, 84, 142, 0.3);
}

.primary-trigger:hover {
    background: var(--deep-violet);
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(94, 84, 142, 0.4);
}

.secondary-trigger {
    background: transparent;
    color: var(--ocean-blue);
    padding: 17px 34px;
    border: 2px solid var(--ocean-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-trigger:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
}

.hero-picture {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.2);
}

/* Hizmetler bölümü */
.services-gallery {
    padding: 89px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header h2 {
    margin-bottom: 17px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    max-width: 640px;
    margin: 0 auto;
}

.services-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.service-card {
    background: white;
    padding: 34px;
    border-radius: 13px;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid var(--light-mist);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(94, 84, 142, 0.05), transparent);
    transition: all 0.6s ease;
    transform: rotate(45deg);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.15);
    border-color: var(--ocean-blue);
}

.service-graphic {
    margin-bottom: 21px;
}

.service-symbol {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

.service-card h3 {
    margin-bottom: 17px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Özellikler bölümü */
.features-exposition {
    padding: 89px 0;
    background: var(--light-mist);
}

.features-arrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.features-collection {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.feature-element {
    display: flex;
    align-items: flex-start;
    gap: 21px;
    padding: 21px;
    background: white;
    border-radius: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-element:hover {
    border-color: var(--ocean-blue);
    transform: translateX(8px);
}

.feature-symbol {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
    flex-shrink: 0;
}

.feature-details h4 {
    margin-bottom: 8px;
    color: var(--ocean-blue);
}

.feature-details p {
    color: var(--neutral-gray);
    font-size: 0.95rem;
}

.features-picture {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.2);
}

/* CTA bölümü */
.cta-showcase {
    padding: 89px 0;
    background: var(--ocean-blue);
    color: white;
}

.cta-arrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 27px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 34px;
    opacity: 0.9;
}

.cta-trigger {
    background: white;
    color: var(--ocean-blue);
    padding: 17px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-trigger:hover {
    background: var(--light-mist);
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(255, 255, 255, 0.2);
}

.cta-picture {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
}

/* Program bölümü */
.programs-showcase {
    padding: 89px 0;
    background: white;
}

.programs-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.program-card {
    background: white;
    border: 3px solid var(--light-mist);
    border-radius: 13px;
    padding: 34px;
    transition: all 0.4s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.15);
    border-color: var(--ocean-blue);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 21px;
}

.program-symbol {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

.program-features {
    list-style: none;
    margin-bottom: 27px;
}

.program-features li {
    padding: 8px 0;
    color: var(--neutral-gray);
    position: relative;
    padding-left: 21px;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: bold;
}

.program-duration {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ocean-blue);
    font-weight: 600;
}

.duration-symbol {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

/* İletişim bölümü */
.contact-showcase {
    padding: 89px 0;
    background: var(--light-mist);
}

.contact-arrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 27px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 34px;
    color: var(--neutral-gray);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 21px;
    background: white;
    border-radius: 13px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--ocean-blue);
}

.contact-symbol {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: var(--ocean-blue);
}

.contact-item p {
    color: var(--neutral-gray);
    margin: 0;
}

/* Form stilleri */
.contact-form-container {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(94, 84, 142, 0.1);
    border: 3px solid var(--light-mist);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--deep-violet);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 17px;
    border: 2px solid var(--light-mist);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(94, 84, 142, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: var(--ocean-blue);
    color: white;
    padding: 17px 34px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 13px;
}

.form-submit:hover {
    background: var(--deep-violet);
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(94, 84, 142, 0.4);
}

/* Footer */
.site-footer {
    background: var(--deep-violet);
    color: white;
    padding: 55px 0 27px;
}

.footer-arrangement {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 34px;
    margin-bottom: 34px;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 17px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-navigation h4,
.footer-legal h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 17px;
    font-size: 1.1rem;
}

.footer-navigation ul,
.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-navigation a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-navigation a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 27px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobil responsive */
@media screen and (max-width: 890px) {
    .toggle-controller {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .navigation-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(13px);
        transition: all 0.4s ease;
        padding-top: 89px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .menu-collection {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .menu-piece {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .menu-connection {
        display: inline-block;
        padding: 13px 21px;
        font-size: 21px;
        color: var(--deep-violet);
        width: 100%;
    }

    .navigation-trigger:checked ~ .navigation-container {
        left: 0;
    }

    .navigation-trigger:checked ~ .toggle-controller .menu-bars {
        background: transparent;
    }

    .navigation-trigger:checked ~ .toggle-controller .menu-bars:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navigation-trigger:checked ~ .toggle-controller .menu-bars:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero-arrangement,
    .features-arrangement,
    .cta-arrangement,
    .contact-arrangement {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-narrative h1 {
        font-size: 2.5rem;
    }

    .action-cluster {
        justify-content: center;
    }

    .services-matrix {
        grid-template-columns: 1fr;
    }

    .programs-matrix {
        grid-template-columns: 1fr;
    }

    .footer-arrangement {
        grid-template-columns: 1fr;
        gap: 27px;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .content-wrapper {
        padding: 0 17px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero-showcase {
        padding: 120px 0 55px;
    }

    .services-gallery,
    .features-exposition,
    .programs-showcase,
    .contact-showcase {
        padding: 55px 0;
    }

    .cta-showcase {
        padding: 55px 0;
    }

    .action-cluster {
        flex-direction: column;
        align-items: center;
    }

    .primary-trigger,
    .secondary-trigger {
        text-align: center;
        min-width: 200px;
    }

    .contact-form-container {
        padding: 21px;
    }
}

/* Neomorphic shadow effects */
.service-card,
.program-card,
.contact-form-container {
    box-shadow:
            21px 21px 42px rgba(94, 84, 142, 0.1),
            -21px -21px 42px rgba(255, 255, 255, 0.8);
}

.service-card:hover,
.program-card:hover {
    box-shadow:
            13px 13px 27px rgba(94, 84, 142, 0.15),
            -13px -13px 27px rgba(255, 255, 255, 0.9);
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.program-card,
.feature-element {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Gradient backgrounds */
.hero-showcase {
    background: linear-gradient(135deg,
    var(--light-mist) 0%,
    rgba(238, 236, 244, 0.6) 50%,
    var(--cloud-white) 100%);
}

.cta-showcase {
    background: linear-gradient(135deg,
    var(--ocean-blue) 0%,
    var(--deep-violet) 100%);
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-21 {
    margin-bottom: 21px;
}

.mt-34 {
    margin-top: 34px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Additional responsive breakpoints */
@media screen and (min-width: 891px) {
    .navigation-container {
        display: flex;
        align-items: center;
        gap: 21px;
    }

    .menu-collection {
        display: flex;
        gap: 34px;
    }
}

/* Print styles */
@media print {
    .navigation-zone,
    .site-footer {
        display: none;
    }

    .hero-showcase {
        padding: 21px 0;
    }

    .services-gallery,
    .features-exposition,
    .programs-showcase,
    .contact-showcase {
        padding: 34px 0;
    }
}

/* About Page Styles */
.about-hero-section {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--light-mist) 0%, rgba(238, 236, 244, 0.6) 100%);
}

.about-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-intro-content h1 {
    margin-bottom: 27px;
    font-size: 3.1rem;
    color: var(--ocean-blue);
}

.about-intro-content p {
    font-size: 1.2rem;
    margin-bottom: 34px;
    line-height: 1.8;
    color: var(--midnight-blue);
}

.vision-highlights {
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: white;
    padding: 17px 21px;
    border-radius: 8px;
    border: 2px solid var(--light-mist);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 27px;
    height: 27px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

.about-hero-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.2);
}

/* Technology Leadership Section */
.technology-leadership-zone {
    padding: 89px 0;
    background: white;
}

.leadership-approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.approach-card {
    background: white;
    padding: 34px;
    border-radius: 13px;
    text-align: center;
    border: 3px solid var(--light-mist);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(94, 84, 142, 0.05), transparent);
    transition: all 0.6s ease;
    transform: rotate(45deg);
    opacity: 0;
}

.approach-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.15);
    border-color: var(--ocean-blue);
}

.approach-icon-wrapper {
    margin-bottom: 21px;
}

.approach-icon {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

/* Digital Philosophy Section */
.digital-philosophy-area {
    padding: 89px 0;
    background: var(--light-mist);
}

.philosophy-arrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.philosophy-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.2);
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.principle-block {
    display: flex;
    align-items: flex-start;
    gap: 21px;
    padding: 21px;
    background: white;
    border-radius: 13px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.principle-block:hover {
    border-color: var(--ocean-blue);
    transform: translateX(8px);
}

.principle-icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
    flex-shrink: 0;
}

.principle-text h4 {
    margin-bottom: 8px;
    color: var(--ocean-blue);
}

.principle-text p {
    color: var(--neutral-gray);
    font-size: 0.95rem;
}

/* Success Stories Section */
.success-stories-showcase {
    padding: 89px 0;
    background: white;
}

.stories-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.story-card {
    background: white;
    border: 3px solid var(--light-mist);
    border-radius: 13px;
    padding: 34px;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.15);
    border-color: var(--forest-green);
}

.story-metrics {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 21px;
    padding: 17px;
    background: var(--mint-light);
    border-radius: 8px;
}

.metric-icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(74%) saturate(1729%) hue-rotate(120deg) brightness(95%) contrast(95%);
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--forest-green);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--neutral-gray);
}

/* Digital Training Section */
.digital-training-exposition {
    padding: 89px 0;
    background: var(--light-mist);
}

.training-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.training-features {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 17px;
    background: white;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-row:hover {
    border-color: var(--ocean-blue);
}

.feature-icon {
    width: 27px;
    height: 27px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 5px;
    color: var(--ocean-blue);
}

.feature-content p {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.training-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.2);
}

/* Technology Strategy Section */
.technology-strategy-area {
    padding: 89px 0;
    background: white;
}

.strategy-grid {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.strategy-header {
    text-align: center;
}

.strategy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.pillar-item {
    text-align: center;
    padding: 34px;
    background: white;
    border: 3px solid var(--light-mist);
    border-radius: 13px;
    transition: all 0.4s ease;
}

.pillar-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.15);
    border-color: var(--ocean-blue);
}

.pillar-icon-box {
    margin-bottom: 21px;
}

.pillar-icon {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

/* Digital Innovation Section */
.digital-innovation-zone {
    padding: 89px 0;
    background: var(--light-mist);
}

.innovation-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.innovation-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.2);
}

.innovation-stats {
    display: flex;
    gap: 27px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 13px;
    background: white;
    padding: 17px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-block:hover {
    border-color: var(--ocean-blue);
}

.stat-icon {
    width: 27px;
    height: 27px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--ocean-blue);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--neutral-gray);
}

/* Tech Resources Section */
.tech-resources-gallery {
    padding: 89px 0;
    background: white;
}

.resources-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.resource-card {
    background: white;
    border: 3px solid var(--light-mist);
    border-radius: 13px;
    padding: 34px;
    text-align: center;
    transition: all 0.4s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.15);
    border-color: var(--ocean-blue);
}

.resource-icon-area {
    margin-bottom: 21px;
}

.resource-icon {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

.resource-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 17px;
    color: var(--ocean-blue);
    font-weight: 600;
}

.count-icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

/* Thank You Page Styles */
.thankyou-hero-zone {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--light-mist) 0%, rgba(238, 236, 244, 0.6) 100%);
}

.thankyou-content-area {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 55px;
    align-items: start;
}

.success-notification {
    text-align: center;
}

.success-icon-wrapper {
    margin-bottom: 27px;
}

.success-icon-large {
    width: 89px;
    height: 89px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(74%) saturate(1729%) hue-rotate(120deg) brightness(95%) contrast(95%);
}

.success-notification h1 {
    color: var(--forest-green);
    margin-bottom: 21px;
    font-size: 2.8rem;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 55px;
    color: var(--midnight-blue);
    line-height: 1.8;
}

/* Next Steps */
.next-steps-area {
    margin-bottom: 55px;
    text-align: left;
}

.next-steps-area h2 {
    text-align: center;
    margin-bottom: 34px;
    color: var(--ocean-blue);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 27px;
}

.step-card {
    background: white;
    border: 3px solid var(--light-mist);
    border-radius: 13px;
    padding: 27px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 34px rgba(94, 84, 142, 0.15);
    border-color: var(--ocean-blue);
}

.step-number {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ocean-blue);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-content {
    padding-top: 17px;
}

.step-icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
    margin-bottom: 17px;
}

.step-content h3 {
    margin-bottom: 13px;
    color: var(--ocean-blue);
}

.step-content p {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

/* Contact Reminder */
.contact-reminder {
    background: white;
    border: 3px solid var(--light-mist);
    border-radius: 13px;
    padding: 27px;
    margin-bottom: 34px;
}

.contact-reminder h3 {
    text-align: center;
    margin-bottom: 21px;
    color: var(--ocean-blue);
}

.reminder-details {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: center;
}

.reminder-icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--ocean-blue);
    color: white;
    padding: 17px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: var(--deep-violet);
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: var(--ocean-blue);
    padding: 17px 34px;
    border: 2px solid var(--ocean-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
}

.thankyou-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.2);
}

/* Resources Preview */
.resources-preview-area {
    padding: 89px 0;
    background: white;
}

.preview-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.preview-card {
    background: white;
    border: 3px solid var(--light-mist);
    border-radius: 13px;
    padding: 34px;
    text-align: center;
    transition: all 0.4s ease;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(94, 84, 142, 0.15);
    border-color: var(--ocean-blue);
}

.preview-icon-area {
    margin-bottom: 21px;
}

.preview-icon {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1729%) hue-rotate(234deg) brightness(95%) contrast(95%);
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .about-hero-layout,
    .philosophy-arrangement,
    .training-layout,
    .innovation-showcase,
    .thankyou-content-area {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-intro-content h1 {
        font-size: 2.5rem;
    }

    .vision-highlights {
        justify-content: center;
    }

    .innovation-stats,
    .action-buttons {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .about-hero-section,
    .thankyou-hero-zone {
        padding: 120px 0 55px;
    }

    .technology-leadership-zone,
    .digital-philosophy-area,
    .success-stories-showcase,
    .digital-training-exposition,
    .technology-strategy-area,
    .digital-innovation-zone,
    .tech-resources-gallery,
    .resources-preview-area {
        padding: 55px 0;
    }

    .about-intro-content h1 {
        font-size: 2.2rem;
    }

    .success-notification h1 {
        font-size: 2.2rem;
    }

    .leadership-approach-grid,
    .stories-collection,
    .strategy-pillars,
    .resources-matrix,
    .preview-resources-grid {
        grid-template-columns: 1fr;
    }

    .vision-highlights {
        flex-direction: column;
        align-items: center;
    }

    .innovation-stats {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-button,
    .secondary-button {
        text-align: center;
        min-width: 200px;
    }
}

/* Neomorphic effects for new elements */
.approach-card,
.story-card,
.pillar-item,
.resource-card,
.step-card,
.contact-reminder,
.preview-card {
    box-shadow:
            21px 21px 42px rgba(94, 84, 142, 0.1),
            -21px -21px 42px rgba(255, 255, 255, 0.8);
}

.approach-card:hover,
.story-card:hover,
.pillar-item:hover,
.resource-card:hover,
.step-card:hover,
.preview-card:hover {
    box-shadow:
            13px 13px 27px rgba(94, 84, 142, 0.15),
            -13px -13px 27px rgba(255, 255, 255, 0.9);
}