/* ---------- Global Reset ---------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(241, 231, 231);
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Button Hover Effect ---------- */
.btn-success {
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.school-card-hover {
  transition: all 0.3s ease;
}

.school-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* =======================
   FOOTER STYLING
======================= */

.footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ff4d4d;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

/* Paragraph */
.footer p {
  line-height: 1.7;
  color: #dcdcdc;
}

/* Links */
.footer-link {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ff4d4d;
  padding-left: 6px;
}

/* Contact List */
.footer-contact li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.footer-contact i {
  color: #ff4d4d;
  font-size: 16px;
}

/* Social Icons */
.footer-social {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: #ff4d4d;
  color: #fff;
  transform: translateY(-4px);
}

/* Logo */
.footer img {
  max-width: 100%;
  filter: brightness(1.1);
}

/* Footer Bottom */
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer small {
  font-size: 13px;
  color: #cccccc;
}

.footer small a:hover {
  color: #ff4d4d !important;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-social {
    margin: 0 auto;
  }
}
/* ===========================
   SCHOOL SEARCH SECTION
=========================== */

.school-search-section {
  background: linear-gradient(135deg, #f8fbff, #eef3f9);
}

.school-search-section h2 {
  color: #0d3b66;
}

.school-search-box {
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
}

.school-search-box .form-control,
.school-search-box .form-select {
  height: 38px;
  border-radius: 8px;
  font-size: 14px;
}

.school-search-box .form-control:focus,
.school-search-box .form-select:focus {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 0.15rem rgba(255, 77, 77, 0.25);
}

/* Search Button */
.btn-search {
  background: #ff4d4d;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  height: 48px;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: #e63939;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .school-search-box {
    padding: 15px;
  }
}


/* product slider section */
/* PRODUCT CARD */
.product-card {
  border-radius: 14px;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-img {
  height: 200px;
  object-fit: contain;
  padding: 15px;
}

/* PRODUCT NAV */
#product-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  width: 42px;
  height: 42px;
  background: #198754 !important;
  border-radius: 50%;
  color: #fff !important;
}

#product-carousel .owl-nav .owl-prev {
  left: -20px;
}

#product-carousel .owl-nav .owl-next {
  right: -20px;
}

#product-carousel .owl-nav button:hover {
  background: #FF5F1F !important;
}

/* excellency system */
/* PREMIUM STATS SECTION */
.premium-stats {
  background: radial-gradient(circle at top, #f5f9ff, #e8f0ff);
}

/* GLASS CARD */
.stat-glass {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 15px 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Hover */
.stat-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(13,110,253,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.stat-glass:hover::before {
  opacity: 1;
}

.stat-glass:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(13,110,253,0.25);
}

/* ICON RING */
.icon-ring {
  width: 70px;
  height: 70px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(13,110,253,0.4);
}

.icon-ring i {
  color: #fff;
  font-size: 28px;
}

/* NUMBERS */
.stat-glass h2 {
  font-weight: 900;
  font-size: 34px;
  color: #0d2b5e;
  margin-bottom: 4px;
}

.stat-glass p {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #6c757d;
}

/* Mobile */
@media (max-width: 576px) {
  .stat-glass h2 {
    font-size: 26px;
  }
}

/* CERTIFIED SECTION */
.certified-section {
  background: #ffffff;
}

/* LOGO STYLE */
.certified-logo {
  max-height: 70px;
  width: auto;
  margin: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.certified-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* CENTER ITEMS */
#certified-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

/* OPTIONAL: REMOVE NAV */
#certified-carousel .owl-nav {
  display: none;
}
/* blog section */
/* BLOG SLIDER */
.blog-slider-section {
  background: #f8fbff;
}

/* BLOG CARD */
.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* BLOG IMAGE */
.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* DATE BADGE */
.blog-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #0d6efd;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
}

/* CONTENT */
.blog-content {
  padding: 18px;
}

.blog-content h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
}

/* READ MORE */
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.read-more:hover {
  color: #FF5F1F;
}

/* FAQ Section and Google Review */
.faq-review-section{
  background:#f8fafc;
  padding:60px 0;
}

.section-title{
  font-weight:700;
}

.card{
  border:none;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:24px;
  height:100%;
}

/* FAQ */
.accordion-button{
  font-weight:600;
}
.accordion-button:not(.collapsed){
  background:#eef2ff;
  color:#0d6efd;
}

/* REVIEWS */
.review-item{
  border-bottom:1px solid #eee;
  padding-bottom:12px;
  margin-bottom:12px;
}
.review-item:last-child{
  border-bottom:none;
}

.rating-summary h2{
  font-size:42px;
}
