/* ===================================
   EDUCARE POINT - MAIN STYLESHEET
   =================================== */

:root {
  --primary: #0d6efd;
  --accent: #00c853;
  --dark: #121212;
  --light-accent: #e8f5e9;
}

/* ===== GENERAL STYLES ===== */
body { 
  font-family: 'Poppins', system-ui, sans-serif; 
  line-height: 1.7; 
  background: #f8f9fa;
  color: #333;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(18,18,18,0.75), rgba(18,18,18,0.75)), 
              url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat fixed;
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

/* ===== NAVBAR ===== */
.navbar { 
  background: rgba(18,18,18,0.95) !important; 
  backdrop-filter: blur(10px); 
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 90px;
  height: 5px;
  background: var(--accent);
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

/* ===== CARD STYLES ===== */
.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  overflow: hidden;
}

.card-hover:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%) !important;
}

/* ===== UNIVERSITY LOGOS ===== */
.university-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.university-logo:hover { 
  transform: scale(1.08); 
}

/* ===== BUTTON STYLES ===== */
.btn-accent {
  background: linear-gradient(45deg, #00c853, #00e676);
  border: none;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,200,83,0.4);
  color: white;
  text-decoration: none;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: all 0.3s;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

@keyframes pulse { 
  0%, 100% { transform: scale(1); } 
  50% { transform: scale(1.1); } 
}

/* ===== FORM STYLES ===== */
.form-control, .form-select {
  border-radius: 12px;
  padding: 14px 20px;
  border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(0, 200, 83, 0.25);
}

/* ===== CONTACT LINKS ===== */
.contact-link { 
  color: inherit; 
  text-decoration: none; 
  transition: color 0.3s; 
}

.contact-link:hover { 
  color: var(--accent); 
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 200, 83, 0.08);
  transition: all 0.4s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 200, 83, 0.15);
}

.testimonial-text {
  color: #444;
  line-height: 1.75;
  font-size: 1.15rem;
  max-width: 92%;
  margin: 0 auto 1.5rem;
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 200, 83, 0.75) !important;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.carousel-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #00c853 !important;
  opacity: 0.5;
  margin: 0 8px;
  border: none;
}

.carousel-indicators .active {
  opacity: 1;
  width: 16px;
  height: 16px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .floating-whatsapp {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}