
  body {
    font-family: 'Segoe UI', sans-serif;
  }

  /* Top Bar */
  .top-bar {   
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
    text-align: center;
  }

  .theme-bg-color{
       background-color: #283593; 
    /* background-color: #ea6e39; */
  }

   .theme-text-color{
    font-size: 32px;
    color: #fff;
  }

  /* Navbar */
  .navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
/*  .navbar-brand img {
    width: 90px;
    height: 90px;
  }*/

  .navbar-brand img {
  width: auto;
  height: 60px;
}

  .navbar-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a237e !important;
  }
  .navbar-nav {
    flex: 1;
    justify-content: center;
    gap: 14px;
  }
  
  
  /*for mobile */
  @media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}


  .nav-link {
    font-weight: 500;
    color: #333 !important;
    padding-bottom: 8px;
  }
  .nav-link:hover {
    color: #1a237e !important;
    border-bottom: 2px solid #283593;
    padding-bottom: 6px;
  }

  /* Dropdown */
/*  .dropdown-menu {
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }*/

  .dropdown-menu {
  background: #fff;
  border-radius: 12px;
    padding: 12px !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

  .dropdown-item:hover {
    background-color: #f1f3f6;
    color: #1a237e;
  }

  /* Mega Menu Desktop */
  @media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      width: 100% !important;
      left: 0;
      right: 0;
      border-radius: 0;
      margin-top: 0;
    }
  }

/*for mobile*/
@media (max-width: 991px) {
  .nav-item.dropdown .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0;
  }
}

  /* Dropdown Mobile */
  @media (max-width: 991px) {
    .nav-item.dropdown .dropdown-menu {
      position: static;
      width: 100%;
      margin-top: 0;
    }
  }

  /* Hero Section */
  .top-header3-section {
   background: linear-gradient(rgba(40,53,147,0.85), rgba(40,53,147,0.85)),
                url("https://images.unsplash.com/photo-1529101091764-c3526daf38fe?w=1600") center/cover no-repeat;
    /* background: linear-gradient(rgb(234 110 57), rgba(32, 23, 155, 0.85)) */
     
      /* ,url(https://images.unsplash.com/photo-1529101091764-c3526daf38fe?w=1600); */
      ;
    color: #fff;
    text-align: center;
    padding: 35px 20px;
    margin-top: 0px;
  }
  .top-header3-section h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
  }

  @media (max-width: 600px) {
    .top-header3-section {
      padding: 40px 15px;
    }
    .top-header3-section h3 {
      font-size: 22px;
      line-height: 32px;
    }
  }

  
 @media(max-width:600px)
  {
    .webimage{
      height:300px;
    }
  }

  /* Programs Section */
  .program-section {
    padding: 50px 20px;
    background: #f5f5f5;
  }
  .program-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .program-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
  .program-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .program-card h5 {
    font-weight: 600;
    color: #1a237e;
    margin-top: 15px;
  }
  .program-card .p-3 {
    flex: 1;
  }
  .program-card a.btn {
    border-radius: 25px;
    padding: 5px 18px;
    font-weight: 500;
  }

  /* Buttons */
  .btn-success {
    padding: 6px 18px;
    border-radius: 30px;
  }
  .btn:hover {
    transform: translateY(-2px);
    transition: 0.3s;
  }
  .btn-success:hover {
    background-color: #1b5e20;
  }

  .text-color{
    font-size: 24px;
    color: #283593 !important;
    margin-left:10px;
  }

  /* Footer */
  footer {
/*    background: #283593;*/     
    color: #fff;
    text-align: center;
    padding: 15px 0;
   
  }

/*  course style start*/
 .courses-section {
    /*  background: #f6f8ff;*/
    background: linear-gradient(#f1f5ff, #ffffff);
  }

.course-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a2a57;
}

.card-text {
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 15px;
}

.view-btn {
  background: #ff6a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease;
}

.view-btn:hover {
  background: #e45d00;
  color: #fff;
}


.course-meta {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.course-meta span i {
  color: #F86F1C;
  margin-right: 6px;
}

.btn-view {
  background: #0a2a57;
  color: #fff;
  border-radius: 25px;
  padding: 6px 18px;
  font-weight: 600;
  border: none;
}

.btn-view:hover {
  background: #051b38;
  color: #fff;
}

.btn-enquire {
  background: #F86F1C;
  color: #fff;
  border-radius: 25px;
  padding: 6px 18px;
  font-weight: 600;
  border: none;
}

.btn-enquire:hover {
  background: #d95c12;
  color: #fff;
}

/*------extra style start----*/
.swiper-button-prev,
.swiper-button-next {
  background: #ea6e39;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  color: #fff !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}

/*course style end*/


  /*Login css start */

    .glass-modal {
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 20px;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
    }

    .modal-header {
        border: none;
    }

    .form-control {
        border-radius: 10px;
    }

    .login-btn, .signup-btn {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        font-weight: 600;
    }

    .google-btn {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        background: #fff;
        color: #444;
        font-weight: 600;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .switch-link {
        color: #ffd700;
        cursor: pointer;
        font-weight: 600;
    }

/* Apply now css start */
  .apply-header {
    background-size: cover;
    background-position: center;
    color: #ea6e39;
    padding: 70px 0;
    text-align: center;
  }

  /* Form Card */
  .form-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    max-width: 700px;
    margin: -60px auto 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .form-box h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ea6e39;
  }

  .form-control {
    height: 48px;
    border-radius: 10px;
  }

  textarea.form-control {
    height: auto;
  }

  .submit-btn {
    background: #ea6e39;
    color: #fff;
    padding: 12px;
    width: 100%;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
  }

  .submit-btn:hover {
    background: #c95622;
  }