.body-innerwrapper {
    padding-top: 105px !important; 
}

/* Maintain your 1920/820 Ratio strictly */
.sp-header-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 820;
    overflow: hidden;
    background: #000;
}

.sp-header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



#sp-header{
  position:fixed !important;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:11000;
  background:#fff; /* ensure header covers content behind it */
  box-shadow:0 2px 0px rgba(129, 1, 1, 0.06);
}


.ticker-wrap{position:relative;overflow:hidden}
.ticker{display:inline-block;white-space:nowrap;padding:8px 0;animation-name:sp-ticker-scroll;animation-timing-function:linear;animation-iteration-count:infinite;animation-play-state:running}
.ticker-item{display:inline-block;padding:0 48px;color:#fff}
@keyframes sp-ticker-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* Make sure ticker doesn't overlap header on small screens (if header height changes) */
@media (max-width:767px){
  .sp-ticker .ticker-item{padding:0 24px}
}


/* Container that hides the overflow */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #b80f14; /* Red background */
  box-sizing: border-box;
}

/* The moving element */
.ticker {
  display: inline-block;
  white-space: nowrap;
  padding: 12px 0;
  will-change: transform;
  /* Adjust 30s to change speed - higher is slower */
  animation: sp-ticker-scroll 30s linear infinite;
}

/* Individual items */
.ticker-item {
  display: inline-block;
  padding: 0 50px;
  color: #fff;
  font-size: 16px;
}

/* Hover to pause so people can read */
.ticker:hover {
  animation-play-state: paused;
}

/* Smooth Animation */
@keyframes sp-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* WhatsApp floating icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 12%;
  right: 23px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;

  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
	color: #fff;
	background-color: #068660;
}

#school-chat-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

#chat-trigger {
    background: #004a99;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#chat-box {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-hidden { display: none !important; }

.chat-header { background: #004a99; color: #fff; padding: 15px; display: flex; justify-content: space-between; }
.chat-content { height: 250px; padding: 15px; overflow-y: auto; font-size: 14px; }
.chat-footer { display: flex; border-top: 1px solid #eee; }
.chat-footer input { flex: 1; border: none; padding: 10px; outline: none; }
.chat-footer button { background: #004a99; color: #fff; border: none; padding: 10px 15px; cursor: pointer; }

