:root {
  --b-blue: #003366;
  --b-yellow: #ffcc00;
  --w-green: #25d366;
}
.menu-area {
  border-bottom: 5px solid #f05c2b;
}

#enquiryModal {
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.49);
}
/* Desktop: Top Static */
.admission-wrapper {
  background: #ffffff;
  /* border-bottom: 3px solid var(--b-yellow); */
  padding: 10px 0;
  width: 100%;
  z-index: 9999;
}

.admission-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

/* Info Styling */
.admission-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.main-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-info p {
  margin: 0;
  font-size: 16px;
  color: var(--b-blue);
  font-weight: 600;
}

.badge {
  background: red;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  animation: blink 1s infinite;
}

.offer-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 204, 0, 0.15);
  padding: 4px 10px;
  border-radius: 5px;
  border-left: 3px solid var(--b-yellow);
}
.offer-tag {
  background: var(--b-yellow);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  color: #000;
}
.offer-text {
  font-size: 13px;
  color: #d32f2f;
  font-weight: 700;
}

/* Buttons Styling */
.admission-actions {
  display: flex;
  gap: 12px;
}
.btn-item {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.call-bg {
  background: linear-gradient(135deg, var(--b-blue), #00509d);
}
.wa-bg {
  background: linear-gradient(135deg, var(--w-green), #128c7e);
}

.icon-box {
  margin-right: 10px;
  font-size: 18px;
}
.text-box {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.text-box small {
  font-size: 9px;
  opacity: 0.8;
  text-transform: uppercase;
}
.text-box span {
  font-size: 14px;
  font-weight: 700;
}

/* Animations */
.btn-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
@keyframes blink {
  50% {
    opacity: 0.5;
  }
}

/* Mobile: Fixed Bottom */
@media (max-width: 767px) {
  .admission-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    background: white;
    border-top: 3px solid var(--b-yellow);
    padding: 8px 0;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
  }
  .admission-container {
    flex-direction: column;
    gap: 8px;
  }
  .admission-actions {
    width: 100%;
  }
  .btn-item {
    flex: 1;
    justify-content: center;
    border-radius: 8px;
  }
  .offer-box {
    width: 100%;
    justify-content: center;
  }
}

/* Modal Structure */
.admission-modal-content {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 51, 102, 0.2);
}

.modal-header-custom {
  background: linear-gradient(135deg, #f05c2b 0%, #f05c2b 100%);
  padding: 20px 20px;
  color: white;
  text-align: center;
  position: relative;
  border-bottom: 5px solid #ffcc00; /* Birla Yellow */
}

.modal-header-custom .close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: white;
  text-shadow: none;
  opacity: 0.8;
  outline: none;
}

.school-icon {
  font-size: 30px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.header-content h3 {
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: 1px;
  color: #fff;
}

/* Custom Input Styling */
.custom-input label {
  font-weight: 700;
  color: #003366;
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  color: #003366;
  opacity: 0.6;
}

.input-wrapper .form-control {
  padding-left: 45px;
  height: 50px;
  border: 2px solid #e1e8ef;
  border-radius: 12px;
  background: #f8fbff;
  font-weight: 500;
  transition: 0.3s;
}

.input-wrapper .form-control:focus {
  border-color: #ffcc00;
  background: #fff;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.1);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  height: 55px;
  background: #ffcc00;
  color: #003366;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
}

.submit-btn:hover {
  background: #003366;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.2);
}

.security-note {
  text-align: center;
  margin-top: 15px;
  font-size: 11px;
  color: #888;
}

@media (max-width: 576px) {
  .modal-header-custom {
    padding: 25px 15px;
  }
  .header-content h3 {
    font-size: 20px;
  }
}

.enquiry-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: linear-gradient(135deg, #ffcc00 0%, #ffb300 100%); /* Birla Yellow */
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  color: #003366; /* Birla Blue */
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  display: none;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  outline: none !important;
}

.fab-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enquiry-fab i {
  font-size: 20px;
}

.fab-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover Effect */
.enquiry-fab:hover {
  transform: scale(1.1) translateY(-5px);
  background: #003366;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0, 51, 102, 0.3);
}

/* Pulse Animation */
.pulse-ring {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
  animation: fab-pulse 2s infinite;
  left: 0;
  top: 0;
}

@keyframes fab-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .enquiry-fab {
    bottom: 85px; /* Mobile sticky bar thakle tar upor e thakbe */
    right: 10px;
    padding: 10px 18px;
  }

  .fab-label {
    font-size: 13px;
  }

  .fab-label {
    display: none;
  }
  .enquiry-fab {
    border-radius: 50%;
    padding: 15px;
  }
}

.modal-open .modal {
  z-index: 99999999999;
}


/* CTA  */

 /* Custom Animations */
  @keyframes star-blink {
    0% { transform: scale(1); box-shadow: 0 0 0px rgba(255,255,255,0); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255,255,255,0.6); }
    100% { transform: scale(1); box-shadow: 0 0 0px rgba(255,255,255,0); }
  }

  @keyframes light-sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
  }

  /* Main CTA Styling */
  .rs-kid-cta {
    background: linear-gradient(135deg, #ff5e62, #ff9966); /* Attractive Gradient */
    position: relative;
    overflow: hidden;
  }

  .cta-text h2 {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }

  /* Star-styled Enroll Button */
  .star-btn {
    position: relative;
    display: inline-block;
    background: #ffecb3 !important;
    color: #000 !important;
    padding: 20px 35px;
    font-weight: bold;
    border-radius: 50px; /* Modern Rounded Shape */
    text-decoration: none;
    overflow: hidden;
    animation: star-blink 2s infinite ease-in-out;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    z-index: 1;
    cursor: pointer;
  }
  

  /* Light Overlay Animation */
  .star-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-25deg);
    animation: light-sweep 3s infinite;
  }

  .star-btn:hover {
    background: #fff !important;
    transform: translateY(-5px);
    color: #ff5e62 !important;
  }

  /* Responsive Adjustments */
  @media (max-width: 767px) {
    .cta-text { text-align: center; margin-bottom: 20px; }
    .cta-button { text-align: center; }
  }



    /* Service Section Custom Styling */
  .rs-services {
    background-color: #f9f9f9;
  }

  .single-service-usp {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid transparent;
  }

  .single-service-usp:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  /* Color Variations for Borders */
  .single-service-usp:hover.border-pulm { border-color: #e91e63; }
  .single-service-usp:hover.border-blue { border-color: #2196f3; }
  .single-service-usp:hover.border-orange { border-color: #ff9800; }
  .single-service-usp:hover.border-green { border-color: #4caf50; }

  .icon-style2 .shape {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #f1f1f1;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 35px;
    transition: 0.3s;
  }

  /* Icon Colors */
  .pulm i { color: #e91e63; }
  .blue i { color: #2196f3; }
  .orange i { color: #ff9800; }
  .green i { color: #4caf50; }

  .single-service-usp:hover .shape {
    background: #333; /* Dark background on hover */
  }
  .single-service-usp:hover .shape i {
    color: #fff;
  }

  .service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
  }

  .service-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
  }

  /* Spacing for mobile */
  @media (max-width: 991px) {
    .mb-md-30 { margin-bottom: 30px; }
  }
