body {
  font-family: "Open Sans", sans-serif; /* or "Interval Next Light" */
  color: #5c6981;
  font-size: 1.1rem;
              background: linear-gradient(135deg, #e1dafd, #dde3f9);

}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #002C69;
}




/**********************************/
/************ Popup CSS **********/
/**********************************/
  .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .popup-box {
    background: #fff;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
  }
  .popup-box .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    color: #888;
    cursor: pointer;
  }
  .popup-box h4 {
    color: #7b2cbf;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .popup-box button {
    background-color: #7b2cbf;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
  }
  .popup-box button:hover {
    background-color: #5a189a;
  }


/**********************************/
/************ Navbar CSS **********/
/**********************************/

.custom-navbar {
  background-color: #002C69;
}
.custom-navbar .nav-link {
  color: #fff;
}
.custom-navbar .nav-link:hover {
  color: #0dcaf0;
}

.custom-dropdown {
  min-width: 500px;
  background-color: #002C69;
  color: #fff;
  border-radius: 8px;
  border: none;
  overflow: hidden;
  transform: translateX(-70px);
}
.custom-dropdown a {
  color: #f8f9fa;
  text-decoration: none;
}
.custom-dropdown a:hover {
  color: #0dcaf0;
}



/**********************************/
/********* side float CSS *********/
/**********************************/

/* Social Floating Buttons */
.social-float {
  position: fixed;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.social-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.social-btn:hover {
  transform: scale(1.1);
}
.whatsapp { background-color: #25D366; }
.instagram { background: linear-gradient(45deg, #fd1d1d, #833ab4, #fcb045); }
.facebook { background-color: #1877F2; }
.booknow {
  background-color: #ff6600;
  font-size: 14px;
  width: auto;
  border-radius: 25px;
}

/**********************************/
/************ Modal CSS ***********/
/**********************************/

.modal-content {
  position: relative;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: none;
}
.modal-content .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  filter: invert(1);
  opacity: 1;
  z-index: 10;
}
.modal-left {
  background: #002C69;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}
#leadModal .form-control {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#leadModal .form-control::placeholder {
  color: #888;
}
#leadModal .form-control:focus {
  border-color: #333;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#leadModal .btn-primary {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
  border: none;
  transition: background 0.3s;
}
#leadModal .btn-primary:hover {
  background: #0056b3;
}


/**********************************/
/************ Hero CSS ************/
/**********************************/
/* Hero Section */
.hero-section {
  background: #fff;
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  overflow: hidden;
}

/* Gradient Title */
.hero-content h1 {
  background: linear-gradient(135deg, #002C69, #F30A6D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  font-size: 70px;
}

/* Subhead */
.hero-content h5 {
  color: #002C69;
  font-weight: 700;
}

/* Paragraph */
.hero-content p {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #002C69;
}

/* Buttons */
.btn-pink {
  background: linear-gradient(135deg, #002C69, #F30A6D);
  border: none;
}
.btn-blue {
  background: linear-gradient(135deg, #002C69, #002C69);
}

/* Hero Image */
.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

/* Floating effect */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ==== SCROLL ANIMATIONS ==== */
.animate-left, .animate-right {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-left {
  transform: translateX(-60px);
}
.animate-right {
  transform: translateX(60px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 2.8rem; }
  .hero-content p { font-size: 1rem; }
}
@media (max-width: 768px) {
  .hero-section { text-align: center; }
  .hero-content { margin-bottom: 2rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content h5 { font-size: 1.1rem; }
  .hero-content p { font-size: 0.95rem; }
}
@media (max-width: 576px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content h5 { font-size: 1rem; }
  .hero-content p { font-size: 0.9rem; }
  .btn-lg {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}


/**********************************/
/******** notification CSS ********/
/**********************************/

/* Smooth continuous scroll */
.notification-scroll {
  display: flex;
  flex-direction: column;
  animation: scroll-up 15s linear infinite;
}
.big-number {
  font-size: 180px; /* default for large screens */
  font-weight: bold;
  /* Gradient as text color */
  background: linear-gradient(135deg, #002C69, #F30A6D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


@keyframes scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); } /* only half since we duplicated content */
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .notification-box {
    height: 200px; /* smaller height on small screens */
  }
  .display-3 {
    font-size: 3rem; /* reduce big 15+ font */
  }
    .big-number {
    font-size: 100px;
}


/**********************************/
/************ About CSS ***********/
/**********************************/

  .about-img-wrapper {
      max-width: 500px;
  position: relative;002C69
  display: inline-block;
}

.experience-badge {
  left: -20px;
  top: 20%;
  min-width: 100px;
  text-align: center;
}

.small-img {
  max-width: 200px;
  transform: translate(20%, 20%);
}

/**********************************/
/************ Course CSS ************/
/**********************************/

/* Colors to match the screenshot vibe */
.hero-11 .text-navy { color: #0f3d66; }

/* Keep image corners soft and clean */
.hero-11 .rounded-4 { border-radius: 1.25rem !important; }

/* Vertical pill image */
.hero-11 .pill-wrap{
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;           /* adjust to your image */
  height: 320px;          /* adjust to your image */
  border-radius: 999px;
  overflow: hidden;
}
.hero-11 .pill-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-11 .pill-label{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
  text-shadow: 0 2px 6px rgba(0,0,0,.25);
  transform: rotate(-90deg);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.35) 100%);
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .hero-11 .pill-wrap{ display:none; }      /* hide vertical pill on small screens */
}
@media (max-width: 575.98px){
  .hero-11 h1{ font-size: 1.75rem; }
}

/**********************************/
/************ Common Hero CSS ************/
/**********************************/

/**********************************/
/***********hero Blog CSS *********/
/**********************************/

 