* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.navbar.scrolled {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
}

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

.logo img {
    height: 28px;
    width: auto;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: absolute;
    right: 3rem;
}

.nav-cta:hover {
    background-color: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.nav-cta-text {
    display: inline;
}

.nav-cta-icon {
    display: none;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        justify-content: space-between;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        position: static;
        right: auto;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #4a4a4a;
}

.hero {
    position: relative;
    min-height: 60vh;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
}

.liquid-animation {
    position: absolute;
    left: 40%;
    top: 0;
    width: 56%;
    height: 100%;
    filter: blur(40px);
    opacity: 0.6;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.7), rgba(219, 39, 119, 0.7));
    top: 10%;
    left: 5%;
    animation: float1 10s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(147, 51, 234, 0.6));
    top: 30%;
    left: 40%;
    animation: float2 12s ease-in-out infinite;
}

.blob-3 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.5), rgba(236, 72, 153, 0.5));
    top: 50%;
    left: 20%;
    animation: float3 14s ease-in-out infinite;
}

.blob-4 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6));
    top: 70%;
    left: 50%;
    animation: float4 11s ease-in-out infinite;
}

.blob-5 {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(147, 51, 234, 0.4));
    top: 5%;
    left: 60%;
    animation: float5 13s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-60px, -80px) scale(1.3) rotate(120deg);
    }
    66% {
        transform: translate(40px, 60px) scale(0.8) rotate(240deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(70px, -100px) scale(0.7) rotate(-140deg);
    }
    66% {
        transform: translate(-50px, 80px) scale(1.4) rotate(-280deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-80px, 70px) scale(1.2) rotate(160deg);
    }
    66% {
        transform: translate(60px, -90px) scale(0.9) rotate(320deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(50px, 100px) scale(1.5) rotate(-100deg);
    }
    66% {
        transform: translate(-70px, -60px) scale(0.75) rotate(-200deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 90px) scale(0.85) rotate(180deg);
    }
    66% {
        transform: translate(80px, -70px) scale(1.25) rotate(360deg);
    }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 10;
    text-align: left;
}

.hero-character {
    position: absolute;
    right: calc((100% - 1000px) / 2 - 175px);
    bottom: 5%;
    z-index: 15;
}

.hero-character img {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@media (max-width: 1200px) {
    .hero-character {
        right: 50px;
    }
    
    .hero-character img {
        width: 300px;
    }
}

@media (max-width: 1024px) {
    .hero-character {
        right: 30px;
    }
    
    .hero-character img {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-character {
        opacity: 1;
        right: 10px;
    }
    
    .hero-character img {
        width: 180px;
    }
}

.glass-box .tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2rem;
}

.glass-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2b2d2d;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.02em;
}

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

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

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

.hero-content h2 {
    font-size: 1.3rem;
    font-weight: normal;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}

.button-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

.btn {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #2b2d2d;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #3d3f3f;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* What We Do Section */
.what-we-do-section {
    background-color: #f5f5f5;
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}

.what-we-do-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    filter: blur(80px);
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('grain.png');
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.what-we-do-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.what-we-do-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2b2d2d;
    text-align: left;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.what-we-do-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    margin: 0 0 4rem 0;
    line-height: 1.4;
    max-width: 900px;
}

.what-we-do-container .subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: left;
    margin: 0 0 4rem 0;
    line-height: 1.4;
    max-width: 900px;
}

.what-we-do-intro {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: left;
    margin: 0 0 4rem 0;
    max-width: 900px;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.what-we-do-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: floatCard 6s ease-in-out infinite;
}

.what-we-do-card:nth-child(1) {
    animation-delay: 0s;
}

.what-we-do-card:nth-child(2) {
    margin-top: 2rem;
    animation-delay: 0.5s;
}

.what-we-do-card:nth-child(3) {
    margin-top: 4rem;
    animation-delay: 1s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.8), rgba(59, 130, 246, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.what-we-do-card[data-color="purple"]::before {
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.8), rgba(59, 130, 246, 0.8));
}

.what-we-do-card[data-color="pink"]::before {
    background: linear-gradient(90deg, rgba(219, 39, 119, 0.8), rgba(147, 51, 234, 0.8));
}

.what-we-do-card[data-color="blue"]::before {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.8), rgba(147, 51, 234, 0.8));
}

.what-we-do-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.05), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.what-we-do-card[data-color="pink"]::after {
    background: radial-gradient(circle, rgba(219, 39, 119, 0.05), transparent);
}

.what-we-do-card[data-color="blue"]::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05), transparent);
}

.what-we-do-card:hover {
    animation-play-state: paused;
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.what-we-do-card:hover::before {
    opacity: 1;
}

.what-we-do-card:hover::after {
    width: 300px;
    height: 300px;
}

.what-we-do-card[data-color="purple"]:hover {
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.25);
}

.what-we-do-card[data-color="pink"]:hover {
    box-shadow: 0 20px 50px rgba(219, 39, 119, 0.25);
}

.what-we-do-card[data-color="blue"]:hover {
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 1;
    transition: all 0.4s ease;
    animation: numberPulse 4s ease-in-out infinite;
}

.what-we-do-card:nth-child(1) .card-number {
    animation-delay: 0.3s;
}

.what-we-do-card:nth-child(2) .card-number {
    animation-delay: 0.8s;
}

.what-we-do-card:nth-child(3) .card-number {
    animation-delay: 1.3s;
}

@keyframes numberPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.what-we-do-card:hover .card-number {
    animation-play-state: paused;
    color: rgba(147, 51, 234, 0.15);
    transform: scale(1.1);
}

.what-we-do-card[data-color="pink"]:hover .card-number {
    color: rgba(219, 39, 119, 0.15);
}

.what-we-do-card[data-color="blue"]:hover .card-number {
    color: rgba(59, 130, 246, 0.15);
}

.what-we-do-card .card-icon-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.what-we-do-card .card-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    animation: iconBounce 3s ease-in-out infinite;
}

.what-we-do-card:nth-child(1) .card-icon {
    animation-delay: 0.2s;
}

.what-we-do-card:nth-child(2) .card-icon {
    animation-delay: 0.7s;
}

.what-we-do-card:nth-child(3) .card-icon {
    animation-delay: 1.2s;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.what-we-do-card:hover .card-icon {
    animation-play-state: paused;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(147, 51, 234, 0.3));
}

.what-we-do-card[data-color="pink"]:hover .card-icon {
    filter: drop-shadow(0 8px 20px rgba(219, 39, 119, 0.3));
}

.what-we-do-card[data-color="blue"]:hover .card-icon {
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.3));
}

.what-we-do-card .card-icon-small {
    width: 90px;
    height: 90px;
}

.what-we-do-card .card-icon-smaller {
    width: 94px;
    height: 94px;
}

.what-we-do-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2b2d2d;
    margin: 0 0 1rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-badges {
    display: none;
    grid-template-columns: auto auto;
    gap: 0.4rem;
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 2;
    justify-content: center;
    justify-items: center;
}

.card-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
    background-color: #f5f5f5;
    border-radius: 15px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.card-badge:nth-child(3) {
    grid-column: 1 / -1;
}

.what-we-do-card:hover .card-badge {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.what-we-do-card[data-color="purple"]:hover .card-badge {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.what-we-do-card[data-color="pink"]:hover .card-badge {
    background-color: rgba(236, 72, 153, 0.1);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.what-we-do-card[data-color="blue"]:hover .card-badge {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.what-we-do-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .what-we-do-card:nth-child(2),
    .what-we-do-card:nth-child(3) {
        margin-top: 0;
    }
    
    .what-we-do-container h2 {
        font-size: 2.5rem;
    }
    
    .what-we-do-container h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 4rem 2rem 2rem 2rem;
    }
    
    .what-we-do-container h2 {
        font-size: 2rem;
    }
    
    .what-we-do-container h3 {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .what-we-do-card {
        padding: 2rem 1.5rem;
    }
}

/* Achievements Banner */
.achievements-banner {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.6) 0%, rgba(233, 236, 239, 0.6) 50%, rgba(248, 249, 250, 0.6) 100%);
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.achievements-banner::before {
    content: '';
    flex: 1;
    max-width: calc((100% - 800px) / 2);
}

.achievements-banner::after {
    content: '';
    flex: 1;
    max-width: calc((100% - 800px) / 2);
}

.achievement-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 0 1 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 260px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    gap: 2rem;
}

.achievements-banner > .achievement-card {
    margin: 0 1rem;
}

.achievement-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.achievement-card:nth-child(1).animate {
    transition-delay: 0.1s;
}

.achievement-card:nth-child(2).animate {
    transition-delay: 0.2s;
}

.achievement-card:nth-child(3).animate {
    transition-delay: 0.3s;
}

.achievement-card h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #2b2d2d;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.achievement-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2b2d2d;
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.achievement-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Flowser Section */
.flowser-section {
    padding: 6rem 3rem;
    background-color: white;
    margin: 4rem 0;
}

.flowser-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flowser-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2b2d2d;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.flowser-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    line-height: 1.4;
}

.flowser-content .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 1.5rem 0 0.25rem 0;
    line-height: 1.4;
}

.flowser-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.flowser-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.flowser-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.flowser-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.flowser-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5D74F4;
    font-weight: bold;
}

.flowser-content ul li strong {
    color: #333;
    font-weight: 600;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 400;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
    text-decoration: none;
    color: rgba(51, 51, 51, 0.7);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 48px;
    height: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #C27AE5, #5D74F4, #B09AE2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.read-more-btn:hover {
    background-color: rgba(176, 154, 226, 0.4);
}

.flowser-hidden-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.flowser-content-visible {
    max-height: 2000px;
    opacity: 1;
    margin-top: 2rem;
}

.flowser-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.flowser-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #2b2d2d;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    height: 48px;
    line-height: 1;
}

.flowser-btn:hover {
    background-color: #3d3f3f;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.flowser-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.flowser-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .flowser-section {
        padding: 2rem 2rem 2rem 2rem;
        margin: 2rem 0;
    }
    
    .flowser-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .flowser-content {
        order: 2;
        text-align: center;
    }
    
    .flowser-video {
        order: 1;
        margin-bottom: 0;
    }
    
    .flowser-content h2 {
        font-size: 2.5rem;
    }
    
    .flowser-content h3 {
        font-size: 1.2rem;
    }
    
    .flowser-buttons {
        justify-content: center;
    }
}

/* Cadence & Interact Combined Section */
.cadence-interact-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
    margin: 4rem 0;
}

.cadence-interact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.cadence-column,
.interact-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cadence-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 2rem;
}

.interact-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cadence-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2b2d2d;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.cadence-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    line-height: 1.4;
}

.cadence-content .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 1.5rem 0 0.25rem 0;
    line-height: 1.4;
}

.cadence-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.cadence-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cadence-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #2b2d2d;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    height: 48px;
    line-height: 1;
}

.cadence-btn:hover {
    background-color: #3d3f3f;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cadence-image {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.cadence-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .cadence-interact-section {
        padding: 2rem 2rem;
        margin: 2rem 0;
    }
    
    .cadence-interact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .cadence-column,
    .interact-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cadence-content {
        order: 2;
        text-align: center;
        padding-right: 0;
    }
    
    .cadence-image {
        order: 1;
        height: auto;
        margin-bottom: 0;
    }
    
    .cadence-image img {
        content: url('cadance-mobile.png');
        height: auto;
        object-fit: contain;
    }
    
    .interact-content {
        order: 2;
        text-align: center;
    }
    
    .interact-video {
        order: 1;
    }
    
    .cadence-content h2,
    .interact-content h2 {
        font-size: 2.5rem;
    }
    
    .cadence-buttons,
    .interact-buttons {
        flex-direction: column;
        align-items: center;
    }
}


.interact-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2b2d2d;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.interact-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    line-height: 1.4;
}

.interact-content .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 1.5rem 0 0.25rem 0;
    line-height: 1.4;
}

.interact-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.interact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.interact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #2b2d2d;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    height: 48px;
    line-height: 1;
}

.interact-btn:hover {
    background-color: #3d3f3f;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.interact-video {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.interact-video a {
    display: block;
    cursor: pointer;
    height: 100%;
}

.interact-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}


/* LinkLock Section */
.linklock-section {
    padding: 10rem 3rem;
    background-color: #f9f9f9;
    margin: 6rem 0;
}

.linklock-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.linklock-content {
    display: flex;
    flex-direction: column;
}

.linklock-content-wrapper {
    flex: 1;
}

.linklock-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: center;
}

.linklock-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2b2d2d;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.linklock-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    line-height: 1.4;
}

.linklock-content .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 1.5rem 0 0.25rem 0;
    line-height: 1.4;
}

.linklock-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b2d2d;
    margin: 2rem 0 0.75rem 0;
}

.linklock-content h4:first-of-type {
    margin-top: 2rem;
}

.linklock-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.linklock-content p:last-of-type {
    margin-bottom: 0;
}

.linklock-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.linklock-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 400;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
    text-decoration: none;
    color: rgba(51, 51, 51, 0.7);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 48px;
    height: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.linklock-toggle-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #C27AE5, #5D74F4, #B09AE2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.linklock-toggle-btn:hover {
    background-color: rgba(176, 154, 226, 0.4);
}

.linklock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #2b2d2d;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    height: 48px;
    line-height: 1;
}

.linklock-btn:hover {
    background-color: #3d3f3f;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.linklock-hidden-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.linklock-content-visible {
    max-height: 2000px;
    opacity: 1;
    margin-top: 2rem;
}

.linklock-extra-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.linklock-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.linklock-sub-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.linklock-sub-images img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: scale(1.1);
}

.linklock-bottom-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .linklock-section {
        padding: 4rem 2rem;
        margin: 2rem 0;
    }
    
    .linklock-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .linklock-content {
        order: 2;
        text-align: center;
    }
    
    .linklock-images {
        order: 1;
    }
    
    .linklock-content h2 {
        font-size: 2.5rem;
    }
    
    .linklock-content h3 {
        font-size: 1.2rem;
    }
    
    .linklock-buttons {
        justify-content: center;
    }
    
    .linklock-sub-images {
        display: none;
    }
    
    .linklock-extra-image {
        display: block !important;
        margin-top: 0;
        content: url('linklock-mobile.png');
        height: auto;
        object-fit: contain;
        box-shadow: none;
    }
}

/* Card Slider Section */
.slider-section {
    padding: 40px 0 6rem 0;
    background-color: white;
    overflow: hidden;
}

@media (max-width: 768px) {
    .slider-section {
        padding: 40px 0 2rem 0;
    }
}

.slider-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2b2d2d;
    text-align: center;
    margin: 0 0 4rem 0;
    line-height: 1.2;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    color: #333;
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.slider-card {
    position: absolute;
    width: 350px;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-card[data-section]:not([data-section=""]) {
    cursor: pointer;
}

.slider-card[data-section]:not([data-section=""]):hover {
    background: rgba(139, 92, 246, 0.15);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.slider-card[data-section]:not([data-section=""]):hover .card-glass {
    background: rgba(255, 255, 255, 0.9);
    border-top: 2px solid rgba(139, 92, 246, 0.5);
}

.slider-card:nth-child(1) {
    transform: translateX(-400px) scale(0.85) rotateY(15deg);
    z-index: 1;
    opacity: 0.7;
}

.slider-card:nth-child(2) {
    transform: translateX(-200px) scale(0.92) rotateY(8deg);
    z-index: 2;
    opacity: 0.85;
}

.slider-card:nth-child(3) {
    transform: translateX(0) scale(1);
    z-index: 3;
    opacity: 1;
}

.slider-card:nth-child(4) {
    transform: translateX(200px) scale(0.92) rotateY(-8deg);
    z-index: 2;
    opacity: 0.85;
}

.slider-card:nth-child(5) {
    transform: translateX(400px) scale(0.85) rotateY(-15deg);
    z-index: 1;
    opacity: 0.7;
}

.slider-card:nth-child(6) {
    transform: translateX(600px) scale(0.75) rotateY(-20deg);
    z-index: 0;
    opacity: 0;
}

.card-bg {
    display: none;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 180px);
    object-fit: cover;
    z-index: 1;
}

.card-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-glass h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2b2d2d;
    margin: 0 0 0.75rem 0;
}

.card-glass p {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.card-glass-hidden-text h3,
.card-glass-hidden-text p {
    display: none;
}

/* Contact Banner Section */
.contact-banner {
    padding: 6rem 3rem;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./banner-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.contact-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}


.banner-flying-character {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: auto;
    z-index: 3;
}

.banner-phone-character {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: auto;
    z-index: 3;
    transform: scaleX(-1);
}

.contact-banner-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-banner h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2b2d2d;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.contact-banner p {
    font-size: 1.2rem;
    color: #2b2d2d;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.contact-banner p:last-of-type {
    margin-bottom: 3rem;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: white;
    color: #2b2d2d;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.contact-btn:hover {
    background-color: #f5f5f5;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 4rem 2rem;
        margin: 2rem 0;
    }
    
    .contact-banner-character {
        height: 80%;
        width: auto;
        left: 0;
    }
    
    .contact-banner h2 {
        font-size: 2rem;
    }
    
    .contact-banner p {
        font-size: 1rem;
    }
}

/* Team Section */
.team-section {
    background-color: #f9f9f9;
    padding: 6rem 3rem 6rem 3rem;
    position: relative;
    margin-top: -6rem;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('grain.png');
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2b2d2d;
    text-align: center;
    margin: 0 0 4rem 0;
    line-height: 1.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: stretch;
}

.team-member {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}


.team-member-inner {
    background: white;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-member-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.8), rgba(219, 39, 119, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member[data-color="purple"] .team-member-inner::before {
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.8), rgba(59, 130, 246, 0.8));
}

.team-member[data-color="pink"] .team-member-inner::before {
    background: linear-gradient(90deg, rgba(219, 39, 119, 0.8), rgba(147, 51, 234, 0.8));
}

.team-member-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-member-inner:hover::before {
    opacity: 1;
}

.team-member[data-color="purple"] .team-member-inner:hover {
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.3);
}

.team-member[data-color="pink"] .team-member-inner:hover {
    box-shadow: 0 20px 50px rgba(219, 39, 119, 0.3);
}

.team-character {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    pointer-events: none;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem auto;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 15px;
    border: 1px solid #e5e5e5;
    transition: all 0.4s ease;
}

.team-member-inner:hover .team-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2b2d2d;
    margin: 0 0 0.5rem 0;
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    margin: 0 0 1.5rem 0;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(219, 39, 119, 0.1));
    color: #2b2d2d;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.team-member[data-color="purple"] .skill-badge {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(59, 130, 246, 0.1));
    border-color: rgba(147, 51, 234, 0.2);
}

.team-member[data-color="pink"] .skill-badge {
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.1), rgba(147, 51, 234, 0.1));
    border-color: rgba(219, 39, 119, 0.2);
}

.skill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-member p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.team-quote {
    font-size: 1rem;
    color: #9333ea;
    font-style: italic;
    margin: auto 0 0 0;
    padding: 1rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 15px;
    border-left: 3px solid #9333ea;
}

.team-member[data-color="pink"] .team-quote {
    color: #db2777;
    background: rgba(219, 39, 119, 0.05);
    border-left-color: #db2777;
}

.team-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #2b2d2d;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    align-self: center;
}

.team-link:hover {
    background-color: #3d3f3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-member[data-color="purple"] .team-link:hover {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.9), rgba(59, 130, 246, 0.9));
}

.team-member[data-color="pink"] .team-link:hover {
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.9), rgba(147, 51, 234, 0.9));
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 2rem;
        margin-top: 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    
    .team-container h2 {
        font-size: 2rem;
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
    }
    
    .team-character {
        width: 60px;
        height: 60px;
    }
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

