body {
    margin: 0;
    background: radial-gradient(circle at top, #0f052d, #09021a);
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    height: 100%;
    padding: 0;
    min-height: 100vh;
}
body::after {
    content: "";
    height: 20px; 
    background: lightblue;
}
/* HOME CSS */
.aizmir-hero-container {
        position: relative;
        top: -35px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        text-align: center;
        padding: 0 20px;
        background: transparent;
        color: white;
        position: relative;
        z-index: 1;
         align-items: center;
}
.aizmir-hero-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        background: transparent;
        padding: 2rem;
}
.aizmir-hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white;
        line-height: 1.2;
        text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}
.aizmir-hero-description {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 3rem;
        line-height: 1.6;
}
/* BUTONS */
.glow-button {
    position: relative;
    top: -50px;
    display: inline-block;
    padding: 7px 90px;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(90deg, #a855f7, #9333ea);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    min-width: 160px;
    text-align: center;
    letter-spacing: 0.9px;
}
/* Hover efekti */
.glow-button:hover {
    box-shadow: 0 0 20px rgba(168, 85, 247, 1), 
                0 0 30px rgba(147, 51, 234, 0.8);
    transform: scale(1.03);
}
.aizmir-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.aizmir-glow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px; 
    border-radius: 50px;
    font-size: 1rem; 
    font-weight: 500; /* Daha ince font ağırlığı */
    text-decoration: none;
    transition: all 0.3s ease;
    height: 40px; 
    min-width: 180px; 
    box-sizing: border-box; 
}
.aizmir-glow-button.primary-btn {
    background: #f8f8f8; /* EachLabs'teki gibi açık gri */
    color: #333; /* Koyu metin rengi */
    border: 1px solid #e0e0e0; /* Hafif border */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Daha hafif gölge */
}
.aizmir-glow-button.primary-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px); 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border-color: #d0d0d0;
}
.aizmir-glow-button.secondary-btn {
    background-color: transparent;
    color: #f8f8f8; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
}
.aizmir-glow-button.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}
.aizmir-glow-button.with-icon::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.aizmir-glow-button.with-icon:hover::after {
    transform: translateX(3px);
}
.aizmir-glow-button {
    position: relative;
    overflow: hidden;
}
.aizmir-glow-button:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
    .aizmir-hero-title {
        font-size: 2.5rem;
    }
        
    .aizmir-hero-description {
        font-size: 1.2rem;
    }
        
    .aizmir-hero-buttons {
        flex-direction: column;
            gap: 15px;
    }
    
    .aizmir-glow-button {
        width: 100%;
    }
}

/* Background */
#glow-effect {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(169, 85, 247, 0.055), rgba(0, 0, 0, 0));
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%); /* This is crucial */
    filter: blur(15px);
    top: 0;
    left: 0;
    z-index: 9999;
}
canvas {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;  
    height: 100vh; 
    z-index: -1; 
}
/****** REGISTER CSS  (REGİSTER.HTML) */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;

}
.register-form {
    width: 100%;
    max-width: 350px;
    padding: 25px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.459);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.register-form h2 {
    font-size: 1.5rem;
    color: #333;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #555;
}
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border 0.3s;
}
.register-form input:focus {
    border-color: #4CAF50;
    outline: none;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}
.submit-btn:hover {
    background-color: #3d8b40;
}
.alert-danger {
    font-size: 0.85rem;
    padding: 10px;
    margin-bottom: 15px;
}
/* LOGİN CSS */
/* === LOGIN CSS === */

/* Ana kapsayıcı */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: transparent;
}

/* Form kutusu */
.auth-form {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 16px;
    background: rgba(15, 5, 45, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: white;
}

/* Logo alanı */
.auth-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-image {
    width: 100px;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.7));
}

/* Başlık */
.auth-title {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

/* Form öğeleri */
.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}
.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-text-fill-color: white !important;
    caret-color: white;
}
/* Placeholder */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}
/* Focus durumu */
.form-control:focus {
    border-color: #a855f7;
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
    background: rgba(255, 255, 255, 0.08);
}
/* Autofill çözümü (Chrome & Safari) */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.438) !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: rgba(255, 255, 255, 0.466);
}
/* Giriş butonu */
.btn-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}
/* Alt bağlantılar */
.auth-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.8rem;
    font-size: 0.9rem;
}
.auth-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.8rem;
}
.auth-link:hover {
    color: #a855f7;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.3);
}
.auth-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}
/* Responsive (Mobil) */
@media (max-width: 480px) {
    .auth-form {
        padding: 1.8rem;
        max-width: 340px;
    }

    .logo-image {
        max-width: 150px;
    }

    .auth-title {
        font-size: 1.7rem;
    }

    .form-control {
        padding: 0.8rem 1rem;
    }
}

/* SCROLL */
.scrolling-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px;
    background-color: transparent;
}
.scrolling-content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}
.scrolling-item {
    display: inline-block;
    margin: 0 40px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    vertical-align: middle;
    transition: opacity 0.5s; 
}
.scrolling-item img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px; 
    background-color:  white;
}
.scrolling-container::before,
.scrolling-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px; 
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.scrolling-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(33, 15, 88, 0.4), transparent); 
}
.scrolling-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(33, 15, 88, 0.4), transparent); 
}
.scroll-title h2 {
    color: #a855f7; 
    text-shadow: 2px 2px 8px rgba(168, 85, 247, 0.5);
    font-weight: bold;
    margin-bottom: 40px;
}

/*********** CİRCLE */
/* .legend-animation-container {
    position: relative;
    width: 100%;
    height: 600px;  
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparentw; 
}
.circle-border {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40vw;  
    height: 40vw; 
    background: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%); 
    z-index: 1;
    background-color: #0d0325; 
}
.legend-animation-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 10; 
}
.center-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 32px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
    z-index: 10;
    animation: orb-pulse 2s infinite alternate;
}

.legend-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--distance)) rotate(calc(-1 * var(--angle)));
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}
.node-circle {
    width: 50px;
    height: 50px;
    background: rgba(30, 20, 50, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    border: 2px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
    transition: all 0.3s ease;
}
.node-label {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.legend-node:hover .node-circle {
    transform: scale(1.2);
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.8);
}
.legend-node:hover .node-label {
    opacity: 1;
}
.light-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 2px; 
    background: rgba(245, 245, 245, 0.377); 
    transform-origin: left center;
    z-index: 1;
    animation: beam-flow 3s infinite;
}
@keyframes beam-flow {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; width: 150px; }
    100% { width: 0; opacity: 0; }
}
@keyframes orb-pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}
.light-beam::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
} */
 /* -------------------------------------------- */
 /* 2.circle responsive düzenlenmiş hali */
 /* Ana Container */
/* GENEL YAPI */
.legend-animation-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 10;
}
.circle-border {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40vw;
    height: 40vw;
    background: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: #0d0325;
}
.center-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 32px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
    z-index: 10;
    animation: orb-pulse 2s infinite alternate;
}
.legend-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--distance)) rotate(calc(-1 * var(--angle)));
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}
.node-circle {
    width: 50px;
    height: 50px;
    background: rgba(30, 20, 50, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    border: 2px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
    transition: all 0.3s ease;
}
.node-label {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.legend-node:hover .node-circle {
    transform: scale(1.2);
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.8);
}
.legend-node:hover .node-label {
    opacity: 1;
}
.light-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 2px;
    background: rgba(245, 245, 245, 0.377);
    transform-origin: left center;
    z-index: 1;
    animation: beam-flow 3s infinite;
}
@keyframes beam-flow {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; width: 150px; }
    100% { width: 0; opacity: 0; }
}
@keyframes orb-pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}
.light-beam::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* RESPONSIVE TASARIM */

/* Küçük ekranlar: Telefonlar */
@media (max-width: 576px) {
    .legend-animation-container {
        height: 400px;
        flex-direction: column;
    }
    .circle-border {
        width: 80vw;
        height: 80vw;
    }
    .center-orb {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    .node-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .node-label {
        font-size: 14px;
        margin-top: 8px;
    }
}

/* Orta boy ekranlar: Tablet */
@media (min-width: 577px) and (max-width: 992px) {
    .legend-animation-container {
        height: 500px;
    }
    .circle-border {
        width: 60vw;
        height: 60vw;
    }
    .center-orb {
        width: 80px;
        height: 80px;
        font-size: 26px;
    }
    .node-circle {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    .node-label {
        font-size: 16px;
    }
}

/* Büyük ekranlar için: varsayılan tasarım zaten uygundur */

/* TANITIM */
.aiflow-container {
    background: linear-gradient(135deg, #0f052d 0%, #09021a 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}
.aiflow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.aiflow-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.aiflow-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    font-weight: 700;
}
.aiflow-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}
.aiflow-doc-button {
    display: inline-block;
    background: linear-gradient(90deg, #a855f7, #9333ea);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.aiflow-doc-button:hover {
    background: linear-gradient(90deg, #9333ea, #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}
.aiflow-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}
.feature-box {
    flex: 1;
    min-width: 300px;
    background: rgba(15, 5, 45, 0.7);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(5px);
}
.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(15, 5, 45, 0.9);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.2);
}
.feature-box h3 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}
.feature-box p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}
/* Responsive */
@media (max-width: 768px) {
    .aiflow-container {
        padding: 3rem 1.5rem;
    }
    
    .aiflow-title {
        font-size: 1.8rem;
    }
    
    .aiflow-description {
        font-size: 1.1rem;
    }
    
    .feature-box {
        min-width: 100%;
    }
}
/* CARD1-2 CSS */
.minimal-cards-section {
    padding: 4rem 2rem;
    text-align: center;
}
.section-title {
    color: #a855f7;;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1rem;
}
.card-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.minimal-card {
    background: linear-gradient(135deg, #0f052d 0%, #09021a 100%);
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
    height: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}
.minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.minimal-card h3 {
    font-size: 1.25rem;
    color: #a855f7;;
    margin-bottom: 1rem;
}
.minimal-card p {
    color: #dbd7d7;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.card-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    border: 1px solid wheat;
    padding: 6px 50px;
    background: #f8f8f8c2;
}
.card-link::after {
    content: '→';
    margin-left: 0.3rem;
    transition: transform 0.2s ease;
}
.card-link:hover::after {
    transform: translateX(3px);
}
/* Why AizmirHub */
.why-aizmir-purple {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
}
.why-aizmir-purple h1 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #a855f7; 
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}
.main-description-purple {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.col {
    flex: 1;
}
.feature-column-purple h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #a855f7; 
}
.feature-item-purple {
    padding: 1rem 0;
}
.feature-item-purple h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #a855f7; 
}
.feature-item-purple p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.divider-line-purple {
    height: 1px;
    background-color: rgba(169, 85, 247, 0.11); 
    margin: 1rem 0;
}
.feature-column-purple .feature-item-purple:last-child .divider-line-purple {
    display: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 30px;
    }
    
    .col {
        margin-bottom: 2rem;
    }
    
    .why-aizmir-purple h1 {
        font-size: 2rem;
    }
    
    .main-description-purple {
        font-size: 1.1rem;
    }
}
/* ÖDEME PLANI */
.pricing-section {
    background: linear-gradient(135deg, #0f052d, #050114); 
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(168, 85, 247, 0.15); 
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

/* Arka Plan Işık Efekti */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 15%, rgba(168, 85, 247, 0.08), transparent 60%); 
    pointer-events: none;
    z-index: 0;
}

/* İçerik Konteyneri */
.pricing-header,
.pricing-toggle,
.pricing-grid,
.pricing-footer {
    position: relative;
    z-index: 1;
}

/* Başlık ve Alt Başlık */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gradient-title {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #a855f7, #d946ef);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Aylık/Yıllık Geçiş Anahtarı (Toggle) */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.sliderp {
    color: #c9c6c6;
    font-size: 0.9rem;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Toggle Slider Stilleri */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #555; 
    transition: .4s;
    border-radius: 34px;
    border: 1px solid #444;
}

.slider::before {
    position: absolute;
    content: "";
    height: 22px; width: 22px;
    left: 4px; bottom: 3px;
    background-color: #bbb; 
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8e24aa;
    border-color: #6a1b9a;
}

input:checked + .slider::before {
    background-color: #ffffff;
    transform: translateX(30px);
}

/* İndirim Etiketi */
.discount-pill {
    background: linear-gradient(90deg, #4c1d95, #5b21b6);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

/* Fiyat Kartları Izgarası */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem; 
    max-width: 1100px; 
    margin: 0 auto;
}

/* Fiyat Kartı Genel Stili - UZUNLUK VE SADELİK ODAKLI */
.pricing-card {
    background: rgba(18, 8, 42, 0.7); /* Daha sade, koyu arka plan */
    border-radius: 10px; /* Daha az yuvarlak köşe */
    padding: 2.5rem 1rem;
    border: 1px solid rgba(168, 85, 247, 0.2); /* Sabit, ince border */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    backdrop-filter: none; 
}

/* Normal Kartlara Hover Efekti - Daha Sade */
.glow-hover:hover {
    border-color: rgba(168, 85, 247, 0.5); /* Sadece border rengi değişsin */
    /* box-shadow: 0 0 20px rgba(168, 85, 247, 0.1); */ /* Gölgeyi kaldırabilir veya azaltabiliriz */
    transform: translateY(-5px);
}

/* Öne Çıkan Kart Stili - Daha Sade */
.featured-card {
    border: 1px solid rgba(168, 85, 247, 0.5); 
    /* box-shadow: 0 0 30px rgba(168, 85, 247, 0.2); */ /* Gölgeyi kaldırabiliriz */
    transform: none; /* Büyüme efektini kaldırdık */
    background: rgba(25, 10, 55, 0.8); 
}
/* Popüler Etiketi */
.popular-badge {
    position: absolute;
    top: 1rem; /* İçeriye aldık */
    right: 1rem;
    background: linear-gradient(90deg, #7e22ce, #a855f7);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 6px; 
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: none;
}

/* Kart İçeriği */
.card-header {
    text-align: center;
    margin-bottom: 1.5rem; 
}

.card-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem; 
    line-height: 1.4;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0; 
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    margin-left: -1rem; 
    margin-right: -1rem; 
}

.price .monthly, .price .yearly { /* JS ile kontrol için */
    display: none;
}
/* Başlangıçta gösterilecek fiyat (JS ile ayarlanabilir ya da direkt HTML'de) */
/* Örn: Sadece aylığı göstermek için: */
.price .monthly {
    display: block; 
}

.price span {
    font-size: 2.2rem; /* Fiyatı biraz büyüttük */
    color: white;
    font-weight: 600;
    line-height: 1.2;
    display: block; /* Ensure spans take block space */
}
.price span span {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 0.2rem;
    display: inline; /* Keep /ay next to price */
}
/* Özellikler Listesi */
.features {
    list-style: none;
    padding-left: 0;
    margin-bottom: auto; /* Butonu en alta iter */
    margin-top: 1.5rem; /* Fiyatla arasına boşluk */
    flex-grow: 1; /* Esneyerek alanı doldurur, yüksekliğe katkı sağlar */
}
.features li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem; /* Liste elemanları arasını açtık */
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem; /* Özellik fontunu hafif büyüttük */
}
.icon-check {
    position: absolute;
    left: 0;
    top: 5px;
    color: #a855f7;
    font-size: 1em; /* İkon boyutu */
}
/* Kart Butonu - Daha Sade */
.card-btn {
    width: 100%;
    padding: 0.8rem 1rem; /* Biraz daha standart padding */
    border-radius: 6px; /* Daha köşeli */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem; /* Özelliklerle arasına boşluk */
    text-align: center;
    font-size: 0.9rem;

    /* Varsayılan (Primary olmayan) buton stili */
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: rgba(255, 255, 255, 0.8);
}
.card-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.7);
    color: white;
    transform: translateY(-2px);
}
/* Öne Çıkan Kartın Ana Butonu */
.primary-btn {
    background: linear-gradient(90deg, #a855f7, #9333ea);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2); /* Daha hafif gölge */
}
.primary-btn:hover {
    background: linear-gradient(90deg, #9333ea, #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3); /* Daha hafif gölge */
}
/* Alt Bilgi Alanı */
.pricing-footer {
    text-align: center;
    margin-top: 4rem; /* Daha fazla boşluk */
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-link {
    color: #c084fc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #e9d5ff;
    text-decoration: underline;
}

/* Duyarlılık (Responsive Tasarım) */
@media (max-width: 992px) {
    .pricing-grid {
        max-width: 700px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .pricing-card {
        min-height: auto; 
    }
    .gradient-title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 1rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
.pricing-card {
        padding: 2rem 1rem; 
    }
    .gradient-title {
        font-size: 1.8rem;
    }
.subtitle {
        font-size: 0.9rem;
    }
    .popular-badge {
        top: 0.8rem;
        right: 0.8rem;
    }
}
/* TEAM SECTION */
.testimonial-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.avatar-wrapper {
    width: 100%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.avatar-bg {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 100%;
    z-index: -10;
    pointer-events: none;
    border-top-left-radius: 240px;
    border-top-right-radius: 240px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.avatar-bg::before,
.avatar-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
}

.avatar-bg::before {
    background: linear-gradient(to bottom, rgba(185, 203, 228, 0.2), transparent 20%);
    z-index: -20;
}

.avatar-img {
    position: relative;
    width: 80%;
    max-width: 150px;
    height: auto;
    aspect-ratio: 1/1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #c084fc44;
    top: 0.3rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: 2;
}

.avatar-wrapper:hover .avatar-img {
    transform: scale(1.05);
}

.testimonial-text-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    background: linear-gradient(to right, rgba(39, 17, 88, 0.301), rgba(44, 32, 94, 0.192));
    color: rgba(248, 242, 242, 0.808);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(169, 85, 247, 0.3);
    margin: 0 auto;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.person-btn {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
    margin: 0.375rem;
    color: #cbd5e1;
    border-radius: 9999px;
    background: linear-gradient(#0f172a, #0f172a) padding-box,
                conic-gradient(#94a3b8, #334155 25%, #334155 75%, #94a3b8 100%) border-box;
    position: relative;
    border: 1px solid transparent;
    transition: opacity 0.15s ease-in-out;
    cursor: pointer;
}

.person-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(30,41,59,0.3);
    border-radius: 9999px;
    pointer-events: none;
}

.person-btn span {
    position: relative;
    color: #f8fafc;
}

.person-btn.inactive {
    opacity: 0.3;
}

.person-btn:hover {
    opacity: 0.6;
}

.person-btn.active {
    opacity: 1 !important;
}

/* Animations */
.slide-in {
    transform: translateX(100%);
    opacity: 0;
    animation: slideIn 0.6s forwards;
}

.slide-out {
    transform: translateX(0%);
    opacity: 1;
    animation: slideOut 0.6s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0%);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.fade-in {
    animation: fadeIn 0.6s forwards;
}

.fade-out {
    animation: fadeOut 0.6s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Medium screens and up */
@media (min-width: 768px) {
    .testimonial-section {
        padding: 4rem 2rem;
    }
    
    .testimonial-wrapper {
        flex-direction: row;
        text-align: left;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .avatar-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .avatar-img {
        width: 150px;
        height: 150px;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .testimonial-wrapper {
        gap: 3rem;
    }
}
/****************************** BACKED BY SECTİON*/
.backed-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #c084fc;
    position: relative;
}
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.sponsor-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.sponsor-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(153, 54, 245, 0.452) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0.5;
    transition: all 0.3s ease;
    z-index: 1;
}
.sponsor-card:hover::after {
    bottom: -50px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(145, 39, 245, 0.4) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 1;
}
.sponsor-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 0 5px rgba(168, 85, 247, 0.8);
}
.sponsor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(32, 2, 59, 0.233), rgba(47, 8, 99, 0.116));
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sponsor-card:hover::before {
    opacity: 1;
}
/******************************** NVIDIA Stili */
.nvidia {
    font-size: 30px;
    font-weight: bold;
    color: #76b900;
    position: relative;
    z-index: 2;
}
/* Founders Hub Stili */
.founders-hub {
    font-size: 30px;
    font-weight: bold;
    color: #ff8c00;
    position: relative;
    z-index: 2;
}
.program-name {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
/* Responsive Tasarım */
@media (max-width: 768px) {
    .sponsors-grid {
        flex-direction: column;
        align-items: center;
    }
    .sponsor-card {
        width: 100%;
        max-width: 300px;
    }
}
/********* FOOTER */
.site-footer {
    background: linear-gradient(to top, #09021a, #0f052d);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}
/* Işık Efekti */
.site-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
}
/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Bölümleri */
.footer-section {
    margin-bottom: 2rem;
}
.footer-section h3 {
    color: #a855f7;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: #a855f7;
    transform: translateX(5px);
}
/* Sosyal Medya */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    background: rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
} 
.social-links a i{
    color: #a855f7;
    
}

/* Footer Alt Kısım */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
    position: relative;
    z-index: 2;
}
/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
/********************************** RESET PASSWORD */
.auth-form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.auth-icon {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 1.5rem;
    fill: #4e73df;
}

.checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}
.checkmark-circle {
    stroke: #28a745;
    stroke-width: 2;
}
.checkmark-check {
    stroke: #28a745;
    stroke-width: 2;
    stroke-linecap: round;
}
/* CONSULTING CSS */
.ai-hub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.ai-hub-card {
    display: flex;
    background-color: #0b348d17;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.3);
    
}
.ai-hub-content {
    flex: 1;
    padding: 40px;
    color: #fff;
}
.ai-hub-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #a855f7;
    line-height: 1.3;
}
.ai-hub-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.ai-hub-features {
    margin-bottom: 2rem;
}
.ai-hub-feature {
    margin-bottom: 1rem;
}
.ai-hub-feature h3 {
    font-size: 1.2rem;
    color: #a855f7;
    margin-bottom: 0.5rem;
}
.ai-hub-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}
.ai-hub-doc-button {
    display: inline-block;
    background-color: #a855f7;
    color: white;
    padding: 5px 24px;
    border-radius: 26px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}
.ai-hub-doc-button:hover {
    background-color: #8b45d1;
}
.ai-hub-image {
    flex: 1;
    max-width: 400px;
    background-color: #28065334;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ai-hub-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
/* Responsive design */
@media (max-width: 768px) {
    .ai-hub-card {
        flex-direction: column;
    }
    
    .ai-hub-image {
        max-width: 100%;
        order: -1;
    }
}
/* DROPDOWN */
.dropdown-menu {
    background-color: #150733;
    border: none;
    box-shadow: 0 0 15px rgba(150, 100, 255, 0.3);
    border-radius: 10px;
    padding: 5px 0; 
}
.dropdown-menu .dropdown-item {
    color: #e0d6ff;
    padding: 6px 16px;
    transition: background 0.3s, color 0.3s;
    font-weight: 500;
    font-size: 12px; 
}
.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #a64bfd;
}

.nav-link.dropdown-toggle {
    /* color: #ffffff !important; */
    transition: color 0.3s;
}
.nav-link.dropdown-toggle:hover {
    color: #a64bfd !important;
}

@media (max-width: 992px) {
    .dropdown-menu {
        background-color: #1a0e3f;
    }
}
/* SHOWROOM CSS */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}
.model-sidebar {
    width: 250px;
    background-color: #32095336;
    padding: 20px;
    border-right: 1px solid #2e2e3f;
    border-radius: 10px;
}
.model-sidebar h2 {
    font-size: 18px;
    margin-bottom: 10px;
}
.model-sidebar p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 20px;
}
.category-selector {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
}
.content-area {
    flex: 1;
    padding: 20px;
}
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.model-card {
    background-color: #32095336;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.model-card:hover {
    transform: translateY(-5px);
}
.model-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.model-info {
    padding: 15px;
    flex-grow: 1;
}
.model-info h5 {
    margin: 0 0 10px;
    font-size: 16px;
}
.model-info p {
    font-size: 13px;
    color: #aaa;
}
.model-author {
    background-color: #151529;
    padding: 10px 15px;
    font-size: 12px;
    color: #aaa;
}
