/* Start custom CSS for html, class: .elementor-element-f2be362 *//* =========================================================
   SECTION 1 CSS - HERO HEADER (Advance Glassmorphism & Animations)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand-blue: #0088cc;
  --brand-orange: #e85027;
  --brand-purple: #2a2050;
  --brand-light: #f4f9fc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

/* Base Container Structure */
.about-hero-section {
  position: relative;
  width: 100%;
  padding: 90px 0 70px 0;
  background-color: #ffffff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.pci-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Background Ambient Glow Effects */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.glow-blue {
  top: -100px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--brand-blue);
}

.glow-orange {
  bottom: -50px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: var(--brand-orange);
}

/* Grid Layout */
.hero-grid-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 45px;
  align-items: center;
}

/* Live Badge Capsule */
.pci-badge-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(0, 136, 204, 0.08);
  border: 1.5px solid rgba(0, 136, 204, 0.2);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.08);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 80, 39, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 80, 39, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(232, 80, 39, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 80, 39, 0); }
}

/* Headings & Text */
.hero-main-heading {
  font-size: 42px;
  line-height: 1.22;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 0 0 18px 0;
  letter-spacing: -0.5px;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-description {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.brand-highlight {
  color: var(--brand-purple);
  font-weight: 700;
}

/* Stats Cards Section */
.hero-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 2px dashed #edf5fa;
  padding-top: 28px;
}

.stat-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1.5px solid #edf5fa;
  box-shadow: 0 10px 25px rgba(42, 32, 80, 0.04);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-mini-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
  box-shadow: 0 15px 30px rgba(232, 80, 39, 0.12);
}

.stat-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-purple);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Right Glass 3D Visual Card */
.hero-visual-content {
  perspective: 1000px;
}

.glass-3d-card {
  position: relative;
  background: linear-gradient(135deg, rgba(42, 32, 80, 0.96) 0%, rgba(0, 136, 204, 0.92) 100%);
  border-radius: 28px;
  padding: 42px 35px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(42, 32, 80, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.5s ease;
  animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(1deg); }
}

.card-top-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.glass-card-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px 0;
}

.glass-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #e1eff7;
  margin-bottom: 28px;
}

.card-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.feature-pill:hover {
  background: rgba(232, 80, 39, 0.8);
}

/* Mobile Responsiveness */
@media screen and (max-width: 992px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media screen and (max-width: 600px) {
  .hero-main-heading { font-size: 30px; }
  .hero-stats-wrapper { grid-template-columns: 1fr; }
  .glass-3d-card { padding: 30px 22px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-43e9940 *//* =========================================================
   SECTION 2 CSS - EXPANDED 6-CARD GRID SYSTEM
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #0088cc;
  --brand-orange: #e85027;
  --brand-purple: #2a2050;
  --brand-light: #f4f9fc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

.mission-vision-section {
  position: relative;
  width: 100%;
  padding: 85px 0;
  background-color: #f8fafc;
  border-top: 1.5px solid #edf5fa;
  border-bottom: 1.5px solid #edf5fa;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.glow-blue-top {
  top: -80px; right: -50px;
  width: 400px; height: 400px;
  background: rgba(0, 136, 204, 0.1);
}

.glow-orange-bottom {
  bottom: -80px; left: -50px;
  width: 400px; height: 400px;
  background: rgba(232, 80, 39, 0.1);
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px auto;
}

.badge-purple {
  background: rgba(42, 32, 80, 0.08);
  border-color: rgba(42, 32, 80, 0.18);
  color: var(--brand-purple);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 10px 0 14px 0;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive 3-Column Grid for Desktop, 2 for Tablet, 1 for Mobile */
.mv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Glass Card Base Styling */
.mv-glass-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 28px;
  border: 1.5px solid #edf5fa;
  box-shadow: 0 10px 30px rgba(42, 32, 80, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top Glow Line */
.card-glow-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-theme .card-glow-line, .blue-theme .card-glow-line {
  background: linear-gradient(90deg, var(--brand-blue), #00b4d8);
}

.vision-theme .card-glow-line, .orange-theme .card-glow-line {
  background: linear-gradient(90deg, var(--brand-orange), #ff914d);
}

.purple-theme .card-glow-line {
  background: linear-gradient(90deg, var(--brand-purple), #5c41a8);
}

/* Hover Lift & Glow Animations */
.mv-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(42, 32, 80, 0.12);
}

.mv-glass-card:hover .card-glow-line {
  opacity: 1;
}

.mission-theme:hover, .blue-theme:hover { border-color: rgba(0, 136, 204, 0.4); }
.vision-theme:hover, .orange-theme:hover { border-color: rgba(232, 80, 39, 0.4); }
.purple-theme:hover { border-color: rgba(42, 32, 80, 0.4); }

/* Header & Icon Boxes */
.mv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mv-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: transform 0.35s ease;
}

.blue-box { background: rgba(0, 136, 204, 0.1); color: var(--brand-blue); }
.orange-box { background: rgba(232, 80, 39, 0.1); color: var(--brand-orange); }
.purple-box { background: rgba(42, 32, 80, 0.1); color: var(--brand-purple); }

.mv-glass-card:hover .mv-icon-box {
  transform: scale(1.1) rotate(6deg);
}

.mv-tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #f1f5f9;
  color: var(--text-muted);
}

/* Text Formatting */
.mv-card-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 0 0 12px 0;
}

.mv-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Bullet Points */
.mv-points-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1.5px dashed #edf5fa;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-points-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.12);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.vision-theme .check-icon, .orange-theme .check-icon { background: rgba(232, 80, 39, 0.12); color: var(--brand-orange); }
.purple-theme .check-icon { background: rgba(42, 32, 80, 0.12); color: var(--brand-purple); }

/* Responsive Layout */
@media screen and (max-width: 1024px) {
  .mv-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media screen and (max-width: 680px) {
  .mv-cards-grid {
    grid-template-columns: 1fr;
  }
  .section-title { font-size: 28px; }
  .mv-glass-card { padding: 28px 20px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a6f1e14 *//* =========================================================
   SECTION 3 CSS - CORE EDUCATIONAL PILLARS (Glassmorphism & Micro-Interactions)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #0088cc;
  --brand-orange: #e85027;
  --brand-purple: #2a2050;
  --brand-light: #f4f9fc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

/* Base Container & Section Spacing */
.educational-pillars-section {
  position: relative;
  width: 100%;
  padding: 85px 0;
  background-color: #ffffff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.glow-top-left {
  top: -60px;
  left: -40px;
  width: 360px;
  height: 360px;
  background: var(--brand-blue);
}

.glow-bottom-right {
  bottom: -60px;
  right: -40px;
  width: 360px;
  height: 360px;
  background: var(--brand-orange);
}

/* Header Alignment */
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px auto;
}

.badge-orange {
  background: rgba(232, 80, 39, 0.08);
  border: 1.5px solid rgba(232, 80, 39, 0.2);
  color: var(--brand-orange);
}

.pulse-dot.blue {
  background-color: var(--brand-blue);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 10px 0 14px 0;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Grid Layout (3 Columns Desktop, 2 Tablet, 1 Mobile) */
.pillars-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Pillar Card Architecture */
.pillar-glass-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #edf5fa;
  border-radius: 22px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 10px 30px rgba(42, 32, 80, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Top Color Accent Line */
.pillar-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.bar-blue { background: linear-gradient(90deg, var(--brand-blue), #00b4d8); }
.bar-orange { background: linear-gradient(90deg, var(--brand-orange), #ff914d); }
.bar-purple { background: linear-gradient(90deg, var(--brand-purple), #5c41a8); }

/* Hover Animations */
.pillar-glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 136, 204, 0.3);
  box-shadow: 0 20px 40px rgba(42, 32, 80, 0.12);
}

.pillar-glass-card:hover .pillar-top-bar {
  opacity: 1;
  height: 5px;
}

/* Icon Box Design */
.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: transform 0.35s ease;
}

.blue-theme { background: rgba(0, 136, 204, 0.1); color: var(--brand-blue); }
.orange-theme { background: rgba(232, 80, 39, 0.1); color: var(--brand-orange); }
.purple-theme { background: rgba(42, 32, 80, 0.1); color: var(--brand-purple); }

.pillar-glass-card:hover .pillar-icon-box {
  transform: scale(1.1) rotate(6deg);
}

/* Card Content Typography */
.pillar-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 0 0 12px 0;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 22px 0;
  flex-grow: 1;
}

/* Bottom Tag Capsule */
.pillar-tag {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--brand-light);
  color: var(--brand-purple);
  border: 1px solid #e1eff7;
}

/* Responsive Media Queries */
@media screen and (max-width: 1024px) {
  .pillars-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media screen and (max-width: 680px) {
  .pillars-grid-layout {
    grid-template-columns: 1fr;
  }
  .section-title { font-size: 28px; }
  .pillar-glass-card { padding: 30px 22px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ae6766b *//* =========================================================
   SECTION 4 CSS - MANAGEMENT MESSAGE (Advance Glassmorphism & Branding)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #0088cc;
  --brand-orange: #e85027;
  --brand-purple: #2a2050;
  --brand-light: #f4f9fc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

/* Base Section Styling */
.management-message-section {
  position: relative;
  width: 100%;
  padding: 85px 0 100px 0;
  background-color: #f8fafc;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.glow-top-right {
  top: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: var(--brand-blue);
}

.glow-bottom-left {
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: var(--brand-orange);
}

/* CTA Outer Wrapper Card */
.management-card-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--brand-purple) 0%, #1a1336 60%, var(--brand-blue) 100%);
  border-radius: 28px;
  padding: 55px 45px;
  color: #ffffff;
  box-shadow: 0 25px 55px rgba(42, 32, 80, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

/* Background Animated Orb Overlay */
.management-card-wrapper::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 80, 39, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.management-card-inner {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

/* Pill Badge */
.management-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 22px;
}

/* Main Quote Heading */
.management-quote-heading {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 22px 0;
  font-style: italic;
  letter-spacing: -0.3px;
}

/* Body Text Paragraphs */
.management-body-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.management-body-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #e1eff7;
  margin: 0;
  font-weight: 400;
}

.management-body-text strong {
  color: #ff914d;
  font-weight: 700;
}

/* Director Profile & Verification Bar */
.director-profile-row {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 25px;
  flex-wrap: wrap;
}

.director-avatar-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.director-details {
  flex-grow: 1;
}

.director-name {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.director-title {
  color: #ff914d;
  font-size: 13.5px;
  font-weight: 600;
}

/* Verified Ribbon Badge */
.director-verified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
}

.verified-icon {
  width: 18px;
  height: 18px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

/* Responsive Scaling */
@media screen and (max-width: 768px) {
  .management-card-wrapper {
    padding: 35px 24px;
  }
  .management-quote-heading {
    font-size: 24px;
  }
  .management-body-text p {
    font-size: 14px;
  }
  .director-profile-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-483a4ac *//* =========================================================
   SECTION 5 CSS - METHODOLOGY ROADMAP
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #0088cc;
  --brand-orange: #e85027;
  --brand-purple: #2a2050;
  --brand-light: #f4f9fc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

.methodology-section {
  position: relative;
  width: 100%;
  padding: 85px 0;
  background-color: #ffffff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.pci-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.glow-top-left {
  top: -60px;
  left: -40px;
  width: 360px;
  height: 360px;
  background: var(--brand-blue);
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px auto;
}

.pci-badge-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.badge-blue {
  background: rgba(0, 136, 204, 0.08);
  border: 1.5px solid rgba(0, 136, 204, 0.2);
  color: var(--brand-blue);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pulse-dot.orange { background-color: var(--brand-orange); }

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 10px 0 14px 0;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.roadmap-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #edf5fa;
  border-radius: 20px;
  padding: 32px 22px;
  box-shadow: 0 10px 30px rgba(42, 32, 80, 0.04);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.roadmap-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-orange);
  box-shadow: 0 18px 35px rgba(232, 80, 39, 0.12);
}

.step-number-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: 900;
  color: #e2e8f0;
  transition: color 0.3s ease;
}

.roadmap-card:hover .step-number-badge {
  color: var(--brand-blue);
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 0 0 10px 0;
}

.step-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 600px) {
  .roadmap-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e430070 *//* =========================================================
   SECTION 6 CSS - FAQ ACCORDION
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #0088cc;
  --brand-orange: #e85027;
  --brand-purple: #2a2050;
  --brand-light: #f4f9fc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

.about-faq-section {
  position: relative;
  width: 100%;
  padding: 85px 0 100px 0;
  background-color: #f8fafc;
  border-top: 1.5px solid #edf5fa;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.glow-bottom-right {
  bottom: -60px;
  right: -40px;
  width: 360px;
  height: 360px;
  background: var(--brand-orange);
}

.badge-purple {
  background: rgba(42, 32, 80, 0.08);
  border: 1.5px solid rgba(42, 32, 80, 0.18);
  color: var(--brand-purple);
}

.pulse-dot.blue { background-color: var(--brand-blue); }

.faq-accordion-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-card {
  background: #ffffff;
  border: 1.5px solid #edf5fa;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(42, 32, 80, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion-card.active {
  border-color: var(--brand-blue);
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.12);
}

.faq-toggle-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1.4;
  padding-right: 15px;
}

.faq-icon-indicator {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-blue);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-accordion-card.active .faq-icon-indicator {
  color: #ffffff;
  background: var(--brand-orange);
  transform: rotate(180deg);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 26px;
}

.faq-accordion-card.active .faq-answer-content {
  padding-bottom: 22px;
}

.faq-answer-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  border-top: 1px dashed #edf5fa;
  padding-top: 16px;
}

@media screen and (max-width: 600px) {
  .faq-toggle-btn { padding: 18px 20px; }
  .faq-question-text { font-size: 14.5px; }
  .faq-answer-content { padding: 0 20px; }
  .faq-answer-content p { font-size: 13.5px; }
}/* End custom CSS */