/* Global & Fonts */
* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

:root {
  --nav-color: #1565C0;          
  --button-text-footer: #0a2e52; 
  --badge-color: #1976D2;        
  --extra-color: #ffffff;
  --light-blue-bg: #E3F2FD;      
}

body { background-color: #f4f7f6; }

/* ==========================================
   1. FULL SCREEN VIDEO
   ========================================== */
.hero-video-section {
  position: relative;
  width: 100%;          
  height: 100vh;         
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(10, 46, 82, 0.6), rgba(21, 101, 192, 0.5)); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 850px; padding: 0 20px; }
.head-txt { font-size: 3.8rem; font-weight: 800; color: #ffffff; line-height: 1.2; opacity: 0.9; text-shadow: 0 10px 30px rgba(0,0,0,0.5); margin-bottom: 20px; }

.hero-buttons { display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: center; }
.hero-button-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-download-row { margin-top: 18px; }
.btn-glow { padding: 14px 35px; background: linear-gradient(135deg, var(--nav-color), var(--badge-color)); color: #fff; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 0 20px rgba(21, 101, 192, 0.6); transition: all 0.3s ease; border: none; display: inline-block; }
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(21, 101, 192, 0.8); color: #fff; }
.btn-outline-custom { padding: 14px 35px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; display: inline-block; }
.btn-outline-custom:hover { background: #fff; color: var(--button-text-footer); }

/* ==========================================
   2. STATS & INTRO
   ========================================== */
.content-below-video { padding-top: 60px; padding-bottom: 40px; }
.para-txt { color: #546e7a; font-size: 1.1rem; line-height: 1.7; max-width: 800px; margin: 0 auto 30px auto; }
.automation-text { display: flex; margin-bottom: 30px; justify-content: center; gap: 20px; }
.auto-box { text-align: center; padding: 20px 30px; background: var(--extra-color); border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); border: 1px solid #e0eaff; transition: transform 0.3s ease; flex: 1; max-width: 220px; }
.auto-box:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(21, 101, 192, 0.1); }
.auto-head { font-size: 2.2rem; font-weight: 800; color: var(--nav-color); margin: 0; }
.auto-text { font-size: 0.9rem; font-weight: 600; color: #546e7a; margin: 0; }
.guarnty-section { margin-top: 40px; display: flex; gap: 25px; justify-content: center; flex-wrap: wrap; }
.guranty-icon { font-size: 18px; color: var(--nav-color); margin-right: 5px; }
.guranty-text { color: var(--button-text-footer); font-size: 1rem; font-weight: 500; }
.icon-parent { display: flex; align-items: center; }

/* ==========================================
   3. COURSE CATEGORY
   ========================================== */
.site-main { padding-top: 20px; padding-bottom: 50px; }
.section-title { color: var(--button-text-footer); font-weight: 800; text-align: center; margin: 10px 0px 40px 0px; position: relative; font-size: 2.2rem; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: var(--nav-color); margin: 12px auto 0; border-radius: 2px; }
.parent-course-discription .same-row { padding-top: 50px; }

.course-box { display: flex; justify-content: center; }
.course-card { background-color: var(--extra-color); border-radius: 16px; padding: 40px 30px; text-align: center; border: 1px solid #e0e0e0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.4s ease; position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.course-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 4px; background: linear-gradient(90deg, var(--nav-color), var(--badge-color)); transition: width 0.5s ease-in-out; z-index: 2; border-radius: 16px 16px 0 0; }
.course-card:hover::before { width: 100%; }
.course-card:hover { background-color: rgba(21, 101, 192, 0.04); border-color: rgba(21, 101, 192, 0.3); transform: translateY(-10px); box-shadow: 0 15px 35px rgba(21, 101, 192, 0.15); }
.course-icon-box { width: 80px; height: 80px; border-radius: 50%; background-color: rgba(21, 101, 192, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 25px; transition: all 0.3s ease; }
.course-card:hover .course-icon-box { background-color: var(--nav-color); box-shadow: 0 0 20px rgba(21, 101, 192, 0.4); }
.course-icon { font-size: 32px; color: var(--nav-color); transition: color 0.3s ease; }
.course-card:hover .course-icon { color: #ffffff; }
.course-title { color: var(--button-text-footer); font-weight: 700; font-size: 22px; margin-bottom: 15px; transition: color 0.3s ease; }
.course-card:hover .course-title { color: var(--nav-color); }
.course-description { color: #546e7a; font-size: 15px; line-height: 1.6; margin-bottom: 25px; text-align: center; }
.course-buttons { display: flex; justify-content: center; gap: 10px; margin-top: auto; width: 100%; flex-wrap: wrap; }
.course-detail-btn { text-decoration: none; color: var(--button-text-footer); background-color: transparent; border: 2px solid #e0e0e0; padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 14px; transition: all 0.3s ease; display: inline-block; flex: 1; min-width: 110px; text-align: center; }
.course-detail-btn:hover { border-color: var(--button-text-footer); background-color: rgba(10, 46, 82, 0.05); transform: translateY(-2px); }
.course-enroll-btn { text-decoration: none; background-color: var(--nav-color); color: var(--extra-color) !important; border: 2px solid var(--nav-color); padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 14px; transition: all 0.3s ease; display: inline-block; flex: 1; min-width: 110px; text-align: center; }
.course-enroll-btn:hover { background-color: var(--button-text-footer); border-color: var(--button-text-footer); box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3); transform: translateY(-2px); }

/* ==========================================
   4. CEO / DIRECTOR MESSAGE
   ========================================== */
.ceo-section { border-top: 1px solid #e0e0e0; }
.ceo-img-wrapper { display: inline-block; padding: 8px; border-radius: 20px; background: linear-gradient(135deg, var(--nav-color), var(--badge-color)); box-shadow: 0 10px 30px rgba(21, 101, 192, 0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ceo-img-wrapper:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 18px 40px rgba(21, 101, 192, 0.35); }
.ceo-img { border-radius: 16px; max-width: 420px; width: 100%; height: auto; display: block; border: 4px solid #fff; }
.ceo-subtitle { font-size: 16px; color: var(--nav-color); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.ceo-heading { color: var(--button-text-footer); font-weight: 800; font-size: 2rem; margin-top: 10px; margin-bottom: 20px; }
.ceo-para { color: #546e7a; font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }
.ceo-name { color: var(--button-text-footer); font-weight: 700; margin: 0; }
.ceo-role { color: var(--nav-color); font-weight: 500; font-size: 0.9rem; }

/* ==========================================
   5. PLACEMENTS (Dark Section)
   ========================================== */
.placements-section { background: linear-gradient(135deg, var(--button-text-footer) 0%, #051e3e 100%); border-radius: 24px; padding: 60px 40px; }
.placement-subtitle { color: rgba(255,255,255,0.7); text-align: center; max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.placements-section .section-title { color: #fff !important; }
.placements-section .section-title::after { background-color: #fff; }

.placement-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.placement-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}
.placement-icon {
  font-size: 2.5rem;
  color: var(--badge-color);
  margin-bottom: 15px;
}
.placement-stat-card h2 {
  color: #ffffff;
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 5px;
}
.placement-stat-card p {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

/* ==========================================
   6. EVENTS
   ========================================== */
.events-section {
  border-top: 1px solid #e0e0e0;
}
.event-card {
  background: var(--extra-color);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  height: 100%;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(21, 101, 192, 0.12);
  border-color: var(--nav-color);
}
.event-date-box {
  background: var(--light-blue-bg);
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.event-day {
  font-size: 2rem;
  font-weight: 800;
  color: var(--nav-color);
  line-height: 1;
}
.event-month {
  font-size: 1rem;
  font-weight: 600;
  color: var(--badge-color);
  text-transform: uppercase;
}
.event-content { flex: 1; }
.event-title {
  font-weight: 700;
  color: var(--button-text-footer);
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.event-desc {
  color: #546e7a;
  font-size: 0.95rem;
  margin: 0;
}
.btn-outline-custom.dark {
  color: var(--button-text-footer);
  border-color: var(--button-text-footer);
}
.btn-outline-custom.dark:hover {
  background: var(--button-text-footer);
  color: #fff;
}

/* ==========================================
   7. TESTIMONIALS
   ========================================== */
.testimonials-section { 
  background: var(--light-blue-bg); 
  border-radius: 24px; 
  padding: 60px 40px; 
}
.testimonial-card {
  background: var(--extra-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border: 1px solid #e0e0e0;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 10px 25px rgba(21, 101, 192, 0.12);
}
.quote-icon {
  font-size: 2rem;
  color: var(--nav-color);
  margin-bottom: 15px;
  opacity: 0.3;
}
.google-review-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.12), rgba(251, 188, 5, 0.12), rgba(52, 168, 83, 0.12));
  opacity: 1;
}
.google-review-icon i {
  background: conic-gradient(from -45deg, #4285F4 0 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.google-reviews-carousel {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 64px 44px;
}
.google-review-slide {
  min-height: 360px;
}
.google-reviews-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}
.google-reviews-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--nav-color);
}
.google-review-control {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nav-color), var(--badge-color));
  opacity: 1;
  box-shadow: 0 10px 22px rgba(21, 101, 192, 0.22);
}
.google-review-control.carousel-control-prev {
  left: 0;
}
.google-review-control.carousel-control-next {
  right: 0;
}
.google-review-control .carousel-control-prev-icon,
.google-review-control .carousel-control-next-icon {
  width: 1.3rem;
  height: 1.3rem;
  filter: brightness(0) invert(1);
}
.google-review-control:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}
.review-text {
  color: #546e7a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
  display: -webkit-box;
  line-clamp: 7;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stars { 
  color: #FFC107; 
  margin-bottom: 20px; 
  font-size: 0.9rem; 
}
.stars i { margin-right: 2px; }
.student-info { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.student-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nav-color);
}
.student-name { 
  font-size: 1rem; 
  font-weight: 700; 
  color: var(--button-text-footer); 
  margin: 0; 
}
.student-course { 
  font-size: 0.85rem; 
  color: var(--nav-color); 
  margin: 0; 
}

/* ==========================================
   8. CTA SECTION
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--nav-color), var(--badge-color));
  border-radius: 24px;
  padding: 70px 30px;
  box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3);
}
.cta-heading {
  color: #fff;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.cta-para {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px auto;
}
.cta-enroll-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  background: #ffffff;
  color: var(--button-text-footer);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}
.cta-enroll-btn:hover {
  background: #f8fbff;
  color: var(--nav-color);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
  .head-txt { font-size: 2.8rem; }
  .auto-box { padding: 15px 20px; }
  .auto-head { font-size: 1.8rem; }
  .cta-heading { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .head-txt { font-size: 2.2rem; }
  .automation-text { flex-direction: column; align-items: center; }
  .auto-box { max-width: 100%; width: 100%; }
  .ceo-section .row { text-align: center; }
  .ceo-img-wrapper { margin-bottom: 20px; }
  .event-card { flex-direction: column; text-align: center; }
  .event-date-box { flex-direction: row; gap: 10px; padding: 10px 20px; }
  .cta-heading { font-size: 2rem; }
  .testimonials-section { padding: 40px 20px; }
  .google-reviews-carousel { padding: 0 0 56px; }
  .google-review-control { top: auto; bottom: 0; transform: none; }
  .google-review-control:hover { transform: scale(1.05); }
  .google-review-control.carousel-control-prev { left: calc(50% - 58px); }
  .google-review-control.carousel-control-next { right: calc(50% - 58px); }
  .placements-section { padding: 40px 20px; }
}

@media (max-width: 576px) {
  .hero-video-section { height: 80vh; }
  .head-txt { font-size: 1.8rem; }
  .hero-buttons, .hero-button-row { flex-direction: column; align-items: center; gap: 15px; }
  .btn-glow, .btn-outline-custom { width: 100%; max-width: 280px; text-align: center; }
  .guarnty-section { gap: 15px; }
  .section-title { font-size: 1.8rem; }
  .cta-heading { font-size: 1.8rem; }
}