
    :root {
      --orange:white;
      --teal: #110f9e;
      --light: #f8fdff;
      --gray: #666;
    }

    /* Header */
    .navbar{
    background-color: #110f9e;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:10vh;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}
.nav-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(30px);
}
.logo{
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu{
    display: flex;
    gap: 20px;
    list-style: none;
}
.nav-menu a{
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.nav-menu a:hover{
    color: rgb(185, 56, 56);
}
.hamburger{
    display: none;
    flex-direction: column;
    cursor:pointer;
    gap: 5px;
}
.hamburger span{
    width: 30px;
    height: 5px;
    background: white;
    border-radius: 3px;
    transition: all o.3 ease;   
}
 .hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2){
     opacity: 0;
}
.hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(7px, -6px);
}
@media(max-width: 768px){
    .hamburger{
        display:flex;
    }
    .nav-menu{
        position: fixed;
        border:black ;
        top: 105px;
        left: -100%;
        height: 100vh;
        width: 200px;
        background:#110f9e;
        backdrop-filter:rgba(0,0,0,0.6) blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.6s ease;
        z-index: 1000;
    }
    .nav-menu.active{
        left: 0;
    }
    .nav-menu li{
        margin: 1.5rem 0;
    }
    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem;
    }
}

    /* Hero */
    .hero {
      position: relative;
      height: 80vh;
      min-height: 600px;
      
      background: linear-gradient(rgba(25, 10, 80, 0.85), rgba(5, 2, 51, 0.9)),
                  url(image5.jpg) center/cover;
      background-image: fill 0 linear-gradient(#0001, #000);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-content {
      max-width: 800px;
      padding: 0 20px;
    }
    .hero h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bolder;
    }
    .hero p {
      font-size: 1.4rem;
      margin-bottom: 40px;
    }
    
    /* Quick Links */
    .quick-links {
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 60px 20px;
      background: var(--light-gray);
    }
    .quick-card {
      text-align: center;
      max-width: 300px;
    }
    .quick-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }
    .quick-card h3 {
      color: var(--primary);
      margin-bottom: 10px;
    }

    /* Who We Are */
    .who-we-are {
      display: flex;
      align-items: center;
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      gap: 60px;
      flex-wrap: wrap;
    }
    .who-we-are img {
      flex: 1;
      min-width: 300px;
      border-radius: 10px;
    }
    .who-content {
      flex: 1;
      min-width: 300px;
    }
    .who-content h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }
    .who-content p {
      margin-bottom: 20px;
      font-size: 1.1rem;
    }
    .btn.small {
      padding: 10px 20px;
      font-size: 0.95rem;
    }

    /* Testimonial */
    .testimonial {
      background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
      background-attachment: fixed;
      color: white;
      text-align: center;
      padding: 100px 20px;
      position: relative;
    }
    .testimonial::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 48, 135, 0.8);
    }
    .testimonial-content {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }
    .testimonial q {
      font-size: 1.8rem;
      font-style: italic;
      display: block;
      margin-bottom: 20px;
    }
    .testimonial cite {
      font-size: 1.1rem;
    }

    /* News & Events */
    .news-events {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      text-align: center;
    }
    .news-events h2 {
      color: var(--primary);
      margin-bottom: 50px;
      font-size: 2.5rem;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .news-item {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      text-align: left;
    }
    .news-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .news-body {
      padding: 20px;
    }
    .news-body h3 {
      color: var(--primary);
      margin-bottom: 10px;
    }
    .date {
      color: var(--gold);
      font-weight: bold;
      font-size: 0.9rem;
    }

    /* CTA */
    .cta {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }
    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }





    /* about */
    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Poppins', 'Segoe UI', sans-serif;
      line-height: 1.7;
      color: #333;
    }
    a { text-decoration: none; }

    /* Header */
    .navigation{
    background-color: #110f9e;
    position: fixed;
    top: 0;
    left: 0;
    width: 45%;
    height:10vh;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}
.navigation-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(30px);
}
.logo{
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
}

.navigation-menu{
    display: flex;
    gap: 20px;
    list-style: none;
}
.navigation-menu a{
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.navigation-menu a:hover{
    color: rgb(185, 56, 56);
}
.hamburger{
    display: none;
    flex-direction: column;
    cursor:pointer;
    gap: 5px;
}
.hamburger span{
    width: 30px;
    height: 5px;
    background: white;
    border-radius: 3px;
    transition: all o.3 ease;   
}
 .hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2){
     opacity: 0;
}
.hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(7px, -6px);
}
@media(max-width: 768px){
    .hamburger{
        display:flex;
    }
    .navigation-menu{
        position: fixed;
        border:black ;
        top: 100px;
        left: -100%;
        height: 100vh;
        width: 200px;
        background:#110f9e;
        backdrop-filter:rgba(0,0,0,0.6) blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.6s ease;
        z-index: 1000;
    }
    .navigation-menu.active{
        left: 0;
    }
    .navigation-menu li{
        margin: 1.5rem 0;
    }
    .navigation-menu a {
        font-size: 1.5rem;
        padding: 1rem;
    }
}

    /* Hero */
    .hero {
      height: 90vh;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
                  url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    .hero h1 {
      font-size: 4.5rem;
      font-weight: 300;
    }

    /* Intro Section */
    .intro {
      padding: 100px 20px;
      text-align: center;
      background: white;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .badge {
      display: inline-block;
      background: var(--red);
      color: white;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }
    .intro h2 {
      font-size: 3rem;
      color: var(--dark);
      margin-bottom: 30px;
    }
    .features {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin: 60px 0;
    }
    .feature-card {
      background: white;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      width: 300px;
      text-align: center;
    }
    .feature-card i {
      font-size: 2.5rem;
      color: var(--red);
      margin-bottom: 15px;
    }
    .feature-card h3 {
      margin: 15px 0;
      color: var(--dark);
    }

    /* Images Section */
    .images {
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }
    .main-img {
      max-width: 900px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    @media (max-width: 768px) {
      .main-img {
        max-width: 100%;
      }
    }

    /* Team Section */
    .team {
      padding: 100px 20px;
      background: var(--light);
      text-align: center;
    }
    .team h2 {
      font-size: 3rem;
      color: var(--dark);
      margin-bottom: 20px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-top: 60px auto;
      max-width: 1200px;
    }
    .member {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .member img {
      width: 100%;
      height: 550px;
      object-fit: cover;
    }
    .member-info {
      padding: 25px;
    }
    .member-name {
      font-size: 1.4rem;
      margin-bottom: 8px;
    }
    .member-role {
      background: var(--red);
      color: white;
      display: inline-block;
      padding: 8px 25px;
      border-radius: 30px;
      font-size: 0.9rem;
      margin: 10px 0;
    }
    .social-links a {
      margin: 0 8px;
      color: #999;
      font-size: 1.2rem;
    }

    





    
    /* program */
    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Poppins', 'Segoe UI', sans-serif;
      line-height: 1.7;
      color: #333;
      background: #f8fdff;
    }
    a { text-decoration: none; color: inherit; }

    /* Top Bar */
    .topbar {
      background: linear-gradient(135deg, var(--orange), #ff8a65);
      color: white;
      padding: 8px 0;
      font-size: 0.95rem;
    }
    .topbar .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .social a { margin-left: 15px; }

    /* Header */

    /* Hero */
    .hero {
      height: 500px;
      background: linear-gradient(rgba(165, 143, 247, 0.85), rgba(5, 2, 51, 0.9)),
                  url(image5.jpg) center/cover;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }
    .hero h1 {
      font-size: 4rem;
      margin-bottom: 20px;
    }
    .breadcrumb {
      background: var(--orange);
      color: white;
      padding: 10px 30px;
      border-radius: 30px;
      display: inline-flex;
      gap: 10px;
    }

    /* Courses Grid */
    .courses {
      padding: 100px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }
    .course-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .course-card:hover {
      transform: translateY(-10px);
    }
    .course-img {
      position: relative;
    }
    .course-img img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .course-body {
      padding: 25px;
    }
    .course-body h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
      color: var(--teal);
    }
    .course-body p {
      color: var(--gray);
      margin-bottom: 20px;
    }
    
    .read-more i { margin-left: 8px; }

    /* Footer */
    footer {
      background: var(--teal);
      color: white;
      padding: 80px 20px 30px;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    .footer-col h4 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      background: var(--orange);
    }
    .footer-col a {
      display: block;
      color: #ddd;
      margin-bottom: 10px;
    }
    .footer-col a:hover { color: var(--orange); }
    .contact-info p {
      margin-bottom: 12px;
    }
    .contact-info i {
      color: var(--orange);
      margin-right: 10px;
    }
    .copyright {
      text-align: center;
      padding: 30px 0;
      background: var(--orange);
      color:black;
      margin-top: 50px;
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 2.8rem; }
      .topbar .container, .header-inner { flex-direction: column; gap: 10px; text-align: center; }
      .nav { margin: 10px 0; }
    }








    /* contact */
    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }
    a { text-decoration: none; }
    /*navbar*/
     .navigator{
    background-color: #110f9e;
    position: fixed;
    top: 0;
    left: 0;
    width: 31%;
    height:10vh;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}
.navigator-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(30px);
}
.logo{
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
}

.navigator-menu{
    display: flex;
    gap: 20px;
    list-style: none;
}
.navigator-menu a{
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.navigator-menu a:hover{
    color: rgb(185, 56, 56);
}
.hamburger{
    display: none;
    flex-direction: column;
    cursor:pointer;
    gap: 5px;
}
.hamburger span{
    width: 30px;
    height: 5px;
    background: white;
    border-radius: 3px;
    transition: all o.3 ease;   
}
 .hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2){
     opacity: 0;
}
.hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(7px, -6px);
}
@media(max-width: 768px){
    .hamburger{
        display:flex;
    }
    .navigator-menu{
        position: fixed;
        border:black ;
        top: 100px;
        left: -100%;
        height: 100vh;
        width: 200px;
        background:#110f9e;
        backdrop-filter:rgba(0,0,0,0.6) blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.6s ease;
        z-index: 1000;
    }
    .navigator-menu.active{
        left: 0;
    }
    .navigator-menu li{
        margin: 1.5rem 0;
    }
    .navigator-menu a {
        font-size: 1.5rem;
        padding: 1rem;
    }
}


    /* Hero Section */
    .hero {
      position: relative;
      height: 500px;
     border-image: fill 0 linear-gradient(#0001, #000);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .hero h1 {
      font-size: 4.5rem;
      font-weight: 300;
      color: var(--orange);
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Contact Cards */
    .contact-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      padding: 80px 20px;
      background: white;
      margin-top: -80px;
      position: relative;
      z-index: 2;
    }
    .card {
      background: white;
      padding: 40px 30px;
      width: 320px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: 10px;
      transition: transform 0.3s;
    }
    .card:hover {
      transform: translateY(-10px);
    }
    .card-icon {
      font-size: 3rem;
      color: var(--orange);
      margin-bottom: 20px;
    }
    .card h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: var(--dark);
    }
    .card p {
      color: var(--gray-text);
      margin-bottom: 15px;
    }
    .highlight {
      color: var(--orange);
      font-weight: bold;
      font-size: 1.1rem;
    }

    /* Map Section */
    @media(max-width: 768px) {
      .map-container iframe {
        height: 300px;
        width: 100%;
      }
    }

    /* Footer Social */
    