:root {
    --accenture-purple: #A100FF;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

img, svg {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* Header */
.header {
    background-color: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.sticky {
    position: fixed;
    background-color: var(--black);
    border-bottom: 1px solid #1a1a1a;
}

.header-logo {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-links-header, .nav-links-footer {
    display: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -28px;
    left: 0;
    background-color: var(--accenture-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* NEW ACCENTURE HERO */
.accenture-hero {
    background-color: #000;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.hero-grid-new {
    display: grid;
    grid-template-columns: 1fr 30%; /* Changed from 400px to percentage */
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
    pointer-events: none;
    width: 100%;
}

.hero-typography {
    pointer-events: auto;
}

.staggered-heading {
    font-size: clamp(32px, 6vw, 85px); /* Responsive scaling */
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
}

.staggered-heading .line-1 {
    display: block;
}

.staggered-heading .line-2 {
    display: block;
    margin-left: 20%;
}

.purple-arrow {
    color: var(--accenture-purple);
    margin: 0 -2px;
}

.hero-content-box {
    pointer-events: auto;
    padding-right: 2rem;
}

.hero-content-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease;
}

.hero-link:hover {
    color: #eee;
}

.hero-link .arrow-box {
    background-color: var(--accenture-purple);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.hero-link:hover .arrow-box {
    transform: translateX(5px);
}

/* NEW ACCENTURE CARDS (8 Grid) */
.accenture-cards-section {
    background-color: #000;
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 2;
}

.accenture-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 64px; /* Exact gap from Accenture */
}

.accenture-card {
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: border-color 0.8s ease, box-shadow 0.8s ease, transform 0.8s ease;
}

.accenture-card:hover {
    border-color: rgba(161, 0, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(161, 0, 255, 0.1);
    transform: translateY(-5px);
}

/* Full Image Dark Card */
.card-image-full {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.accenture-card:hover .card-image-full {
    transform: scale(1.08); /* Slow dramatic zoom */
}

/* Overlay gradient */
.card-image-full .dark-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    transition: background 1.0s ease, backdrop-filter 1.0s ease;
}

.accenture-card:hover .dark-overlay {
    background: linear-gradient(to top, rgba(15,0,30,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.3) 100%);
    backdrop-filter: blur(2px); /* Glassmorphism effect */
}

/* Content Area */
.card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.card-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--accenture-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

.accenture-card h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

.accent-line {
    width: 0;
    height: 2px;
    background-color: var(--accenture-purple);
    margin: 1.5rem 0;
    transition: width 1.2s cubic-bezier(0.85, 0, 0, 1);
    box-shadow: 0 0 10px var(--accenture-purple);
}

.card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #ccc;
    opacity: 0;
    max-height: 0;
    margin: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, max-height 0.8s ease, transform 0.8s ease, margin 0.8s ease;
}

.card-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: var(--accenture-purple);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Hover Triggers */
.accenture-card:hover .card-tag,
.accenture-card:hover h3 {
    transform: translateY(0);
}

.accenture-card:hover .accent-line {
    width: 60px; /* Neon line expands */
}

.accenture-card:hover .card-desc {
    opacity: 1;
    max-height: 200px;
    margin-bottom: 1.5rem;
    transform: translateY(0);
}

.accenture-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.light-card .card-image-area {
    height: 50%;
    background-size: cover;
    background-position: center;
}

/* Dark Card */
.dark-card {
    background-color: #111;
    color: var(--white);
}

.dark-card .card-text-area {
    padding: 30px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.dark-card .card-image-area {
    height: 50%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

/* Full Image Dark Card */
.card-image-full {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0, 1);
}

.card-image-full .dark-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    transition: opacity 1.0s ease;
}

.accenture-card:hover .dark-overlay {
    opacity: 0.9; /* Darkens image slightly to make reveal text readable */
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.95) 100%);
}

.card-tag {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.accenture-card h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* ----------------------------------------------------
   ABOUT US SECTION
   ---------------------------------------------------- */
.about-section {
    background-color: transparent; /* Keep transparent so canvas shows */
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.about-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 3rem;
}

.about-desc strong {
    color: var(--white);
}

.about-stats {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--accenture-purple);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(161, 0, 255, 0.15);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ----------------------------------------------------
   FOOTER (Split Layout exactly like screenshot)
   ---------------------------------------------------- */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 6rem 0 2rem;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    /* Removed overflow-x: hidden to allow text to move freely */
}

/* Left Side */
.footer-left {
    flex: 1;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6rem;
}

.footer-links-wrapper {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links-col a {
    font-size: 14px;
    color: #ccc;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links-col a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 12px;
    color: #666;
}

/* Right Side: Animated Text */
.footer-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed overflow: hidden so text doesn't disappear when moving */
}

.animated-text-container {
    position: absolute;
    right: -50px; /* Restored to original position */
    display: flex;
    flex-direction: column; /* Stack words horizontally */
    align-items: flex-end;
    justify-content: center;
}

.animated-word {
    font-size: clamp(30px, 9vw, 110px); /* Reduced from 150px to 110px to fit BİYOMEDİKAL */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -3px; /* Slightly less tight spacing for better readability */
    white-space: nowrap;
    transition: transform 0.2s ease-out;
    max-width: 100vw;
}

/* Outline style for one of the words to mimic the screenshot */
.animated-word.outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
}

@keyframes slideUpDown {
    0% { transform: translateY(-15%); }
    100% { transform: translateY(15%); }
}

/* Responsive */
@media (max-width: 1200px) {
    .staggered-heading { font-size: 65px; }
    .hero-grid-new { grid-template-columns: 1fr; gap: 2rem; }
    .accenture-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-container { flex-direction: column; }
    .footer-right { min-height: 400px; overflow: hidden; margin-top: 4rem; }
    .animated-word { font-size: 70px; letter-spacing: -3px; }
    .animated-text-container { right: auto; left: 50%; transform: translateX(-50%); }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 2500;
    position: relative;
    background: transparent;
    border: none;
}

.mobile-toggle span {
    display: block !important;
    width: 26px !important;
    height: 3px !important;
    background-color: #ffffff !important;
    margin: 3px 0 !important;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header.nav-active .mobile-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.header.nav-active .mobile-toggle span:nth-child(2) {
    opacity: 0;
}
.header.nav-active .mobile-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .staggered-heading { font-size: clamp(32px, 10vw, 48px); }
    .staggered-heading .line-2 { margin-left: 0; }
    .hero-grid-new { grid-template-columns: 1fr; }
    
    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.85, 0, 0, 1);
        z-index: 2000;
        padding: 80px 40px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        display: flex; /* Always flex but hidden by right: -100% */
    }

    .nav-links-header {
        display: block;
        margin-bottom: 2rem;
    }

    .nav-links-footer {
        display: block;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .nav-links-footer p {
        font-size: 14px;
        color: #888;
        margin-bottom: 0.5rem;
    }

    .nav-links-footer a {
        font-size: 18px;
        color: var(--white);
        font-weight: 700;
    }

    .header.nav-active .nav-links {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.5px;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-links a::after {
        bottom: -10px;
    }

    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .header.nav-active .menu-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .header-actions {
        gap: 0.8rem;
        color: #ffffff !important;
    }

    .header-actions svg {
        width: 18px;
        height: 18px;
        color: #ffffff !important;
    }

    .accenture-grid-4 { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .footer-links-wrapper { flex-direction: column; gap: 2rem; }
    
    .footer {
        padding: 4rem 0 2rem;
    }

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

    .footer-links-col {
        gap: 0.8rem;
    }

    .animated-word {
        font-size: clamp(35px, 12vw, 55px);
        letter-spacing: -2px;
    }
}
    align-items: flex-end;
    justify-content: center;
}

.animated-word {
    font-size: clamp(30px, 9vw, 110px); /* Reduced from 150px to 110px to fit BİYOMEDİKAL */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -3px; /* Slightly less tight spacing for better readability */
    white-space: nowrap;
    transition: transform 0.2s ease-out;
    max-width: 100vw;
}

/* Outline style for one of the words to mimic the screenshot */
.animated-word.outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
}

@keyframes slideUpDown {
    0% { transform: translateY(-15%); }
    100% { transform: translateY(15%); }
}

/* Responsive */
@media (max-width: 1200px) {
    .staggered-heading { font-size: 65px; }
    .hero-grid-new { grid-template-columns: 1fr; gap: 2rem; }
    .accenture-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-container { flex-direction: column; }
    .footer-right { min-height: 400px; overflow: hidden; margin-top: 4rem; }
    .animated-word { font-size: 70px; letter-spacing: -3px; }
    .animated-text-container { right: auto; left: 50%; transform: translateX(-50%); }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 2500;
    position: relative;
    background: transparent;
    border: none;
}

.mobile-toggle span {
    display: block !important;
    width: 26px !important;
    height: 3px !important;
    background-color: #ffffff !important;
    margin: 3px 0 !important;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header.nav-active .mobile-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.header.nav-active .mobile-toggle span:nth-child(2) {
    opacity: 0;
}
.header.nav-active .mobile-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .staggered-heading { font-size: clamp(32px, 10vw, 48px); }
    .staggered-heading .line-2 { margin-left: 0; }
    .hero-grid-new { grid-template-columns: 1fr; }
    
    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.85, 0, 0, 1);
        z-index: 2000;
        padding: 80px 40px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        display: flex; /* Always flex but hidden by right: -100% */
    }

    .nav-links-header {
        display: block;
        margin-bottom: 2rem;
    }

    .nav-links-footer {
        display: block;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .nav-links-footer p {
        font-size: 14px;
        color: #888;
        margin-bottom: 0.5rem;
    }

    .nav-links-footer a {
        font-size: 18px;
        color: var(--white);
        font-weight: 700;
    }

    .header.nav-active .nav-links {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.5px;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-links a::after {
        bottom: -10px;
    }

    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .header.nav-active .menu-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .header-actions {
        gap: 0.8rem;
        color: #ffffff !important;
    }

    .header-actions svg {
        width: 18px;
        height: 18px;
        color: #ffffff !important;
    }

    .accenture-grid-4 { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .footer-links-wrapper { flex-direction: column; gap: 2rem; }
    
    .footer {
        padding: 4rem 0 2rem;
    }

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

    .footer-links-col {
        gap: 0.8rem;
    }

    .animated-word {
        font-size: clamp(35px, 12vw, 55px);
        letter-spacing: -2px;
    }
}

@media (max-width: 480px) {
    .staggered-heading { font-size: clamp(28px, 12vw, 36px); }
    .hero-content-box h2 { font-size: 24px; }
    .hero-content-box p { font-size: 16px; }
    .header-container { padding: 1rem 5%; }
    .header-actions span { display: none; }
    .footer-left { padding: 0 5%; }
    .animated-word { font-size: clamp(25px, 15vw, 40px); letter-spacing: -1px; }
    .footer-right { min-height: 200px; }
}

/* Search Bar (Inline) */
.search-bar-inline {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.85, 0, 0, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.search-bar-inline.active {
    padding: 1.5rem 5%;
    max-height: 120px;
}

.search-bar-inline .search-form-inner {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.search-bar-inline input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: 1.1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-bar-inline input:focus {
    border-color: var(--accenture-purple);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366;
    padding: 0;
    border: none;
}

.whatsapp-btn svg {
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.scroll-top-btn {
    background-color: var(--accenture-purple);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media (max-width: 480px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    .nav-links {
        width: 85%;
    }
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.lang-trigger {
    font-weight: 600; 
    font-size: 0.95rem; 
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
    padding: 10px 0;
}

.lang-trigger::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s;
}

.lang-dropdown:hover .lang-trigger::after {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 0;
    overflow: hidden;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    padding: 8px 16px;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
    text-decoration: none;
}

.lang-menu a:last-child {
    border-bottom: none;
}

.lang-menu a:hover {
    background-color: var(--accenture-purple);
    color: var(--white);
}

/* Hero Section Animations */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.staggered-heading .line-1 {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.staggered-heading .line-2 {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-content-box h2 {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-content-box p {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-link {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
/* Light Theme Overrides */
html.light-theme body {
    background-color: #ffffff;
    color: #000000;
}

html.light-theme .header.sticky,
html.light-theme .accenture-hero {
    background-color: #ffffff;
    border-color: #eeeeee;
}

html.light-theme .header {
    color: #000000;
}

html.light-theme .nav-links a {
    color: #000000;
}

html.light-theme .staggered-heading,
html.light-theme .hero-content-box h2,
html.light-theme .section-title,
html.light-theme .about-desc strong {
    color: #000000;
}

html.light-theme .hero-content-box p,
html.light-theme .about-desc,
html.light-theme .nav-links-footer p {
    color: #555555;
}

/* Keep cards dark in light mode */
html.light-theme .accenture-card,
html.light-theme .dark-card {
    background-color: #111111;
    color: #ffffff;
}

html.light-theme .accenture-card h3,
html.light-theme .accenture-card .card-tag {
    color: #ffffff;
}

html.light-theme .accenture-card .card-desc {
    color: #cccccc;
}

html.light-theme .accenture-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(161, 0, 255, 0.1);
}

html.light-theme .lang-trigger {
    color: #000000;
}

html.light-theme .lang-menu {
    background-color: #ffffff;
    border-color: #dddddd;
}

html.light-theme .lang-menu a {
    color: #555555;
    border-bottom-color: #eeeeee;
}

html.light-theme .lang-menu a:hover {
    color: #ffffff;
    background-color: var(--accenture-purple);
}

html.light-theme #search-trigger,
html.light-theme #theme-toggle {
    color: #000000;
}

html.light-theme .mobile-toggle span {
    background-color: #000000 !important;
}

html.light-theme .menu-backdrop {
    background: rgba(255, 255, 255, 0.5);
}


/* Additional Light Theme Overrides */
html.light-theme .nav-links {
    background-color: #ffffff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

html.light-theme .nav-links-footer {
    border-top-color: #eeeeee;
}

html.light-theme .nav-links-footer a {
    color: #ffffff;
}

html.light-theme .search-bar-inline {
    background-color: #ffffff;
    border-bottom-color: #eeeeee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

html.light-theme .search-bar-inline input {
    background: #f9f9f9;
    border-color: #dddddd;
    color: #000000;
}

html.light-theme .search-bar-inline input:focus {
    border-color: var(--accenture-purple);
}

html.light-theme .header-actions {
    color: #000000 !important;
}

html.light-theme .header-actions svg {
    color: #000000 !important;
}

html.light-theme .mobile-toggle span {
    background-color: #000000 !important;
}

@media (max-width: 768px) {
    html.light-theme .header-actions {
        color: #000000 !important;
    }
    html.light-theme .header-actions svg {
        color: #000000 !important;
    }
}


/* Page Specific Light Theme Overrides (Projects & Contact) */
html.light-theme .project-filters .filter-btn {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #555 !important;
}

html.light-theme .project-filters .filter-btn:hover {
    color: #000 !important;
    background: rgba(138, 43, 226, 0.1) !important;
    border-color: rgba(138, 43, 226, 0.3) !important;
}

html.light-theme .project-filters .filter-btn.active {
    background: #8a2be2 !important;
    color: #fff !important;
}

html.light-theme .contact-info-panel .glass-card {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

html.light-theme .info-item h3 {
    color: #000 !important;
}

html.light-theme .info-item p,
html.light-theme .info-item p a {
    color: #555 !important;
}

html.light-theme .contact-form-panel .glass-form {
    background: rgba(138, 43, 226, 0.03) !important;
    border: 1px solid rgba(138, 43, 226, 0.1) !important;
}

html.light-theme .glass-form h2 {
    color: #000 !important;
}

html.light-theme .form-group label {
    color: #555 !important;
}

html.light-theme .form-control {
    background: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    color: #000 !important;
}

html.light-theme .map-container iframe {
    filter: none !important;
}

html.light-theme .map-container {
    border-color: #eee !important;
}

