* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    background-color: #0A1F44;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
  }

  header {
    background-color: rgba(10, 31, 68, 0.95);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #5FA8D3;
    text-decoration: none;
    transition: transform 0.3s;
  }

  .logo:hover {
    transform: scale(1.03);
  }

  .logo img {
    height: 45px;
    margin-right: 12px;
  }

  nav {
    display: flex;
    gap: 2rem;
  }

  nav a {
    text-decoration: none;
    color: #AFCBFF;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.1rem;
  }

  nav a:hover {
    color: #ffffff;
  }

  nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #5FA8D3;
    transition: width 0.3s;
  }

  nav a:hover::after {
    width: 100%;
  }

  .hero-section {
    background: linear-gradient(135deg, #0A1F44 0%, #1A2E60 100%);
    padding: 6rem 2rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
  }

  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }

  .hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .hero-section h1 span {
    color: #5FA8D3;
  }

  .hero-section p {
    font-size: 1.3rem;
    color: #AFCBFF;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #5FA8D3, #3D7BAA);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(95, 168, 211, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(95, 168, 211, 0.6);
    background: linear-gradient(45deg, #3D7BAA, #5FA8D3);
  }

  .cta-button:active {
    transform: translateY(1px);
  }

  .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  .cta-button:hover::after {
    transform: translateX(100%);
  }

  .admission-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #0E2449;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5FA8D3, #3D7BAA);
    border-radius: 2px;
  }

  .section-subtitle {
    font-size: 1.3rem;
    color: #AFCBFF;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
  }

  .admission-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
  }

  .service-item {
    background: linear-gradient(145deg, #1A2E60, #0E2449);
    padding: 2.5rem;
    border-radius: 15px;
    width: 320px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(95, 168, 211, 0.1);
    position: relative;
    overflow: hidden;
  }

  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(95, 168, 211, 0.3);
  }

  .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #5FA8D3, #3D7BAA);
  }

  .service-item h3 {
    color: #5FA8D3;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
  }

  .service-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #5FA8D3;
  }

  .service-item ul {
    color: #AFCBFF;
    list-style-type: none;
    margin-bottom: 2rem;
  }

  .service-item ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
  }

  .service-item ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #5FA8D3;
  }

  .service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 1.5rem;
    border-radius: 10px;
    transition: transform 0.4s;
  }

  .service-item:hover img {
    transform: scale(1.05);
  }

  .cta-section {
    background: linear-gradient(135deg, #1A2E60 0%, #0A1F44 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/dots.png') repeat;
    opacity: 0.1;
    pointer-events: none;
  }

  .cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: rgba(10, 31, 68, 0.7);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(95, 168, 211, 0.2);
    backdrop-filter: blur(5px);
  }

  .cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
  }

  .cta-container p {
    font-size: 1.2rem;
    color: #AFCBFF;
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }

  footer {
    background-color: #06152F;
    text-align: center;
    padding: 3rem 2rem;
    font-size: 1rem;
    color: #AFCBFF;
    position: relative;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #5FA8D3;
    margin-bottom: 1.5rem;
  }

  .footer-logo img {
    height: 40px;
    margin-right: 10px;
  }

  .footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .footer-info div {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
  }

  .footer-info h3 {
    color: #5FA8D3;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .footer-info p, .footer-info a {
    color: #AFCBFF;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-info a:hover {
    color: white;
  }

  .social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .social-links a {
    color: #AFCBFF;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
  }

  .social-links a:hover {
    color: #5FA8D3;
    transform: translateY(-3px);
  }

  .copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #1A2E60;
    width: 100%;
  }

  /* Floating animation */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }

  .floating {
    animation: float 6s ease-in-out infinite;
  }

  /* Responsive Design */
  @media screen and (max-width: 1024px) {
    .hero-section h1 {
      font-size: 3rem;
    }
    
    .section-title {
      font-size: 2.5rem;
    }
  }

  @media screen and (max-width: 768px) {
    header {
      flex-direction: column;
      padding: 1.5rem;
    }
    
    nav {
      margin-top: 1.5rem;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .hero-section {
      padding: 4rem 1.5rem 6rem;
    }
    
    .hero-section h1 {
      font-size: 2.5rem;
    }
    
    .hero-section p {
      font-size: 1.1rem;
    }
    
    .section-title {
      font-size: 2.2rem;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
    }
    
    .service-item {
      width: 100%;
      max-width: 400px;
    }
    
    .cta-container {
      padding: 2rem;
    }
    
    .cta-container h2 {
      font-size: 2rem;
    }
  }

  @media screen and (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }
    
    .logo img {
      height: 35px;
    }
    
    .hero-section h1 {
      font-size: 2rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .cta-button {
      padding: 1rem 2rem;
      font-size: 1.1rem;
    }
    
    .service-item {
      padding: 2rem 1.5rem;
    }
    
    .cta-container {
      padding: 1.5rem;
    }
    
    .cta-container h2 {
      font-size: 1.8rem;
    }
    
    .cta-container p {
      font-size: 1rem;
    }
  }