 .btn-gradient {
    background: linear-gradient(90deg, #f7b500, #f85a00);
    color: #fff;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
    border-radius: 8px;
  }
  .btn-gradient:hover {
    background: linear-gradient(90deg, #f85a00, #f7b500);
    transform: translateY(-2px);
  }

  /* White Button */
  .btn-white {
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s ease;
  }
  .btn-white:hover {
    background: #f7b500;
    color: #002349;
  }

  /* Card Hover Effect */
  .card {
    transition: 0.3s ease;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }

  /* Notification Box */
  .notification-box {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    background: #002349;
    padding: 12px 16px;
  }

  .notification-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scroll-notification 20s linear infinite;
  }

  .notification-box:hover ul {
    animation-play-state: paused;
  }

  .notification-box li {
    padding: 10px 0;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
  }

  .notification-box li a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    width: 100%;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.3s ease;
  }

  .notification-box li a:hover {
    background: #f7b500;
    color: #002349;
    transform: translateX(5px);
  }

  .notification-box .notif-no {
    font-weight: 700;
    color: #f7b500;
    min-width: 20px;
  }

  /* Smooth Scroll Animation Keyframes */
  @keyframes scroll-notification {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  /* Gradient background for card */
  .bg-dark {
    background: linear-gradient(180deg, #002349, #001f3d);
  }

  @media (max-width: 768px) {
    .notification-box {
      height: 220px;
    }
  }
    .section-primary {
      background-color: #002349;
      position: relative;
    }
  
    .counter-item {
      position: relative;
      padding: 20px 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  
    .counter-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
    }
  
    .counter-item img.icon-size {
      width: 60px;
      height: 60px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
  
    .counter-item:hover img.icon-size {
      transform: scale(1.1);
    }
  
    .counter-item strong {
      font-size: 48px !important;
      line-height: 68px !important;
      display: block;
      font-weight: 700 !important;
    }
  
    .counter-item p {
      font-size: 1rem;
      margin: 0;
    }
  
    /* Add white vertical divider for larger screens */
    @media (min-width: 992px) {
      .counter-item:not(:last-child)::after {
        content: "";
        display: block;
        width: 1px;
        height: 70px;
        background: rgba(255, 255, 255, 0.6);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -15px;
      }
    }
        /* Background */
        .psychology-section {
          background: linear-gradient(135deg, #eef4ff, #d9e8ff);
          overflow: hidden;
          position: relative;
        }
    
        .psychology-section::before,
        .psychology-section::after {
          content: "";
          position: absolute;
    
          z-index: 0;
        }
    
        .psychology-section::before {
          top: -100px;
          left: -100px;
          width: 250px;
          height: 250px;
          background: radial-gradient(circle, #007bff22 0%, transparent 70%);
        }
    
        .psychology-section::after {
          bottom: -100px;
          right: -100px;
          width: 300px;
          height: 300px;
          background: radial-gradient(circle, #00336622 0%, transparent 70%);
        }
    
        /* Headings */
        .main-heading {
          font-size: 2.8rem;
          font-weight: 700;
          color: #002349;
          text-transform: uppercase;
          letter-spacing: 1px;
          margin-bottom: 10px
        }
    
        .text-gradient {
          background: linear-gradient(90deg, #004aad, #00b4d8);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
    
        .sub-heading {
          color: #444;
          font-size: 1.1rem;
        }
    
        .underline {
          width: 90px;
          height: 4px;
          background: #002349;
          border-radius: 4px;
    
        }
    
        /* CourseCard */
        .course-card {
          background: #fff;
          ;
          overflow: hidden;
          position: relative;
          height: 420px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
    
          /* ✨ Soft shadow with depth */
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08),
            0 8px 25px rgba(0, 64, 128, 0.12);
          transition: all 0.5s ease;
        }
    
        .course-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 8px 25px rgba(0, 64, 128, 0.15),
            0 15px 45px rgba(0, 64, 128, 0.25);
        }
    
        .course-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 40px rgba(0, 64, 128, 0.25);
        }
    
        .card-img {
          width: 100%;
          height: 220px;
          object-fit: cover;
          transition: transform 0.8s ease;
        }
    
        .course-card:hover .card-img {
          transform: scale(1.1);
        }
    
        .overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(to top, rgba(0, 51, 102, 0.6), transparent);
          opacity: 0;
          transition: opacity 0.5s ease;
        }
    
        .course-card:hover .overlay {
          opacity: 1;
        }
    
        /* Polygon Label */
        .course-label {
          position: absolute;
          top: 15px;
          left: 15px;
          background: #003366;
          color: #fff;
          padding: 6px 18px;
          font-size: 0.85rem;
          font-weight: 600;
          clip-path: polygon(100% 0, 100% 100%, 0% 100%, 18px 50%, 0% 0%);
          z-index: 2;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
    
        /* Card Body */
        .course-body {
          padding: 18px;
          text-align: center;
        }
    
        .course-body h5 {
          color: #003366;
          font-weight: 700;
          margin-bottom: 8px;
        }
    
        .course-body p {
          color: #555;
          font-size: 0.95rem;
          margin-bottom: 12px;
        }
    
        .btn-readmore {
          color: #ffff;
          text-decoration: none;
          font-weight: 600;
          position: relative;
        }
    
        .btn-readmore::after {
          content: "";
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 0;
          height: 2px;
          background: #004aad;
          transition: width 0.3s ease;
        }
    
        .btn-readmore:hover::after {
          width: 100%;
        }
    
        /* Animation */
        .fade-in-up {
          animation: fadeInUp 1.2s ease both;
        }
    
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(25px);
          }
    
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }
    
        /* Controls */
        .carousel-control-prev,
        .carousel-control-next {
          filter: invert(0.6);
          transition: all 0.3s ease;
        }
    
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
          filter: invert(1);
        }
    
        /* Responsive */
        @media (max-width: 768px) {
          .card-img {
            height: 180px;
          }
    
          .main-heading {
            font-size: 2.2rem;
          }
        }
    
        .slider-custom-image .slider-custom-image-pagination {
          display: flex;
          align-items: center !important;
          bottom: 0;
          width: auto !important;
          left: 50% !important;
        }
    
        .testimonial-text {
          display: -webkit-box;
          -webkit-line-clamp: 5;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          max-height: 12em;
        }
        .admission-btn-vertical {
  position: fixed;
  bottom: 50%;
  right: 0px;
  transform: translateY(50%);
  background: #002349;
  color: #fff;
  padding: 14px 12px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s ease;
  width: 55px;
  height: auto;
}

.admission-btn-vertical i {
  font-size: 22px;
}

.admission-btn-vertical span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 1px;
}

.admission-btn-vertical:hover {
  background:#002349;
  transform: translateY(50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  color: #ffff;
}
/* Sticky Vertical Social Icons */
.social-icons-vertical {
  position: fixed;       /* Always visible */
  top: 50%;              /* Center vertically */
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 5px;
  z-index: 9999;
}

.social-icons-vertical a {
  width: 50px;
  height: 50px;
  background: #002349;
  color: #ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 25px 25px 0; /* Rounded right side */
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Hover effects with brand colors */
.social-icons-vertical a.facebook:hover { background: #3b5998; transform: translateX(5px); }
.social-icons-vertical a.twitter:hover { background: #1da1f2; transform: translateX(5px); }
.social-icons-vertical a.linkedin:hover { background: #0077b5; transform: translateX(5px); }
.social-icons-vertical a.instagram:hover { background: #e4405f; transform: translateX(5px); }

/* Responsive: hide on small screens */
@media (max-width: 768px) {
  .social-icons-vertical {
    display: none;
  }
}
.carousel,
.carousel-inner,
.carousel-item,
.ratio {
  position: relative;
  margin-bottom: 20px;
}
.course-body h6 {
    color: #003366 !important;
    font-weight: 700  !important;
    margin-bottom: 8px  !important;
}