
    :root {
      --primary: #7C3AED;
      --secondary: #FF8A00;
      --light-purple: #F3E8FF;
      --light-orange: #FFF3E6;
      --dark: #1E1B4B;
      --text: #475569;
      --white: #ffffff;
      --success: #22C55E;
      --pink: #EC4899;
      --sky: #0EA5E9;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      overflow-x: hidden;
      background: #FAFAFF;
    }

    h1,h2,h3,h4,h5,h6 {
      font-family: 'Baloo 2', cursive;
      color: var(--dark);
    }

    .navbar {
      padding: 18px 0;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .navbar-brand {
      font-size: 30px;
      font-weight: 700;
      color: var(--primary);
    }

    .navbar-brand span {
      color: var(--secondary);
    }

    .nav-link {
      font-weight: 600;
      margin: 0 10px;
      color: var(--dark);
      transition: 0.3s;
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .header-contact {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px 14px;
      max-width: 420px;
      margin-right: 16px;
      font-size: 13px;
      line-height: 1.2;
    }

    .header-contact a {
      color: var(--dark);
      text-decoration: none;
      white-space: nowrap;
    }

    .header-contact a:hover {
      color: var(--primary);
    }

    .footer-contact-list {
      display: grid;
      gap: 8px;
    }

    .footer-contact-list a,
    .footer-contact-list span {
      color: inherit;
      text-decoration: none;
    }

    .btn-theme {
      background: linear-gradient(135deg, var(--primary), var(--pink));
      color: white;
      padding: 12px 28px;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      transition: 0.4s;
      box-shadow: 0 15px 25px rgba(124,58,237,0.25);
    }

    .btn-theme:hover {
      transform: translateY(-3px);
      color: white;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 100px;
      background:
        radial-gradient(circle at top left, rgba(124,58,237,0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,138,0,0.12), transparent 30%),
        #FAFAFF;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: linear-gradient(135deg, var(--primary), var(--pink));
      border-radius: 50%;
      top: -250px;
      right: -200px;
      opacity: 0.08;
    }

    .hero::after {
      content: '';
      position: absolute;
      width: 450px;
      height: 450px;
      background: linear-gradient(135deg, var(--secondary), #FFD166);
      border-radius: 50%;
      bottom: -200px;
      left: -150px;
      opacity: 0.08;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
      margin-bottom: 25px;
    }

    .hero h1 {
      font-size: 72px;
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 35px;
      max-width: 600px;
    }

    .hero-image {
      position: relative;
    }

    .hero-image img {
      width: 100%;
      border-radius: 40px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.12);
      position: relative;
      z-index: 2;
    }

    .floating-card {
      position: absolute;
      background: white;
      padding: 18px;
      border-radius: 25px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      z-index: 3;
      animation: float 4s ease-in-out infinite;
    }

    .floating-card h5 {
      margin: 0;
      font-size: 18px;
    }

    .floating-card p {
      margin: 0;
      font-size: 13px;
    }

    .card-1 {
      top: 10%;
      left: -10%;
    }

    .card-2 {
      bottom: 8%;
      right: -10%;
      animation-delay: 1s;
    }

    @keyframes float {
      0%,100% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
    }

    .stats {
      margin-top: 40px;
    }

    .stat-box h3 {
      font-size: 40px;
      color: var(--primary);
      margin-bottom: 0;
    }

    .stat-box p {
      margin: 0;
      font-size: 15px;
    }

    section {
      padding: 100px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-title span {
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 14px;
    }

    .section-title h2 {
      font-size: 54px;
      margin-top: 10px;
    }

    .feature-card {
      background: white;
      padding: 40px 30px;
      border-radius: 30px;
      transition: 0.4s;
      height: 100%;
      position: relative;
      overflow: hidden;
      border: 1px solid #f2f2f2;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      border-radius: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin-bottom: 25px;
    }

    .purple { background: var(--light-purple); color: var(--primary); }
    .orange { background: var(--light-orange); color: var(--secondary); }
    .pink { background: #FFE4F2; color: var(--pink); }
    .sky { background: #E0F2FE; color: var(--sky); }

    .feature-card h4 {
      margin-bottom: 15px;
      font-size: 28px;
    }

    .program-card {
      background: white;
      border-radius: 35px;
      overflow: hidden;
      transition: 0.4s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .program-card:hover {
      transform: translateY(-8px);
    }

    .program-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .program-content {
      padding: 30px;
    }

    .program-badge {
      display: inline-block;
      background: var(--light-purple);
      color: var(--primary);
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .cta-section {
      background: linear-gradient(135deg, var(--primary), #4F46E5);
      color: white;
      border-radius: 50px;
      padding: 80px 60px;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      top: -100px;
      right: -50px;
    }

    .cta-section h2,
    .cta-section p {
      color: white;
      position: relative;
      z-index: 2;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 20px;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 30px;
      position: relative;
      height: 280px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    .gallery-item {
      position: relative;
    }
    
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 30px;
    }
    
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    
    .gallery-overlay-content {
      text-align: center;
      color: white;
    }
    
    .gallery-overlay-content i {
      font-size: 2rem;
      margin-bottom: 10px;
      display: block;
    }
    
    .gallery-overlay-content span {
      font-size: 0.9rem;
      font-weight: 600;
    }
    
    /* Carousel Modal Styles */
    .carousel-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      animation: fadeIn 0.3s;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .carousel-modal-content {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .carousel-image-container {
      max-width: 90%;
      max-height: 90%;
      text-align: center;
    }
    
    .carousel-image {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 10px;
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    }
    
    .carousel-caption {
      color: white;
      text-align: center;
      margin-top: 20px;
      padding: 0 20px;
    }
    
    .carousel-caption h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    
    .carousel-caption p {
      font-size: 1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .carousel-close {
      position: absolute;
      top: 20px;
      right: 40px;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      padding: 10px 15px;
      border-radius: 50%;
      transition: background 0.3s;
    }
    
    .carousel-close:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 2rem;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      padding: 15px 20px;
      border-radius: 50%;
      transition: all 0.3s;
    }
    
    .carousel-nav:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    
    .carousel-prev {
      left: 20px;
    }
    
    .carousel-next {
      right: 20px;
    }
    
    .carousel-counter {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      background: rgba(0, 0, 0, 0.5);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
    }

    .announcement-card {
      background: white;
      border-radius: 20px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      border-left: 4px solid var(--primary);
      transition: all 0.3s;
    }

    .announcement-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .announcement-date {
      color: var(--primary);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .event-card {
      background: white;
      border-radius: 20px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      border-left: 4px solid var(--secondary);
      transition: all 0.3s;
    }

    .event-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .event-date {
      background: var(--light-orange);
      color: var(--secondary);
      padding: 8px 15px;
      border-radius: 15px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 10px;
    }

    .review-card {
      background: white;
      border: 1px solid #f2f2f2;
      border-radius: 30px;
      height: 100%;
      padding: 35px 30px;
      text-align: center;
      transition: 0.4s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }

    .review-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    }

    .review-icon {
      width: 72px;
      height: 72px;
      border-radius: 24px;
      background: var(--light-purple);
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 22px;
    }

    .review-icon.orange {
      background: var(--light-orange);
      color: var(--secondary);
    }

    .review-icon.sky {
      background: #E0F2FE;
      color: var(--sky);
    }

    .review-card p {
      min-height: 96px;
      margin-bottom: 18px;
      line-height: 1.7;
    }

    .reviews-carousel-wrapper {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      padding: 0 60px;
    }

    .reviews-carousel {
      overflow: hidden;
      position: relative;
    }

    .reviews-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      gap: 24px;
    }

    .reviews-track > div {
      flex: 0 0 100%;
      max-width: 100%;
    }

    .reviews-carousel-wrapper .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--primary);
      color: var(--primary);
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .reviews-carousel-wrapper .carousel-nav:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-50%) scale(1.1);
    }

    .reviews-carousel-wrapper .carousel-prev {
      left: 0;
    }

    .reviews-carousel-wrapper .carousel-next {
      right: 0;
    }

    .reviews-carousel-wrapper .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .reviews-carousel-wrapper .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #e0e0e0;
      border: 0;
      padding: 0;
      cursor: pointer;
      transition: all 0.3s;
    }

    .reviews-carousel-wrapper .carousel-dot.active {
      background: var(--primary);
      transform: scale(1.2);
    }

    @media (max-width: 768px) {
      .reviews-carousel-wrapper {
        padding: 0 40px;
      }

      .reviews-track > div {
        flex: 0 0 100%;
        max-width: 100%;
      }

      .reviews-carousel-wrapper .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }

    .review-name {
      color: var(--dark);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .review-stars {
      color: #FACC15;
      font-size: 20px;
      letter-spacing: 2px;
    }

    .feedback-panel {
      max-width: 760px;
      background: white;
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      border: 1px solid #f2f2f2;
    }

    .feedback-panel .form-control {
      border: 2px solid #EEF2F7;
      border-radius: 16px;
      padding: 13px 16px;
    }

    .feedback-panel .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(124,58,237,0.12);
    }

    .feedback-stars {
      display: flex;
      gap: 8px;
    }

    .feedback-stars button {
      width: 42px;
      height: 42px;
      border: 0;
      background: transparent;
      color: #D1D5DB;
      font-size: 32px;
      line-height: 1;
      padding: 0;
      transition: 0.2s;
    }

    .feedback-stars button.active,
    .feedback-stars button:hover {
      color: #FACC15;
      transform: translateY(-2px);
    }

    .feedback-success {
      display: none;
      text-align: center;
      padding: 30px 10px;
    }

    .feedback-success i {
      color: var(--success);
      font-size: 56px;
      margin-bottom: 18px;
    }

    .footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
    }

    .footer h4 {
      color: white;
      margin-bottom: 25px;
    }

    .footer a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      display: block;
      margin-bottom: 12px;
      transition: 0.3s;
    }

    .footer a:hover {
      color: white;
      padding-left: 5px;
    }

    .social-icons a {
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      color: white;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 50px;
      padding-top: 20px;
      text-align: center;
    }

    @media(max-width: 991px) {
      .hero {
        text-align: center;
      }

      .header-contact {
        justify-content: center;
        max-width: none;
        margin: 16px 0;
      }

      .hero h1 {
        font-size: 52px;
      }

      .hero-image {
        margin-top: 60px;
      }

      .card-1,
      .card-2 {
        display: none;
      }

      .gallery-grid {
        grid-template-columns: repeat(2,1fr);
      }
    }

    @media(max-width: 576px) {
      .hero h1 {
        font-size: 42px;
      }

      .section-title h2 {
        font-size: 38px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .cta-section {
        padding: 50px 30px;
        border-radius: 30px;
      }
    }
a{
    text-decoration: none;
}
  