 * {
      font-family: 'Cairo', sans-serif;
    }

    body {
      overflow-x: hidden;
    }

    :root {
      --primary: #1a5f7a;
      --secondary: #159895;
      --accent: #57c5b6;
      --gold: #d4af37;
      --dark: #0f3d4f;
      --danger: #e74c3c;
    }

    /* Navbar Styles */
    .navbar {
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      padding: 1rem 0;
      transition: all 0.3s;
    }

    .navbar-brand {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--gold) !important;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
      color: white !important;
      margin: 0 15px;
      font-weight: 600;
      position: relative;
      transition: all 0.3s;
    }

    .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: -5px;
      right: 0;
      background: var(--gold);
      transition: width 0.3s;
    }

    .nav-link:hover:after {
      width: 100%;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
      animation: wave 15s linear infinite;
    }

    @keyframes wave {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 900;
      color: white;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
      animation: fadeInUp 1s;
    }

    .hero p {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.95);
      animation: fadeInUp 1.2s;
    }

    .floating-icon {
      position: absolute;
      font-size: 3rem;
      color: rgba(255, 255, 255, 0.1);
      animation: float 6s ease-in-out infinite;
    }

    .floating-icon:nth-child(1) {
      top: 10%;
      right: 10%;
      animation-delay: 0s;
    }

    .floating-icon:nth-child(2) {
      top: 60%;
      right: 15%;
      animation-delay: 2s;
    }

    .floating-icon:nth-child(3) {
      bottom: 20%;
      left: 10%;
      animation-delay: 4s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-30px);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Stats Section */
    .stats {
      background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
      padding: 80px 0;
    }

    .stat-card {
      text-align: center;
      color: white;
      padding: 30px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      transition: all 0.4s;
      animation: fadeIn 1s;
    }

    .stat-card:hover {
      transform: translateY(-15px) scale(1.05);
      background: rgba(255, 255, 255, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--gold);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .stat-icon {
      font-size: 4rem;
      margin-bottom: 20px;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    /* Vision & Mission */
    .vision-mission {
      padding: 100px 0;
      background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    }

    .section-title {
      font-size: 3rem;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 50px;
      position: relative;
      display: inline-block;
    }

    .section-title:after {
      content: '';
      position: absolute;
      bottom: -15px;
      right: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--gold), var(--accent));
      border-radius: 5px;
    }

    .vision-card,
    .mission-card {
      background: white;
      padding: 50px;
      border-radius: 30px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
      transition: all 0.4s;
      border: 3px solid transparent;
      animation: fadeInRight 1.2s;
    }

    .vision-card:hover,
    .mission-card:hover {
      transform: translateY(-20px);
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
      border-color: var(--gold);
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Levels Section */
    .levels {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
      color: white;
    }

    .level-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: 20px;
      margin-bottom: 30px;
      border-right: 5px solid var(--gold);
      transition: all 0.4s;
      animation: fadeIn 1s;
      animation-fill-mode: both;
    }

    .level-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .level-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .level-card:nth-child(3) {
      animation-delay: 0.3s;
    }

    .level-card:nth-child(4) {
      animation-delay: 0.4s;
    }

    .level-card:nth-child(5) {
      animation-delay: 0.5s;
    }

    .level-card:nth-child(6) {
      animation-delay: 0.6s;
    }

    .level-card:nth-child(7) {
      animation-delay: 0.7s;
    }

    .level-card:nth-child(8) {
      animation-delay: 0.8s;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.8);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .level-card:hover {
      transform: translateX(-15px);
      background: rgba(255, 255, 255, 0.2);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .level-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 15px;
    }

    .level-hours {
      font-size: 1.2rem;
      color: var(--accent);
      font-weight: 600;
    }

    /* Programs Section */
    .programs {
      padding: 100px 0;
      background: #f8f9fa;
    }

    .program-card {
      background: white;
      padding: 40px;
      border-radius: 25px;
      text-align: center;
      transition: all 0.4s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 100%;
      animation: zoomIn 0.8s;
    }

    @keyframes zoomIn {
      from {
        opacity: 0;
        transform: scale(0.5);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .program-card:hover {
      transform: translateY(-20px) rotate(2deg);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
      color: white;
    }

    .program-icon {
      font-size: 4rem;
      color: var(--primary);
      margin-bottom: 25px;
      transition: all 0.4s;
    }

    .program-card:hover .program-icon {
      color: white;
      transform: scale(1.2) rotate(360deg);
    }

    /* Pricing Section */
    .pricing {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    }

    .price-card {
      background: white;
      padding: 50px;
      border-radius: 30px;
      text-align: center;
      transition: all 0.4s;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }
    }

    .price-card:hover {
      transform: translateY(-30px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    }

    .price {
      font-size: 4rem;
      font-weight: 900;
      color: var(--primary);
      margin: 30px 0;
    }

    .currency {
      font-size: 2rem;
      color: var(--gold);
    }

    /* CTA Button */
    .btn-custom {
      background: linear-gradient(135deg, var(--gold) 0%, #b8930c 100%);
      color: white;
      padding: 18px 50px;
      border-radius: 50px;
      font-size: 1.3rem;
      font-weight: 700;
      border: none;
      box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
      transition: all 0.4s;
      animation: glow 2s infinite;
    }

    @keyframes glow {

      0%,
      100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
      }

      50% {
        box-shadow: 0 10px 50px rgba(212, 175, 55, 0.8);
      }
    }

    .btn-custom:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
      background: linear-gradient(135deg, #b8930c 0%, var(--gold) 100%);
    }

    /* Footer */
    .footer {
      background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
      color: white;
      padding: 60px 0 30px;
    }

    .footer-icon {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .social-icon {
      font-size: 2rem;
      color: white;
      margin: 0 15px;
      transition: all 0.3s;
    }

    .social-icon:hover {
      color: var(--gold);
      transform: translateY(-10px) rotate(360deg);
    }

    /* Scroll Animations */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s;
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }