/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Grid Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8f98ff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(143, 152, 255, 0.1) 0%, transparent 70%);
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content .highlight {
    background: linear-gradient(90deg, #653aff 88%, rgba(59, 17, 248, 0.3) 99%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 10px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Content Tag */
.content-tag {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(143, 152, 255, 0.2);
    color: #8f98ff;
    border-radius: 48px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.story-text h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-visual {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.story-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    margin: 80px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 100px;
    margin-right: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 600;
    color: #3aefff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 400px;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8f98ff, #3aefff);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 600;
    color: #000;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-card .role {
    color: #8f98ff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    margin: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8f98ff, #3aefff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: #8f98ff;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #8f98ff;
}

.btn:hover {
    background: transparent;
    color: #8f98ff;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Glow Effects */
.glow-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(143, 152, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.glow-2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(58, 239, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Floating Elements Animation */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text h2 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 42px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .story-section {
        padding: 80px 0;
    }

    .team-section {
        padding: 80px 0;
    }

    .values-section {
        padding: 80px 0;
    }

    .cta-section {
        padding: 80px 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .story-text h2 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .story-visual {
        height: 300px;
    }

    .team-card,
    .value-card {
        padding: 30px 20px;
    }

    .values-section,
    .stats-section {
        margin: 40px 0;
        border-radius: 30px;
    }
}
.logo img {
    height: 135px;
    width: auto;
    object-fit: contain;
    margin-left: -120px;
}

/* Optional: Add hover effect */
.logo img:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
/* Header - Transparent Background */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; /* Remove the dark background */
    backdrop-filter: none; /* Remove blur effect */
    z-index: 999;
    padding: 20px 0; /* Increase padding for more spacing */
    border-bottom: none; /* Remove border */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */


/* Navigation Links - Add Spacing */
.nav-links {
    display: flex;
    gap: 150px; /* Increase gap between nav items */
    list-style: none;
    padding: 0;
    margin: 0;

}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px; /* Add padding around each link */
    border-radius: 8px; /* Optional: rounded corners */
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #8f98ff;
    background: rgba(255, 255, 255, 0.1); /* Optional: subtle hover background */
}

/* Optional: Add scrolled state with background */
.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .header {
        padding: 15px 0;
    }
}
.team-avatar {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Add your existing avatar styling here */
}
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #e0e0e0; /* Optional border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-left: 0px;
}

/* Alternative smaller size */
.team-avatar.small {
    width: 80px;
    height: 80px;
}


/* Make sure containers can accommodate content */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible; /* Not hidden */
}

/* Ensure images are responsive */
img {
    max-width: 200%;
    height: 50%;
    
}
img {
    margin-left: -135px; /* Moves image 30px from left edge */
}
/* Fix any positioning issues */
.your-element {
    position: relative; /* Instead of absolute/fixed */
}
/* Team Section - Updated to display cards in one line */
.team-section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Updated team grid to display cards in one line */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 equal columns */
    gap: 40px;
    max-width: 1200px; /* Limit maximum width */
    margin: 0 auto; /* Center the grid */
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    /* Remove max-width to allow cards to fill available space */
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* For team cards without images (Strategy and Creative teams) */
.team-avatar:not(:has(.avatar-img)) {
    background: linear-gradient(45deg, #8f98ff, #3aefff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 600;
    color: #000;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-card .role {
    color: #8f98ff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile responsive - stack cards vertically on smaller screens */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 30px;
    }
    
    .team-section {
        padding: 80px 0;
    }
}

/* Tablet responsive - show 2 cards per row */
@media (max-width: 1024px) and (min-width: 769px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
/* Header Scroll Effect */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

/* Scrolled state with glassmorphism */
.header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

/* Optional: Adjust logo size when scrolled */
.header.scrolled .logo img {
    height: 35px;
}
 body {
  cursor: url("../images/cursorfinal.png"), auto;
}