:root{
  --gold: #c59d5f;
  --blue: #480962;
  --purple: #210550;
  --white: #fffff;
}
body{background:linear-gradient(180deg,var(--white),#f8f9ff);color:#222}
.btn-gold{background:var(--gold);color:#fff;border:none;padding:10px 16px;border-radius:6px}
.navbar{background:linear-gradient(90deg,var(--white),var(--purple))}
.navbar .nav-link{color:#100303!important}
.jumbotron{background:linear-gradient(rgba(197, 95, 170, 0.15),rgba(123,97,255,0.08));padding:40px;border-radius:12px}
footer{background:#111;color:#fff;padding:24px 0;margin-top:40px}




  
.tutor-card img {
  transition: transform 0.5s, filter 0.5s;
}
.tutor-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}



/* Hero */
.hero-section{
  min-height:100vh;
  background: linear-gradient(135deg, #480962, #2f0a4f, #5a0c7d);
  position:relative;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:url('assets/img/undraw_scrum-board_uqku.svg') center/cover no-repeat;
  opacity:0.15;
   z-index: 1;
  pointer-events: none; /* THIS IS THE FIX */
}

.hero-section::before {
  pointer-events: none;   /* prevents overlay from blocking clicks */
}

/* Ensure content sits above overlay */
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .hero-content {
  position: relative;
  z-index: 5;
}

.hero-text h1{
  font-size:3.2rem;
}

.hero-btn-primary{
  background: linear-gradient(45deg, #FFD700, #ffbf00);
  color:#480962;
  font-weight:700;
  padding:14px 28px;
  border-radius:50px;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.hero-btn-outline{
  border:2px solid #FFD700;
  color:#fff;
  padding:14px 28px;
  border-radius:50px;
}

.hero-btn-primary:hover,
.hero-btn-outline:hover{
  transform: translateY(-4px);
}

.hero-stats h4{
  font-weight:800;
  color:#FFD700;
}

.hero-stats small{
  color:#ddd;
}

.floating-img{
  animation: float 6s ease-in-out infinite;
}

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-20px)}
  100%{transform:translateY(0)}
}

@media(max-width:768px){
  .hero-text{text-align:center}
}






/* footer */
.gl-footer {
  background: linear-gradient(135deg, #480962, #2b043a);
  color: #fff;
  padding: 70px 0 25px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  width: 40px;
  height: 3px;
  background: #ffc107;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.footer-col p {
  line-height: 1.8;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffc107;
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
  opacity: 0.85;
}

/* RESPONSIVENESS */
@media(max-width: 992px){
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 600px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* About */
.text-purple {
    color: #6f42c1;
  }

  .card {
    transition: all 0.3s ease;
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }


  /* services */

  .text-purple { color: #6f42c1; }

  .service-card {
    background: #fff;
    transition: all 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  /* FAQ */
  
  .accordion-button {
    font-weight: 600;
  }

  .accordion-item {
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
  }


  /* How */
 
  .step-card {
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .icon i {
    transition: transform 0.4s ease;
  }

  .step-card:hover .icon i {
    transform: rotate(15deg) scale(1.2);
  }

  .text-purple { color: #6f42c1; }
  .text-success { color: #28a745; }


  .contact-info {
    background: #f8f9ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .contact-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  .contact-info .icon i {
    transition: transform 0.3s ease;
  }
  .contact-info:hover .icon i {
    transform: scale(1.2) rotate(10deg);
  }
  form input, form textarea {
    border-radius: 12px;
  }
  form button {
    border-radius: 12px;
  }
