@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fef6f6;
  color: #222;
}

.admission-banner {
  background: linear-gradient(to bottom right, #f1bc99, #ffe8e8);
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  border: 2px solid #f26209;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  border-radius: 10px;
 margin:20px auto;
}

.banner-header {
  text-align: center;
  margin-bottom: 20px;
}

.banner-header h1 {
  font-size: 1.8em;
  color: #990000;
  line-height: 1.4;
}

.banner-header h2 {
  color: #cc0000;
  margin: 10px 0;
}

.admission-open {
  color: #cc00cc;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 15px;
}

.courses {
  background: #fff8f0;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px dashed #ff9900;
}

.courses p {
  margin: 5px 0;
}

.enroll-now {
  font-weight: bold;
  color: #cc0000;
  font-size: 1.1em;
}

.features {
  margin-bottom: 20px;
}

.features h4 {
  text-align: center;
  font-size: 1.3em;
  color: #b30000;
}

.features ul {
  columns: 2;
  margin: 10px 0;
  padding: 0 20px;
  list-style: '★ ';
}

.features li {
  margin-bottom: 8px;
}

.contact {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border-left: 5px solid #cc0000;
  margin-bottom: 20px;
}

.contact h4 {
  font-size: 1.2em;
  color: #b30000;
}

.footer {
  text-align: center;
  font-size: 0.95em;
  color: #444;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}


.phone-float {
  position: fixed;
  transform: translate(108px, 0px);
  bottom: 3%;
  right: -1%;
  width: 200px;
  overflow: hidden;
  background-color: rgb(231, 61, 61);
  color: #FFF;
  border-radius: 2px 0 0 2px;
  z-index: 999;
  transition: all 0.5s ease-in-out;
  vertical-align: middle ;
  padding: 10px 0px;

}

.phone-float a span {
  color: white;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  line-height: 16px;
  font-weight: bolder;
}

.phone-float i {
  font-size: 40px;
  color: white;
  line-height: 15px;
  padding: 20px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;


}

.phone-float:hover {
  color: #FFFFFF;
  transform: translate(0px, 0px);
}

.phone-float:hover i {
  transform: rotate(360deg);
}


.whats-float {
  position: fixed;
  transform: translate(-108px, 0px);
  bottom: 3%;
  left: 0;
  width: 180px;
  overflow: hidden;
  background-color: #48b737;
  color: #FFF;
  border-radius: 0 2px 2px 0;
  z-index: 999;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
  text-align: right;
  padding: 10px 0px;
}

.whats-float a span {
  color: white;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  line-height: 16px;
  font-weight: bolder;
  left: 2px;
  transform: translateX(0);
}

.whats-float i {
  font-size: 45px;
  color: white;
  line-height: 15px;
  padding: 20px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  text-align: center;
  right: 10px;
}

.whats-float:hover {
  color: #FFFFFF;
  transform: translate(0px, 0px);
}

.whats-float:hover i {
  transform: rotate(360deg);
}


