/* 
   WE-GYAAN CLASSES - Exact 1:1 Design Replica of Full-Length Image & Ultra-Premium Footer
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --bg-body: #ffffff;
  --bg-light-blue: #f0f7ff;
  --bg-slate: #f8fafc;
  
  --color-green: #00a86b;
  --color-green-hover: #008756;
  
  --color-blue: #007bff;
  --color-blue-hover: #0056b3;
  
  --color-yellow: #ffc107;
  --color-yellow-dark: #e0a800;
  
  --color-red: #e63946;
  --color-red-hover: #c82333;

  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;

  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 50px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--text-dark);
}

/* Top Bar */
.top-bar {
  background: #ffffff;
  color: var(--text-body);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.top-bar a {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 600;
}

/* Header Navbar */
.header-nav {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-atom-logo {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 168, 107, 0.3);
}
.brand-title-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.1;
  text-transform: uppercase;
}
.brand-title-main span {
  color: var(--color-green);
}
.brand-subtitle-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 12px !important;
  transition: all 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-red) !important;
  border-bottom: 2px solid var(--color-red);
}

.btn-header-green {
  background: var(--color-green);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 168, 107, 0.35);
  transition: all 0.3s ease;
}
.btn-header-green:hover {
  background: var(--color-green-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Section with Background Image */
.hero-replica-section {
  position: relative;
  min-height: 620px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(9, 13, 22, 0.82) 100%), url('../images/classroom_learning.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 90px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-replica-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00a86b, #ffc107, #e63946);
  z-index: 10;
}

.hero-content-left {
  position: relative;
  z-index: 2;
}
.hero-heading-caps {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  color: #ffffff;
  transition: all 0.3s ease;
  height: 100%;
}
.hero-glass-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.btn-blue-pill {
  background: var(--color-blue);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
}
.btn-blue-pill:hover {
  background: var(--color-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-green-pill {
  background: var(--color-green);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 168, 107, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
}
.btn-green-pill:hover {
  background: var(--color-green-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Feature Bar Section */
.feature-bar-section {
  padding: 30px 0 60px;
  background: #ffffff;
}

.color-feature-card {
  border-radius: var(--radius-md);
  padding: 28px 22px;
  color: #ffffff;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.color-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.color-card-yellow { background: #ffc107; color: #111827; }
.color-card-green  { background: #00a86b; color: #ffffff; }
.color-card-blue   { background: #007bff; color: #ffffff; }
.color-card-red    { background: #e63946; color: #ffffff; }

.color-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.color-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.color-card-desc {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.95;
  margin-bottom: 0;
}

/* Featured Courses Section */
.featured-courses-section {
  padding: 60px 0;
  background: #ffffff;
}
.section-title-caps {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.course-block-card {
  border-radius: var(--radius-md);
  padding: 34px 24px;
  color: #ffffff;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
}
.course-block-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.course-card-green  { background: #00a86b; }
.course-card-blue   { background: #007bff; }
.course-card-yellow { background: #ffc107; color: #111827; }
.course-card-red    { background: #e63946; }

.course-big-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.course-title-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.course-desc-text {
  font-size: 0.85rem;
  line-height: 1.45;
  opacity: 0.95;
  margin-bottom: 24px;
}

.course-doodle-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.btn-learn-more-white {
  background: #ffffff;
  color: var(--text-dark) !important;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}
.btn-learn-more-white:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

/* Learning Resources */
.learning-resources-section {
  padding: 60px 0;
  background: #ffffff;
}
.resource-white-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.resource-white-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.resource-icon-box {
  width: 58px;
  height: 58px;
  background: #007bff;
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}
.resource-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Avatar Icon Container & Faculty Badge */
.avatar-icon-box {
  width: 48px;
  height: 48px;
  background: #e0f2fe;
  color: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.faculty-icon-badge {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(0, 168, 107, 0.3);
}

/* Testimonials */
.testimonials-section {
  padding: 60px 0 80px;
  background: #f0f7ff;
}
.testimonial-card-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.star-rating {
  color: #ffc107;
  font-size: 1rem;
  margin-bottom: 14px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
}
.dot.active {
  background: var(--color-blue);
  width: 24px;
  border-radius: 12px;
}

/* Ultra-Attractive Premium Dark Footer */
.premium-footer {
  background: linear-gradient(180deg, #0f172a 0%, #090d16 100%);
  color: #94a3b8;
  padding: 70px 0 0;
  position: relative;
  font-size: 0.9rem;
}
.footer-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00a86b, #ffc107, #e63946);
}

.footer-brand-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer-brand-title span {
  color: var(--color-green);
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 24px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--color-green);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links-list a:hover {
  color: var(--color-green);
  transform: translateX(4px);
}
.footer-links-list a i {
  font-size: 0.75rem;
  color: var(--color-green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #cbd5e1;
}
.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--color-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 168, 107, 0.4);
}

.footer-bottom-bar {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 60px;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* Rich Content & Infographics Elements */
.infographic-banner-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.infographic-banner-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(0, 168, 107, 0.15);
  border-radius: 50%;
  filter: blur(40px);
}

.roadmap-step-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}
.roadmap-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-blue);
  box-shadow: var(--shadow-md);
}
.roadmap-number {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-red), var(--color-yellow));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.stat-counter-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.stat-counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.stat-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.methodology-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 4px solid var(--color-blue);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
}
.methodology-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.badge-blue { background: #e0f2fe; color: #0284c7; }
.badge-green { background: #dcfce7; color: #16a34a; }
.badge-yellow { background: #fef9c3; color: #ca8a04; }
.badge-red { background: #fee2e2; color: #dc2626; }

/* Custom Infographic Visual SVG Container */
.svg-infographic-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-subtle);
  text-align: center;
}

/* Floating Right Contact Widget Stack (WhatsApp, Phone, Email) */
.floating-contact-stack {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}
.floating-btn:hover {
  transform: scale(1.12) translateY(-2px);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn-phone {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.floating-btn-email {
  background: linear-gradient(135deg, #e63946, #c82333);
}


