:root {
    --primary-color: #007bff;
    --secondary-color: #343a40;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
  }

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: rgb(0, 0, 0);
  }
  /* === Hero / Banner === */
    /* Put gradient inside each slide */
    .swiper-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1; /* stays above the image, but below your content */
        background: linear-gradient(
          to bottom,
          rgba(0,0,0,0.85) 0%,      /* dark at top */
          rgba(0,0,0,0.45) 12%,
          rgba(0,0,0,0) 30%,
          rgba(0,0,0,0) 70%,
          rgba(0,0,0,0.45) 88%,
          rgba(0,0,0,0.85) 100%     /* dark at bottom */
        );
        pointer-events: none;
      }
      /* Floating Social Bar */
.floating-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Social Icon Styles */
.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

/* Colors per platform */
.whatsapp { background: #25D366; }
.call { background: #0f9af1; }
.instagram { background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5); }
.facebook { background: #1877F2; }
.linkedin { background: #0077B5; }
.youtube { background: #FF0000; }

/* Hover Effects */
.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.whatsapp, .call {
  animation: pulse 2s infinite;
}

/* Responsive: horizontal bar on mobile */
@media (max-width: 768px) {
  .floating-social {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    right: 0;
    left: 0;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 0;
    border-radius: 25px 25px 0 0;
  }
  
}
      /* ensure slide itself can hold overlay */
      .swiper-slide {
        position: relative;
      }
      
      /* your content/logo/form stay higher */
      .banner-logo,
      .desktop-form-container,
      .banner-overlay {
        position: relative;
        z-index: 5; /* higher than the ::before gradient */
      }
      
        .overlay-text h2{
          color: #ffffff !important;
        }
        .banner-logo {
          z-index: 1000;
          border-radius: 8px;
          padding: 8px 12px;
          display: inline-block;
        }
        .banner-logo .logo-img {
          max-height: 200px;
          width: auto;
          object-fit: contain;
        }
      
        /* Bottom-Left Overlay */
        .banner-overlay {
          z-index: 1000;
          display: flex;
          align-items: center;
        }
        .overlay-logo img.logo-img-bottom {
          max-height: 150px;
          padding: 12px 16px;
          border-radius: 6px;
          width: auto;
        }
        .overlay-text {
          padding: 12px 16px;
          border-radius: 6px;
        }
        .overlay-text h2 {
          font-size: 32px;
          font-weight: 700;
          margin: 0;
        }
        .overlay-text p {
          margin: 6px 0 0;
          font-size: 16px;
          display: inline-block; /* shrink to fit content */
          border: 1px solid white;
          padding: 2px 4px; /* optional, for some spacing inside the border */
      }
      
      
        /* Banner defaults */
        .banner-desktop { display: block; width: 100%; height: 475px; object-fit: cover; }
        .banner-mobile { display: none; width: 100%; height: auto; }
      
        .desktop-form-container { z-index: 2; }
        .banner-image {
          width: 100%;
          height: 700px;
          transform: scale(1);
          transition: transform 6s ease;
        }
        .swiper-slide-active .banner-image {
          transform: scale(1.1);
        }
      
       
      
        .ee-form-widget {
          max-width: 350px;
          margin-right: 80px;
          width: 100%;
        }
      
        .banner-section {
          position: relative;
          width: 100%;
        }
        @media (max-width: 768px) {
          /* Hide desktop image, show mobile-friendly version */
          .banner-desktop {
            display: none !important;
          }
        
          .banner-mobile {
            display: block !important;
            width: 100%;
            height: 25vh; /* increase height for better visibility */
            object-fit: contain; /* show full image */
            background-color: #000;
          }
        
          /* Ensure banner images scale nicely */
          .banner-image {
            width: 100%;
            height: 25vh; /* make banner taller on mobile */
            object-fit: contain;
            object-position: center; /* center image properly */
            transition: none;
            background-color: #000;
          }
        
          /* Ensure logo is visible on mobile banner */
          .banner-logo {
            left: 250px;
          }
        
          .banner-logo .logo-img {
            max-height: 70px;
            width: auto;
          }
        
          /* Keep overlay visible & readable on mobile */
          .banner-overlay {
            display: flex !important;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: absolute;
            transform: translateX(-50%);
            border-radius: 10px;
            max-width: 70%;
          }
        
          .overlay-logo img.logo-img-bottom {
            max-height: 80px;
            margin-left: 200px;
          }
        
          .overlay-text h2 {
            font-size: 1.3rem;
            line-height: 1.3;
            width: 220px;
          }
          .overlay-text p {
            font-size: 0.9rem;
            margin-top: 4px;
          }
          .overlay-text{
            padding: 4px;
            background: rgba(0, 0, 0, 0.5) !important;
          }
        .logo-para{
          width: 400px;
        }
          /* Move form below banner */
          .desktop-form-container {
            position: relative !important;
            top: auto !important;
            right: auto !important;
            transform: none !important;
            margin: 1.5rem auto 0 auto;
            max-width: 90%;
            z-index: 10;
          }
        }
        
  /* === Schools / Programs section === */
  .filter-btn {
    margin: 5px;
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 500;
    transition: all 0.3s;
    color: #007bff;
    border: 2px solid #007bff; /* Always blue border */
    background-color: #ffffff;      /* White background */
  }
.school-filter-btns .btn-group {
  flex-wrap: wrap;
  justify-content: center;
}
  .filter-btn:hover {
    background-color: #007bff;
    color: #fff;
  }

  .filter-btn.active {
    background-color: #007bff;
    color: #fff;
  }
  .course-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }

  .course-card .card-text {
    color: #007bff;
    font-weight: 500;
  }

  .course-card p:last-child {
    font-size: 0.9rem;
    color: #555;
  }
  .card-title {
    font-weight: 600; /* bold */
  }
  /* === Stats / Placement Section === */
  .stat-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  .stat-card:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .stat-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  /* === Campus Gallery === */
  .campus-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .campus-slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
  }
  
  .campus-slide {
    min-width: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
  }
  
  .campus-bottom-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    background: rgba(118, 118, 118, 0.3);
    padding: 15px 20px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
  }
  
  .campus-bottom-center.show {
    opacity: 1;
  }
  
  .indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }
  
  .campus-dot {
    height: 10px;
    width: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .campus-dot.active {
    background-color: #333;
  }
  
  
  /* Overlay text in white */
.campus-bottom-center h3,
.campus-bottom-center p {
  color: #fff; /* change text to white */
}

/* Make overlay slightly darker for contrast */
.campus-bottom-center {
  background: rgba(0, 0, 0, 0.5); /* darker semi-transparent background */
  padding: 15px 20px;
  border-radius: 20px 20px 0 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .campus-slider {
    height: 300px; /* smaller height */
  }

  .campus-bottom-center {
    width: 90%; /* take more width on mobile */
    padding: 10px 15px;
  }

  .luxury-heading {
    font-size: 1.6rem; /* smaller font */
  }

  .luxury-subtitle {
    font-size: 0.9rem; /* smaller font */
  }
}

@media (max-width: 414px) {
  .campus-slider {
    height: 350px; /* even smaller for phones */
  }
.campus-slide{
  height: 350px;
}
  .luxury-heading {
    font-size: 1.4rem;
  }

  .luxury-subtitle {
    font-size: 0.8rem;
  }
}
/* accredition  */
.accreditation-circle {
  position: relative;
  width: 400px;  /* bigger wrapper */
  height: 400px;
  margin: auto;
}

/* Central logo always visible */
.center-logo {
  position: absolute;
  width: 150px;   /* bigger center logo */
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: contain; /* ensures it fits inside */
  z-index: 2;
}

/* Accreditation logos initially on top of center logo */
.circle-logo {
  position: absolute;
  width: 80px;  /* bigger surrounding logos */
  height: 80px;
  border-radius: 50%;
  object-fit: contain; /* ensures the logo fits fully */
  transition: all 0.8s ease;
  opacity: 0;
}

/* Expanded state */
.accreditation-circle.expanded .circle-logo {
  opacity: 1;
}

/* Mobile adjustments */
@media(max-width:768px){
  .accreditation-circle { 
    width: 320px;  /* increased from 280px */
    height: 320px; 
  }
  .center-logo { 
    width: 120px;  /* increased from 100px */
    height: 120px; 
  }
  .circle-logo { 
    width: 70px;   /* increased from 60px */
    height: 70px; 
  }
}

  /* === Footer === */
  footer {
    background: #0f9af1;
    color: #fff;
    padding: 5px 0;
  }
  footer a {
    color: #ddd;
    text-decoration: none;
  }
  hr{
    color: #fff;
  }