/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden;
  width: 100%;
}


/* Style the top strip */
.top-strip {
    background-color: #007BFF; /* Blue color */
    color: white; /* Text color */
    display: flex;
    justify-content: space-between; /* Space between left and right */
    padding: 10px 20px; /* Padding for top and bottom */
    font-size: 16px; /* Text size */
    align-items: center; /* Vertically align items */
}

/* Left side: School name and email */
.left {
    display: flex;
    align-items: center;
}

.school-name {
    margin-right: 20px; /* Space between name and email */
}

.email {
    font-style: italic;
}

/* Right side: Icons */
.right {
    display: flex;
    align-items: center;
}

.phone-icon {
    margin-right: 20px; /* Space between phone number and icons */
    text-decoration: none;
    color: white;
}

.social-icon {
    margin-left: 10px;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.social-icon:hover {
    opacity: 0.7; /* Hover effect for icons */
}


#why-choose-us {
    background-color: #f8f9fa;
    border-radius: 8px;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.animate-text.visible {
    opacity: 1;
    transform: translateY(0);
}


.typewriter {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #007bff;
    width: fit-content;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#typed-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #007bff;
  width: 0;
  animation: typing 3s steps(20) forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 300px }
}

@keyframes blink {
  50% { border-color: transparent }
}

#why-choose-us {
  background-color: #ffffff;
  padding: 40px 0;
}

#choose-us-image {
    border-radius: 15px; /* Rounded corners for a smooth, professional look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation for hover effects */
    max-width: 100%; /* Ensures image stays responsive */
    height: auto; /* Keeps aspect ratio intact */
}

#choose-us-image:hover {
    transform: scale(1.05); /* Slight zoom-in effect for interactivity */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover for emphasis */
}


/* Styling the What Makes Us Stand Out Section */
#what-stands-out {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 40px 0;
    border-radius: 8px;
}

/* List Styling */
#what-stands-out ul {
    padding-left: 20px;
}

#what-stands-out ul li {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Icons Styling */
#what-stands-out ul li i {
    margin-right: 10px;
    font-size: 1.4rem;
    color: #007bff; /* Default icon color */
}

/* Hover Effect for List Items */
#what-stands-out ul li:hover {
    color: #007bff;
    cursor: pointer;
}

/* Image Styling */
#what-stands-out img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#what-stands-out img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}


/* Custom Animation for FadeInUp Effect */
.animate__fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Styling for CTA Section */
.cta {
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta .btn {
    background-color: #fff;
    color: #007bff;
    font-weight: bold;
}


/* Styling for Testimonials Section */
.testimonials {
    background-color: #0f4772;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
}

.card-body {
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
}

.card-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.card-text {
    font-size: 0.9rem;
    color: #555;
}


footer {
    background: #004d99; /* School Primary Blue */
    color: #fff;
    padding: 40px 0;
    z-index: 2;
  }
  
  footer a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #ffcc00; /* School Accent Color */
  }
  
  footer .social-icons i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  footer .social-icons i:hover {
    transform: scale(1.1);
  }
  
  footer .container {
    position: relative;
    z-index: 2;
  }
  
  /* Footer Bottom Styling */
  footer .text-center {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #ffcc00;
  }
  
  footer .row {
    display: flex;
    justify-content: space-between;
  }
  
  footer h5 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  footer p {
    font-size: 1rem;
  }
  
  footer .col-lg-4 {
    margin-bottom: 20px;
  }
  
  footer ul {
    list-style: none;
    padding-left: 0;
  }
  
  footer ul li {
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    footer .row {
      flex-direction: column;
      text-align: center;
    }
  }
  
 .testimonial-card {
  max-width: 650px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}
.quote-icon {
  opacity: 0.08;
}
.avatar {
  object-fit: cover;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}
.carousel-indicators [data-bs-target] {
  background-color: #0d6efd;
}
 