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

:root {
    --primary-color: #6B46C1;
    --primary-dark: #553C9A;
    --primary-light: #8B5CF6;
    --secondary-color: #EC4899;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #10B981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(107, 70, 193, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary-color), transparent) 1;
    transition: all 0.3s ease;
}

header:hover {
    box-shadow: 0 6px 30px rgba(107, 70, 193, 0.15), 0 4px 8px rgba(0, 0, 0, 0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-wrapper:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) contrast(1) drop-shadow(0 2px 6px rgba(107, 70, 193, 0.15));
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(139, 92, 246, 0.05));
    backdrop-filter: blur(5px);
}

.logo-wrapper:hover .logo-image {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05) drop-shadow(0 4px 12px rgba(107, 70, 193, 0.25));
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(139, 92, 246, 0.1));
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.logo-wrapper:hover .logo::after {
    width: 100%;
}

nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

nav a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

nav a:hover::before {
    left: 0;
}

nav a:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: 1;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
}

.hero:hover .hero-image {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(107, 70, 193, 0.4));
}

.shader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%,
        #f093fb 50%,
        #4facfe 75%,
        #00f2fe 100%
    );
    z-index: 0;
}

.shader-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 20px,
        transparent 20px,
        transparent 40px,
        rgba(255, 255, 255, 0.03) 40px,
        rgba(255, 255, 255, 0.03) 60px
    );
    opacity: 1;
    animation: stripeMove 25s linear infinite;
}

@keyframes stripeMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

.shader-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 182, 193, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: none;
    max-width: 600px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 4rem 0;
}

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

#team .section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

#team .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem-section, .solution-section {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.problem-grid, .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card, .solution-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h4, .solution-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-card ul, .solution-card ul {
    list-style: none;
    padding-left: 0;
}

.problem-card li, .solution-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.problem-card li:before, .solution-card li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.impact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.impact-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.impact-box ul {
    list-style: none;
    padding-left: 0;
}

.impact-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.impact-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Team Section */
#team {
    position: relative;
    overflow: hidden;
}

#team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 70, 193, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#team .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) contrast(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-card:hover .team-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
}

.team-content {
    padding: 2.5rem;
    text-align: left;
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
}

.team-card:hover .team-content {
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.team-name {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

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

.team-role {
    color: var(--text-light);
    margin-bottom: 1.8rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 12px;
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease;
}

.team-card:hover .team-role {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(139, 92, 246, 0.1));
    transform: translateY(-2px);
}

.team-skills {
    text-align: left;
    margin: 2rem 0;
    position: relative;
}

.team-skills h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
}

.team-skills h4::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.team-skills ul {
    list-style: none;
    padding-left: 0;
}

.team-skills li {
    padding: 0.7rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.8rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 1.5rem;
    margin-left: 0.3rem;
}

.team-skills li:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 1.8rem;
}

.team-skills li:before {
    content: "▸";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.team-skills li:hover:before {
    transform: translateX(3px);
}

.team-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.team-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(139, 92, 246, 0.05));
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.team-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: left 0.3s ease;
    z-index: -1;
}

.team-link:hover {
    color: white;
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.team-link:hover::before {
    left: 0;
}

.team-link-separator {
    color: var(--text-light);
    margin: 0 0.3rem;
    font-weight: 300;
}

.important-note {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 4px;
}

/* Strengths Section */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.strength-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.strength-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.experience-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.experience-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.experience-list {
    list-style: none;
    padding-left: 0;
}

.experience-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.experience-list li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.motivation-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.motivation-box h3 {
    margin-bottom: 1rem;
}

/* Roadmap Section */
.current-stage {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.current-stage h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stage-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.stage-badge.mvp {
    background: var(--success-color);
    color: white;
}

.current-stage ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.current-stage li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.current-stage li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.roadmap-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child):before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 4rem;
    bottom: -3rem;
    width: 2px;
    background: var(--border-color);
}

.timeline-marker {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How We Solve Section */
.approach-section {
    margin-bottom: 3rem;
}

.approach-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h4 {
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Tech Stack Section */
.tech-stack-section {
    margin-top: 4rem;
}

.tech-stack-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
}

.tech-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-category ul {
    list-style: none;
    padding-left: 0;
}

.tech-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.tech-category li:before {
    content: "▸";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* AI Section */
.ai-section {
    margin-top: 4rem;
}

.ai-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ai-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--primary-light);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.2);
}

.ai-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.ai-card ul {
    list-style: none;
    padding-left: 0;
}

.ai-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.ai-card li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Footer */
/* Contact Section */
#contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(107, 70, 193, 0.2);
    border-color: var(--primary-color);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(139, 92, 246, 0.05));
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.social-link:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }

    .logo-wrapper {
        gap: 0.6rem;
    }

    .logo-image {
        height: 40px;
        max-width: 50px;
        padding: 3px;
    }

    .logo {
        font-size: 1.6rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
        width: 100%;
    }

    nav a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 4rem 0;
        min-height: 500px;
    }

    .hero-image-wrapper {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 300px;
        margin-bottom: 2rem;
        opacity: 0.8;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .shader-glow {
        width: 200%;
        height: 200%;
        filter: blur(60px);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .problem-grid, .solution-grid,     .team-grid, .strengths-grid, .steps-grid, .ai-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-image-container {
        width: 250px;
        height: 250px;
    }

    .team-content {
        padding: 2rem;
        border-radius: 16px;
    }

    .team-name {
        font-size: 1.4rem;
    }

    #team .section-title {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item:not(:last-child):before {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

