<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.custom-footer {
  background: linear-gradient(135deg, #292929, #333333);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.custom-footer::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0.25;
  animation: light-effect 3s infinite ease-in-out;
}

@keyframes light-effect {
  0% {
    top: -10px;
    opacity: 0.2;
  }
  50% {
    top: -30px;
    opacity: 0.3;
  }
  100% {
    top: -10px;
    opacity: 0.2;
  }
}

.footer-container {
  width: 100%;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #fff;
}

.footer-copyright,
#footer-credit {
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.footer-copyright a,
#footer-credit a {
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease-out, text-shadow 0.3s ease-out, color 0.3s ease-in-out;
}

.footer-copyright a:hover,
#footer-credit a:hover {
  transform: translateY(-5px) scale(1.1);
  color: #f0f0f0;
  text-shadow: 0 6px 20px rgba(255, 255, 255, 0.6), 0 0 25px rgba(255, 255, 255, 0.6);
}

.custom-footer:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #292929, #444444);
}

.footer-copyright:hover,
#footer-credit:hover {
  transform: translateY(-2px);
}


.logo {
  width: 50px;             
  height: 50px;             
  border-radius: 50%;        
  position: absolute;        
  left: 0;                  
  top: 50%;                 
  transform: translateY(-50%); 
}

#unique-quick-links a {
    color: blue; /* Blue color */
    font-weight: bold; /* Bold text */
}


#unique-quick-links {
    background: #ADD8E6;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#unique-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.unique-link-card {
    text-decoration: none;
    font-size: 16px;
    display: flex;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 8px;
    text-align: left;
    position: relative;
}

.unique-link-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.unique-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unique-card-title {
   font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    position: absolute;
    top: 23px;
    right: 106px;
}


.unique-card-description {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}


#school-fees-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-wrapper {
    background-color: white;
    padding: 30px;
   
    flex: 1;
}

.info-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 16px;
      font-weight: 400;
      
   
}

.info-icon {
    margin-right: 15px;
    font-size: 20px;
    color: #2c3e50;
}


#school-fees-info img {
    max-width: 400px;
    height: auto;
    margin-left: 20px;
}

.why-choose-us-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 
}

.why-choose-us-text {
  width: 50%;
}

.why-choose-us-heading {
  font-size: 28px;
  color: #2c3e50;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
  margin-bottom: 20px;
}

.why-choose-us-description {
  font-size: 16px;
 font-weight:600;
  line-height: 1.8;
  padding-bottom: 20px;
}

.why-choose-us-list {
  list-style-type: none;
  padding: 0;
}

.why-choose-us-list li {
  font-size: 16px;
  font-weight:600;
  padding-bottom: 10px;
  position: relative;
}

.why-choose-us-list li::before {
  content: '✓';
  color: #3498db;
  position: absolute;
  left: -25px;
  top: 0;
  font-size: 20px;
}

.why-choose-us-image {
  width: 45%;
}

.why-choose-us-image img {
  width: 100%;
  border-radius: 10px;

}






</pre></body></html>