body {
    background: #1a1241;
    color: white;
  }
  
  .btn-primary {
    background-color: #5751d9;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #6d68ff;
  }
  
  .btn-outline-light {
    color: #ffffff;
    border-color: #5751d9;
  }
  
  .btn-outline-light:hover {
    background-color: #5751d9;
    color: white;
  }
  
  .hero-section {
    background: linear-gradient(120deg, #241857 0%, #3a2e7b 50%, #6e8adf 100%);
    border-radius: 3rem;
    box-shadow: 0 12px 48px 0 rgba(31, 38, 135, 0.18);
    position: relative;
    overflow: hidden;
    padding: 3.5rem 2rem;
    margin: 2rem 0;
    min-height: 480px;
    display: flex;
    align-items: center;
  }
  
  .hero-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2.5rem;
  }
  
  .hero-img img {
    border: 6px solid #fff;
    box-shadow: 0 8px 32px rgba(117,151,222,0.18), 0 0 0 10px rgba(255,255,255,0.10);
    z-index: 1;
    position: relative;
    width: 370px;
    height: 370px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
  }
  
  .hero-text {
    min-width: 350px;
    max-width: 700px;
    margin-left: auto;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #fff;
    text-shadow: 0 4px 24px rgba(43,16,85,0.18), 0 1px 0 #fff2;
    margin-bottom: 0.5rem;
  }
  
  .typed-text {
    font-size: 1.6rem;
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
    min-height: 2.2rem;
    margin-bottom: 2.2rem;
    text-align: left;
    display: block;
  }
  
  .hero-text .btn {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 2.5rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(117,151,222,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    margin-right: 1.2rem;
    margin-bottom: 0;
  }
  
  .hero-text .btn:last-child {
    margin-right: 0;
  }
  
  .hero-text .btn-primary {
    background: linear-gradient(90deg, #6e8adf 0%, #241857 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(117,151,222,0.12);
  }
  
  .hero-text .btn-primary:hover {
    background: linear-gradient(90deg, #241857 0%, #6e8adf 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(117,151,222,0.18);
  }
  
  .hero-text .btn-outline-light {
    border: 2.5px solid #fff;
    color: #fff;
    background: transparent;
    font-weight: 700;
  }
  
  .hero-text .btn-outline-light:hover {
    background: #fff;
    color: #241857;
    box-shadow: 0 8px 32px rgba(117,151,222,0.10);
    border-color: #6e8adf;
  }
  
  @media (max-width: 991px) {
    .hero-section {
      flex-direction: column;
      text-align: center;
      padding: 2rem 1rem;
      min-height: unset;
    }
    .hero-img {
      margin-right: 0;
      margin-bottom: 2rem;
    }
    .hero-img img {
      width: 180px !important;
      height: 180px !important;
    }
    .hero-text {
      padding: 1.5rem 1rem;
      min-width: unset;
      max-width: 100%;
      margin-left: 0;
    }
    .hero-text h1 {
      font-size: 2.2rem;
    }
    .typed-text {
      font-size: 1.1rem;
      text-align: center;
    }
  }
  
  .about-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 3rem 1rem;
    background: transparent;
  }
  
  .about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .about-desc {
    max-width: 900px;
    font-size: 1.45rem;
    color: #f3f3f3;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
  }
  
  .about-title.animate-fade-in-up {
    animation-delay: 0.2s;
  }
  
  .about-desc.animate-fade-in-up {
    animation-delay: 0.5s;
  }
  
  .megahive-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 3rem 1rem;
    background: linear-gradient(120deg, #241857 0%, #3a2e7b 50%, #6e8adf 100%);
  }
  
  .megahive-title {
    margin-top: 50px;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .megahive-desc {
    max-width: 900px;
    font-size: 1.45rem;
    color: #f3f3f3;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto 2.5rem auto;
  }
  
  .megahive-btn {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #38b6ff 0%, #5f4bb6 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(56,182,255,0.18);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    margin-top: 1.2rem;
    display: inline-block;
  }
  
  .megahive-btn:hover {
    background: linear-gradient(90deg, #5f4bb6 0%, #38b6ff 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(56,182,255,0.22);
  }
  
  .projects-section {
    background: linear-gradient(120deg, #23233a 0%, #29294a 100%);
    padding: 5rem 0 4rem 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .projects-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3.2rem;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .projects-carousel {
    display: flex;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    min-height: 320px;
  }
  
  .project-card {
    flex: 0 0 32%;
    background: linear-gradient(135deg, #2b1055 0%, #3a2e7b 100%);
    border-radius: 2rem;
    box-shadow: 0 4px 32px rgba(31, 38, 135, 0.13);
    color: #fff;
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid rgba(255,255,255,0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
    min-height: 260px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s;
  }
  
  .project-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
  }
  
  .project-card p {
    font-size: 1.08rem;
    font-weight: 500;
    color: #e0e0e0;
  }
  
  @media (max-width: 991px) {
    .projects-carousel {
      gap: 1.2rem;
    }
    .project-card {
      flex: 0 0 48%;
      min-height: 200px;
      padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
  }
  
  @media (max-width: 600px) {
    .projects-carousel {
      gap: 0.5rem;
    }
    .project-card {
      flex: 0 0 98%;
      min-height: 160px;
      padding: 1rem 0.5rem 1rem 0.5rem;
    }
  }
  
  .events-section {
    background: linear-gradient(120deg, #2b1055 0%, #3a2e7b 100%);
    padding: 5rem 0 4rem 0;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .events-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .events-carousel {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 1rem;
    justify-content: flex-start;
    align-items: center;
    scrollbar-width: none;
  }
  .events-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .event-img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 2.2rem;
    box-shadow: 0 4px 32px rgba(31, 38, 135, 0.13);
    background: #fff;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .event-img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 40px rgba(117,151,222,0.18);
  }
  
  @media (max-width: 1200px) {
    .event-img {
      width: 260px;
      height: 260px;
    }
  }
  @media (max-width: 800px) {
    .event-img {
      width: 180px;
      height: 180px;
    }
    .events-carousel {
      gap: 1rem;
    }
  }
  
  .events-title.animate-fade-in-up, .events-carousel.animate-fade-in-up {
    animation-delay: 0.2s;
  }
  
  .testimonials-section {
    background: linear-gradient(120deg, #29294a 0%, #2b1055 100%);
    padding: 5rem 0 4rem 0;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .testimonials-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .testimonials-cards::-webkit-scrollbar {
    display: none;
  }
  
  .testimonial-card {
    flex: 0 0 32%;
    background: linear-gradient(135deg, #3a2e7b 0%, #2b1055 100%);
    border-radius: 2rem;
    box-shadow: 0 4px 32px rgba(31, 38, 135, 0.13);
    color: #fff;
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid rgba(255,255,255,0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 340px;
    min-height: 180px;
    font-size: 1.18rem;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s;
    margin-bottom: 0;
  }
  
  .testimonial-card span {
    display: block;
    margin-top: 1.2rem;
    font-size: 1rem;
    color: #bdbdf7;
    font-weight: 400;
  }
  
  @media (max-width: 991px) {
    .testimonials-cards {
      gap: 1.2rem;
    }
    .testimonial-card {
      flex: 0 0 80%;
      min-width: 280px;
      min-height: 120px;
      padding: 1.2rem 0.7rem 1.2rem 0.7rem;
      font-size: 1.05rem;
    }
  }
  
  .testimonials-title.animate-fade-in-up, .testimonial-card.animate-fade-in-up {
    animation-delay: 0.2s;
  }
  
  .blogs-section {
    background: linear-gradient(120deg, #23233a 0%, #29294a 100%);
    padding: 5rem 0 4rem 0;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .blogs-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .blogs-carousel {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 1rem;
    justify-content: flex-start;
    align-items: center;
    scrollbar-width: none;
  }
  .blogs-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .blog-card {
    width: 340px;
    min-width: 340px;
    background: linear-gradient(135deg, #23233a 0%, #18171c 100%);
    border-radius: 2rem;
    box-shadow: 0 4px 32px rgba(31, 38, 135, 0.13);
    color: #fff;
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid rgba(255,255,255,0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.18rem;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s;
  }
  
  .blog-card span {
    display: block;
    margin-top: 1.2rem;
    font-size: 1rem;
    color: #bdbdf7;
    font-weight: 400;
  }
  
  .blog-meta {
    font-size: 0.98rem;
    color: #bdbdf7;
    font-weight: 500;
    margin-bottom: 1.1rem;
    letter-spacing: 0.2px;
    text-align: center;
  }
  
  @media (max-width: 1200px) {
    .blog-card {
      width: 260px;
      min-width: 260px;
    }
  }
  @media (max-width: 800px) {
    .blog-card {
      width: 180px;
      min-width: 180px;
      padding: 1.2rem 0.7rem 1.2rem 0.7rem;
      font-size: 1.05rem;
    }
    .blogs-carousel {
      gap: 1rem;
    }
  }
  
  .blogs-title.animate-fade-in-up, .blogs-carousel.animate-fade-in-up {
    animation-delay: 0.2s;
  }
  
  .contact-section {
    background: linear-gradient(120deg, #241857 0%, #3a2e7b 100%);
    padding: 5rem 0 4rem 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    background: rgba(255,255,255,0.07);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(31, 38, 135, 0.10);
    padding: 2.5rem 2rem 2.5rem 2rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .contact-form input,
  .contact-form textarea {
    background: rgba(30, 24, 60, 0.25);
    border: none;
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    color: #fff;
    font-size: 1.2rem;
    font-family: inherit;
    margin-bottom: 0.5rem;
    outline: none;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(117,151,222,0.08);
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    background: rgba(30, 24, 60, 0.35);
    box-shadow: 0 4px 16px rgba(117,151,222,0.15);
  }
  .contact-form button {
    align-self: flex-end;
    padding: 0.9rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #6e8adf 0%, #241857 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(117,151,222,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  }
  .contact-form button:hover {
    background: linear-gradient(90deg, #241857 0%, #6e8adf 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(117,151,222,0.18);
  }
  
  .contact-info {
    color: #e0e0e0;
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-info a {
    color: #7eaaff;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-info a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .contact-social {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .contact-social a {
    font-size: 2.3rem;
    color: #7eaaff;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    padding: 0.5rem 0.7rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-social a:hover {
    color: #fff;
    background: #7eaaff;
    box-shadow: 0 4px 16px rgba(117,151,222,0.18);
  }
  
  @media (max-width: 991px) {
    .contact-form {
      max-width: 98vw;
      padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
  }
  
  .hero-contact-icons {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    margin-top: 1.2rem;
  }
  .hero-contact-icons .contact-icon {
    font-size: 1.5rem;
    color: #fff;
    background: rgba(255,255,255,0.13);
    border-radius: 50%;
    padding: 0.7rem 1.1rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .hero-contact-icons .contact-icon:hover {
    color: #241857;
    background: #fff;
    box-shadow: 0 4px 24px rgba(117,151,222,0.18);
  }
  /* Default dark theme */
body.dark-theme {
  background-color: #1a1241;
  color: #ffffff;
}
body.dark-theme .btn-primary {
  background-color: #5751d9;
  color: #ffffff;
}
body.dark-theme .btn-outline-light {
  color: #ffffff;
  border-color: #5751d9;
}

/* Light theme */
body.light-theme {
  background-color: #ffffff;
  color: #1a1241;
}
body.light-theme .btn-primary {
  background-color: #1a1241;
  color: #ffffff;
}
body.light-theme .btn-outline-light {
  color: #1a1241;
  border-color: #1a1241;
}
body.light-theme #themeIcon {
  color: #1a1241; /* dark icon in light mode */
}

body.dark-theme #themeIcon {
  color: white; /* white icon in dark mode */
}

  