/* Base Variables */
:root {
    /* Primary: Orange-Red #f95d34 */
    --color-primary: #f95d34;
    --color-primary-dark: #d84a25;
    --color-primary-light: #fff2ee;

    /* Accent: Blue #2290c7 */
    --color-accent: #2290c7;

    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fc;
    --color-text: #1a1a2e;
    --color-text-light: #6e7c89;
    --color-border: #e2e8f0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(249, 93, 52, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.1;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.center {
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(var(--primary-hue), 50%, 50%, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-hue), 50%, 50%, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-text);
    background: var(--color-bg-alt);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: white;
    /* Solid white background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo img {
    height: 60px;
    /* Larger logo */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links .dropdown-item:hover .dropdown-trigger {
    color: var(--color-primary);
}

/* Dropdown Menu Styles */
.dropdown-item {
    position: relative;
    padding: 1rem 0;
    /* Increase hit area */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1002;
    pointer-events: none;
    /* Prevent accidental clicks when hidden */
}

/* Show Dropdown on Hover */
.dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Triangle/Arrow on top */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
    display: block;
    white-space: nowrap;
    transition: all 0.2s;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding-left: 1.8rem;
    /* Subtle text slide effect */
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Responsive Dropdown Fix --- */
@media (max-width: 900px) {
    /* ... existing mobile nav styles ... */

    /* Reset dropdown positioning for mobile stack */
    .dropdown-item {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .nav-links a {
        justify-content: center;
        width: 100%;
        padding: 0.5rem 0;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--color-bg-alt);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        visibility: visible;
        /* Always visible for transition logic */
        padding: 0;
        min-width: 100%;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        pointer-events: auto;
    }

    .dropdown-menu::before {
        display: none;
    }

    /* Show dropdown contents on hover (or click if using JS, but CSS hover works for simple stack) */
    .dropdown-item:hover .dropdown-menu {
        max-height: 300px;
        /* Arbitrary large height */
        opacity: 1;
        transform: none;
        margin-top: 0.5rem;
    }

    .dropdown-menu a {
        padding: 0.8rem;
        background: rgba(0, 0, 0, 0.02);
    }

    .dropdown-menu a:hover {
        padding-left: 0.8rem;
        /* Reset slide effect */
        background: rgba(0, 0, 0, 0.05);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 220px 0 160px;
    background: url('changelab-hero.png') no-repeat center center/cover;
    overflow: hidden;
    color: white;
    /* Ensure it takes full viewport height usually, or just large enough */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Dark Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-section .container {
    max-width: 96%;
    width: 100%;
    padding-left: 2%;
    /* absolute minimal padding */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}

.hero-text {
    max-width: 100%;
    /* Fully spread out */
    margin: 0;
}

.hero-text h1 {
    font-size: 5rem;
    /* Significantly larger */
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
    color: white;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    /* Slightly larger */
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 800px;
    /* Keep subtitle readable length */
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.hero-buttons.center-buttons {
    justify-content: center;
}


.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    top: 20%;
    right: 20%;
    opacity: 0.2;
}

.glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(var(--primary-hue), 50%, 50%, 0.3);
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-bg-alt);
}

/* Full Width & Container Tweaks */
.fluid-container {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 900px;
    /* Increased for longer description */
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: 1rem;
}

/* Three Column Grid for Larger Cards */
.features-grid.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}


.feature-card.large-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    /* Prevents grid blowout */
}

/* Responsive adjustment for 3 cols */
/* Tablet/Small Laptop: 2 Columns */
@media (max-width: 900px) {
    .features-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 Column */
@media (max-width: 600px) {
    .features-grid.three-col {
        grid-template-columns: 1fr;
    }
}


.feature-card.large-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    min-height: 3rem;
    text-align: center;
}

.feature-card.large-card .icon-box {
    align-self: center;
}

.card-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Feature Lists inside cards */
.feature-list {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-bg-alt);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.4;
}

.feature-list li i {
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Base Feature Styles */
.subtitle {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, transparent 60%, rgba(34, 144, 199, 0.3) 60%);
    line-height: 1;
    padding: 0 5px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    /* Increased slightly to balance larger icon */
}

/* Split Layout (About) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('biz-kimiz.jpg') center/cover;
    opacity: 1;
    /* Show image clearly */
}

.check-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.check-list li i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.about-text-secondary {
    margin-top: 1rem;
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: url('cta-section-bg.png') center/cover no-repeat;
    color: white;
    /* rounded corners if needed, user didn't specify but it might look nice given the rest of the design, sticking to basic for now as per specific request */
}

.cta-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.cta-desc {
    color: var(--color-primary);
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    /* Bold as requested */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Strong shadow for readability */
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.cta-action-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    flex-wrap: wrap;
}

.cta-link {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.cta-separator {
    color: #fce205;
    /* Bright yellow/orange highlighter color */
    /* Or just primary tint? The image showed a very yellow tone for the last part or background? */
    /* User said "yazı turuncu olsun" before. I will stick to primary or a variant. */
    /* The image showed: 'ya da bize ulaşın' in a yellowish tone. */
    color: rgba(249, 93, 52, 0.8);
    font-style: italic;
}


/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 0rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--color-bg-alt);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px var(--color-primary-light);
}

/* Footer */
.footer {
    padding: 40px 0 20px;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--color-text-light);
    margin-top: 1rem;
}

.footer-brand .logo img {
    height: 70px;
    width: auto;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.links li {
    margin-bottom: 0.8rem;
}

.links a {
    color: var(--color-text-light);
}

.links a:hover {
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-text);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Approach Section (No Cards) */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    row-gap: 4rem;
}

.approach-item {
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-primary);
    /* Accent line */
}

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

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

/* Responsive Approach Grid */
@media (max-width: 900px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {

    /* Navigation Mobile */
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 3rem 1rem;
        gap: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        /* Hidden state */
        display: none;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    /* Hero */
    .hero-section {
        padding: 140px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Sections */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-placeholder {
        height: 300px;
        order: -1;
        /* Image on top on mobile */
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    /* Global Spacing */
    .section {
        padding: 60px 0;
    }

    /* Typography */
    .hero-text h1 {
        font-size: 2.4rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Hero */
    .hero-visual {
        min-height: 300px;
        /* Smaller visual area */
        height: auto;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 140px;
        height: 140px;
    }

    .glass-card {
        padding: 1.5rem;
        max-width: 260px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Features */

    /* Features rule removed to use new system */


    .feature-card {
        padding: 1.5rem;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }

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

    /* Contact Form */
    .contact-wrapper {
        padding: 1.5rem;
    }

    .btn-large {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social h4 {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-brand {
        margin-bottom: 2rem;
    }
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact a {
    color: var(--color-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

/* Glowing Card Animations */
@keyframes border-follow {
    0% {
        left: 0;
        top: 0;
        transform: translate(-50%, -50%);
    }

    25% {
        left: 100%;
        top: 0;
        transform: translate(-50%, -50%);
    }

    50% {
        left: 100%;
        top: 100%;
        transform: translate(-50%, -50%);
    }

    75% {
        left: 0;
        top: 100%;
        transform: translate(-50%, -50%);
    }

    100% {
        left: 0;
        top: 0;
        transform: translate(-50%, -50%);
    }
}

@keyframes color-change {
    0% {
        background-color: #f95d34;
        box-shadow: 0 0 15px #f95d34;
    }

    50% {
        background-color: #2290c7;
        box-shadow: 0 0 15px #2290c7;
    }

    100% {
        background-color: #f95d34;
        box-shadow: 0 0 15px #f95d34;
    }
}

@keyframes border-color-change {
    0% {
        border-color: #f95d34;
    }

    50% {
        border-color: #2290c7;
    }

    100% {
        border-color: #f95d34;
    }
}

.glowing-card-container {
    position: relative;
    padding: 3rem;
    border-radius: var(--radius-md);
    background-color: rgba(15, 15, 15, 1);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

/* The travelling dot */
.glowing-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 10;
    background-color: #f95d34;
    /* Fallback color */
    box-shadow: 0 0 15px #f95d34;
    /* Fallback shadow */
    animation:
        border-follow 6s linear infinite,
        color-change 6s linear infinite;
}

/* The border box */
.glowing-border {
    position: absolute;
    inset: 0;
    border: 2px solid #f95d34;
    /* Fallback color */
    /* Animated below */
    border-radius: var(--radius-md);
    animation: border-color-change 6s linear infinite;
    pointer-events: none;
}

.glowing-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
}

.glowing-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.glowing-content p {
    font-size: 1rem;
    color: #d1d5db;
    /* gray-300 */
    margin-bottom: 1.5rem;
}

.available-now {
    color: #f95d34;
    font-size: 0.875rem;
    display: inline-flex;
    /* Changed to inline-flex for better anchor behavior */
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    /* Ensure no underline */
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    /* Added padding for better click area */
    border-radius: 20px;
    /* Optional: adds a subtle button feel on hover */
}

.available-now:hover {
    background: rgba(249, 93, 52, 0.1);
    /* Light orange background on hover */
    transform: translateY(-2px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #f95d34;
    border-radius: 50%;
    box-shadow: 0 0 8px #f95d34;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* Partners / Logo Slider */
.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 3rem 0;
}

.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-alt), transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-alt), transparent);
}

.slider-track {
    display: flex;
    gap: 4rem;
    width: calc(264px * 18);
    animation: scroll 40s linear infinite;
}

/* Pause animation on hover */
.slider-track:hover {
    animation-play-state: paused;
}

.slide {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    cursor: pointer;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-264px * 9));
    }
}

/* ============================
   New Elements Styles
   ============================ */

/* Lead Text (Biz Kimiz) */
.lead-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Team Section */
.mt-large {
    margin-top: 8rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    /* Increased gap */
    margin-top: 4rem;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.team-img {
    height: 320px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--color-bg-alt);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--color-text);
}

.team-role {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Thematic Areas */
.thematic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.thematic-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.thematic-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.thematic-icon {
    font-size: 2.5rem;
    /* Icon size */
    margin-bottom: 1.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* Circle background */

    /* Default Accent */
    color: var(--color-accent);
    background: rgba(34, 144, 199, 0.1);
    transition: var(--transition);
}

/* Specific Colors for Thematic Icons */
.thematic-card:nth-child(1) .thematic-icon {
    color: #2290c7;
    background: rgba(34, 144, 199, 0.1);
}

.thematic-card:nth-child(2) .thematic-icon {
    color: #9B59B6;
    background: rgba(155, 89, 182, 0.1);
}

.thematic-card:nth-child(3) .thematic-icon {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

.thematic-card:nth-child(4) .thematic-icon {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.thematic-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.thematic-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.thematic-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.thematic-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .mt-large {
        margin-top: 5rem;
    }
}