/* Root colors */
:root {
    --color-bg: #0a0f1c;
    --color-bg-alt: #111827;
    --color-primary: #3b82f6;
    --color-secondary: #8b5cf6;
    --color-accent: #00aaff;
    --color-text: #e5e7eb;
    --color-text-muted: #9ca3af;
  }
  
  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Particle container */
  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  /* Header */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.8s ease;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
  }
  
  .logo:hover::after {
    left: 0;
  }
  
  /* Navigation */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-links a:hover {
    color: var(--color-primary);
  }
  
  /* Hamburger menu */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text);
    transition: transform 0.3s ease;
  }
  
  .menu-toggle:hover {
    transform: rotate(90deg);
  }
  
  /* Mobile view */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 70px;
      right: -100%;
      flex-direction: column;
      background: var(--color-bg-alt);
      width: 200px;
      padding: 1rem;
      gap: 1rem;
      border-radius: 8px;
      transition: right 0.3s ease;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
  
    .nav-links.active {
      right: 20px;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  /* HERO SECTION */
  .hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1520&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    opacity: 0;
  }
  
  .hero h1 {
    font-size: 4rem;
    margin: 10px 0;
    font-weight: 700;
    color: var(--accent, #00aaff);
    text-shadow: 0 0 20px rgba(0,170,255,0.8);
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  .hero h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f5f5f5;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn.primary {
    background: var(--accent, #00aaff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,170,255,0.3);
  }
  
  .btn.secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
  }
  
  .btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
  }
  
  .scroll-indicator::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
  }
  
  /* Animations */
  @keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
  }
  
  @keyframes glow {
    from { text-shadow: 0 0 10px #00aaff; }
    to { text-shadow: 0 0 30px #00aaff, 0 0 60px #00aaff; }
  }
  
  @keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
  }
  
  .fade-in.delay-1 { animation-delay: 1s; }
  .fade-in.delay-2 { animation-delay: 1.5s; }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  /* Typewriter */
  .typewriter {
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto 20px auto;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
  }
  
  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }
  
  @keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #fff; }
  }
  
  /* About Us Section */
  .about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
  }
  
  .about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
  }
  
  .about-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .about-left {
    flex: 1 1 400px;
    color: var(--color-text);
  }
  
  .about-left h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .about-left h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
  }
  
  .about-left p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--color-text-muted);
  }
  
  .about-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-primary);
    transition: width 0.3s ease;
    z-index: -1;
  }
  
  .about-btn:hover::before {
    width: 100%;
  }
  
  .about-btn:hover {
    transform: scale(1.05);
    color: #fff;
  }
  
  .about-right {
    flex: 1 1 400px;
    text-align: center;
    perspective: 1000px;
  }
  
  .about-right img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
  }
  
  .about-right img:hover {
    transform: translateY(-10px) rotate3d(1, 1, 0, 5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  }
  
  /* Fade-in animation */
  .about-left, .about-right {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
  }
  
  .about-left.show, .about-right.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-container {
      flex-direction: column-reverse;
      gap: 30px;
    }
  }
  
  /* Problems We Solve Together Section */
  .problems-section {
    padding: 80px 20px;
    background-color: var(--color-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .problems-section h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
  }
  
  .problems-section .subtext {
    color: var(--color-text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
  }
  
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .problem-card {
    background-color: var(--color-bg-alt);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
  }
  
  .problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .problem-card:hover::before {
    transform: scaleX(1);
  }
  
  .problem-card .icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
  }
  
  .problem-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 10px;
  }
  
  .problem-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  }
  
  .problem-card:hover .icon {
    transform: scale(1.2) rotate(5deg);
    color: #60a5fa;
  }
  
  /* Reveal on scroll */
  .problem-card.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
  }
  
  /* team section */
  .team-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--color-bg-alt);
    position: relative;
  }
  
  .team-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  }
  
  .team-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
  }
  
  .team-intro {
    color: var(--color-text-muted);
    margin-bottom: 40px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .team-member-card {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  .team-member-card:hover::before {
    opacity: 1;
  }
  
  .team-member-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  
  .member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(59,130,246,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .team-member-card:hover .member-photo {
    border-color: var(--color-secondary);
    transform: scale(1.1);
  }
  
  .team-member-card:hover .member-photo::after {
    opacity: 1;
  }
  
  .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .team-member-card:hover .member-photo img {
    transform: scale(1.1);
  }
  
  .team-member-card h3 {
    margin: 10px 0 5px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
  }
  
  .member-role {
    color: var(--color-text-muted);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  .member-skills, .member-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.3s;
    position: relative;
    z-index: 1;
  }
  
  .member-skills span {
    background-color: var(--color-primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
  }
  
  .member-skills span:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  }
  
  .member-socials a {
    color: var(--color-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .member-socials a:hover {
    color: var(--color-primary);
    transform: translateY(-3px) scale(1.2);
  }
  
  .team-member-card:hover .member-skills,
  .team-member-card:hover .member-socials {
    opacity: 1;
  }
  
  /* SIH SECTION */
  .sih-section {
    padding: 80px 20px;
    background-color: var(--color-bg);
    position: relative;
  }
  
  .sih-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.05) 0%, transparent 30%),
      radial-gradient(circle at 90% 90%, rgba(139, 92, 246, 0.05) 0%, transparent 30%);
    pointer-events: none;
  }
  
  .sih-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .sih-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
  }
  
  .sih-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 50px;
    font-size: 1.2rem;
  }
  
  .sih-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .sih-left {
    flex: 1;
    min-width: 300px;
  }
  
  .sih-right {
    flex: 1;
    min-width: 300px;
  }
  
  .sih-card {
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .sih-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .sih-card:hover::before {
    left: 100%;
  }
  
  .sih-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
  
  .sih-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .sih-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
  }
  
  .sih-card ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .sih-card li {
    color: var(--color-text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
  }
  
  .sih-card li:before {
    content: "✓";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  .sih-timeline {
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
  }
  
  .sih-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(59,130,246,0.05), transparent);
    border-radius: 12px;
    animation: pulse 3s infinite;
  }
  
  .sih-timeline h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
  }
  
  .timeline-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-item:before {
    content: "";
    position: absolute;
    left: 70px;
    top: 30px;
    bottom: -20px;
    width: 2px;
    background-color: var(--color-primary);
    opacity: 0.5;
  }
  
  .timeline-item:last-child:before {
    display: none;
  }
  
  .timeline-date {
    min-width: 80px;
    font-weight: bold;
    color: var(--color-primary);
    margin-right: 20px;
    position: relative;
  }
  
  .timeline-date::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -10px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  .timeline-content {
    flex: 1;
  }
  
  .timeline-content h4 {
    margin-bottom: 5px;
    color: var(--color-text);
  }
  
  .timeline-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .sih-content {
      flex-direction: column;
    }
    
    .timeline-item:before {
      left: 60px;
    }
  }
  
  /* VISION SECTION */
  .vision-section {
    padding: 80px 20px;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
  }
  
  .vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.1) 0%, transparent 30%),
      radial-gradient(circle at 10% 90%, rgba(139, 92, 246, 0.1) 0%, transparent 30%);
    pointer-events: none;
  }
  
  .vision-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .vision-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 50px;
  }
  
  .vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .vision-card {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  
  .vision-card:hover::before {
    transform: scaleX(1);
  }
  
  .vision-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  }
  
  .vision-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.5s ease;
  }
  
  .vision-card:hover .vision-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--color-secondary);
  }
  
  .vision-card h3 {
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .vision-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
  }
  
  .vision-card ul {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
  }
  
  .vision-card li {
    color: var(--color-text-muted);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
  }
  
  .vision-card li:hover {
    color: var(--color-text);
    transform: translateX(5px);
  }
  
  .vision-card li:before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
  }
  
  .values-section h3 {
    text-align: center;
    color: var(--color-text);
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .value-item {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .value-item:hover::before {
    opacity: 1;
  }
  
  .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  .value-item h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
  }
  
  .value-item p {
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
  }
  
  /* CONTACT SECTION */
  .contact-section {
    padding: 80px 20px;
    background-color: var(--color-bg);
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 30%),
      radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 30%);
    pointer-events: none;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .contact-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
  }
  
  .contact-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
  }
  
  .contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .contact-info {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    transform: translateX(10px);
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover .contact-icon {
    background-color: var(--color-secondary);
    transform: scale(1.1) rotate(5deg);
  }
  
  .contact-details h4 {
    color: var(--color-text);
    margin-bottom: 5px;
  }
  
  .contact-details p {
    color: var(--color-text-muted);
  }
  
  .social-links {
    margin-top: 40px;
  }
  
  .social-links h4 {
    color: var(--color-text);
    margin-bottom: 15px;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 1.2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  .social-icons a:hover::before {
    opacity: 1;
  }
  
  .social-icons a:hover {
    color: white;
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .social-icons a i {
    position: relative;
    z-index: 1;
  }
  
  .form-group {
    margin-bottom: 20px;
    position: relative;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--color-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
    transform: translateY(-2px);
  }
  
  .form-group textarea {
    resize: vertical;
  }
  
  .contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
  }
  
  .contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.4s ease;
  }
  
  .contact-form button:hover::before {
    left: 100%;
  }
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
  }
  
  .shake {
    animation: shake 0.5s;
  }
  
  @media (max-width: 768px) {
    .contact-content {
      flex-direction: column;
    }
  }
  
  /* FOOTER */
  .footer {
    background-color: var(--color-bg-alt);
    padding: 50px 20px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
  
  .footer-logo h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    color: var(--color-text-muted);
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-left: auto;
  }
  
  .footer-column h4 {
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  
  .footer-column li:hover {
    transform: translateX(5px);
  }
  
  .footer-column a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column a:hover {
    color: var(--color-primary);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero h3 {
      font-size: 1.4rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .footer-content {
      flex-direction: column;
    }
    
    .footer-links {
      margin-left: 0;
    }
  }
  
  /* Animation classes */
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
  
  .animate-pulse {
    animation: pulse 2s ease-in-out infinite;
  }
  
  .animate-rotate {
    animation: rotate 10s linear infinite;
  }
  
  .animate-bounce {
    animation: bounce 2s infinite;
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Scrollbar styling */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--color-bg);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
  }