/**
 * Section Base
 *
 * @format
 */

.solutions-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
  background-image: url("../assets/images/b8.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.product-btn {
  margin-bottom: 2rem;
  padding: 0.5rem 0.5rem;
  border-radius: 1.5rem;
  background-color: transparent;
  border-color: beige;
  font-size: 0.5rem;
}
.blue-glow {
  position: static;
}
.solutions-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-around;
  /* flex-direction: column; */
  align-items: center;
}

.solutions-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.solutions-header p {
  color: #64748b;
  font-size: 14px;
  margin-top: 15px;
}

/* Grid Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Zigzag Effect Logic */
.solution-card:nth-child(even) {
  margin-top: 60px; /* Right side cards are lower */
}

/* Card Styling */
.solution-card {
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(241, 245, 249, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: auto;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.1);
}

/* Icon Box with Blue Glow */
.icon-box.blue-glow {
  width: 30px;
  height: 30px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.icon-box i {
  font-size: 14px;
  color: #2563eb;
}

.solution-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.solution-card p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* 5th Card Spanning logic */
.centered-card {
  grid-column: 1 / span 2;
  max-width: 485px;
  margin: 30px auto 0 !important; /* Centers the last card */
}

/* Responsive */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solution-card:nth-child(even) {
    margin-top: 0;
  }
  .centered-card {
    grid-column: auto;
  }
}

.transformation-section {
  padding: 100px 0;
  background: #020617; /* Deep dark background */
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

/* Background Glow Effect */
.transformation-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
}

.transformation-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Comparison Cards */
.comparison-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  width: 30%;
  min-height: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-card h3 {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.4;
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 12px;
  color: #475569;
  font-weight: 500;
}

/* Icons Colors */
.before-card li i {
  color: #ef4444;
  font-size: 14px;
} /* Red X */
.after-card li i {
  color: #22c55e;
  font-size: 14px;
} /* Green Check */

/* Center Visual: Hand & Phone */
.center-visual {
  width: 35%;
  display: flex;
  justify-content: center;
}

.phone-wrapper {
  position: relative;
  width: 260px; /* Fixed width for standard look */
}

.hand-base {
  width: 100%;
  height: auto;
}

.screen-overlay {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  border-radius: 10px;
}

/* Blue Markers & Tag (s29.jpg / image_4bf87e.png style) */
.marker {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid #3b82f6;
  z-index: 10;
}
.top-left {
  top: 10%;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.top-right {
  top: 10%;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}
.bottom-left {
  bottom: 10%;
  left: 0;
  border-right: 0;
  border-top: 0;
}
.bottom-right {
  bottom: 10%;
  right: 0;
  border-left: 0;
  border-top: 0;
}

.size-tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .transformation-content {
    flex-direction: column;
    text-align: center;
  }
  .comparison-card {
    width: 100%;
    min-height: auto;
  }
}

/* capibalites section */
.capabilities-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
  background-image: url("../assets/images/b5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.capabilities-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 50px;
}

/* Features List Styling */
.features-list {
  width: 50%;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Active/Highlighted Feature jaisa image mein hai */
.active-feature {
  background: #4f46e5; /* Primary Blue */
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.active-feature h3,
.active-feature p,
.active-feature i {
  color: #fff !important;
}

.feature-icon i {
  font-size: 24px;
  color: #4f46e5;
}

.feature-text h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.feature-text p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Mobile Visual & Ripple Effect */
.mobile-visual {
  width: 45%;
  display: flex;
  justify-content: center;
  position: relative;
}

.ripple-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-img {
  /* width: 280px; */
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.ripple {
  position: absolute;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  animation: ripple-animation 4s linear infinite;
  z-index: 1;
}

.ripple:nth-child(1) {
  width: 400px;
  height: 400px;
  animation-delay: 0s;
}
.ripple:nth-child(2) {
  width: 550px;
  height: 550px;
  animation-delay: 1s;
}
.ripple:nth-child(3) {
  width: 700px;
  height: 700px;
  animation-delay: 2s;
}

@keyframes ripple-animation {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .capabilities-wrapper {
    flex-direction: column;
  }
  .features-list,
  .mobile-visual {
    width: 100%;
  }
}

/* Ai layers */
.ai-layers-section {
  padding: 100px 0;
  background: #020617;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.ai-layers-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid transparent;
  padding: 4rem 6rem;
  background-image: url("../assets/images/bg3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.8rem;
}

/* Text Content Styling */
.ai-text-content {
  width: 90%;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 450px;
}

/* List Styling with Borders */
.layers-list {
  list-style: none;
  padding: 0;
}

.layers-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.layers-list li:last-child {
  border-bottom: none;
}

.layers-list li:hover {
  padding-left: 10px;
  background: rgba(59, 130, 246, 0.05);
}

.dot-icon {
  width: 10px;
  height: 10px;
  background: #3b82f6; /* Bright Blue Dot */
  border-radius: 50%;
  box-shadow: 0 0 10px #3b82f6;
  flex-shrink: 0;
}

.layers-list li p {
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
}

/* Image & Glow Effects */
.ai-image-container {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
}

.ai-robot-img {
  max-width: 100%;
  height: auto;
  z-index: 2;
  /* Image ko thoda dark blend karne ke liye */
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.2));
}

.purple-glow {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.2) 0%,
    transparent 70%
  );
  z-index: 1;
}

/* New Changes */
/* Container alignment */
.capabilities-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.features-list {
  flex: 1;
}
.mobile-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Feature Item Styling */
.feature-item {
  display: flex;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* Jab feature active ho (Background Change) */
.feature-item.active-feature {
  background-color: #3e4fec; /* Light blue background */
  /* border-color: #d1e3ff; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item.active-feature h3 {
  color: #007bff; /* Title color change */
}

/* Image stay in place and smooth fade */
.mockup-img {
  max-width: 100%;
  height: 465px;
  transition:
    opacity 0.4s ease-in-out,
    transform 0.4s ease;
}
/* Responsive */
@media (max-width: 992px) {
  .ai-layers-wrapper {
    flex-direction: column;
    padding: 1rem 2rem;
  }
  .ai-text-content,
  .ai-image-container {
    width: 100%;
  }
  /* .layers-list li { justify-content: center; } */
}

@media (max-width: 768px) {
  .mockup-img {
    max-width: 100%;
    height: auto;
  }
}

/* White Label Section */
.white-label-section {
  padding: 80px 0;
  background-color: #f0f7ff; /* Light blue background for outer area */
  background-image: url("../assets/images/c1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* border-radius: 40px;
     overflow: hidden; */
}

.outer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  /* background-color: #fff9ff; */

  /* background: #bfdbfe;  */
  border-radius: 40px;
}

.inner-white-box {
  /* background: #ffffff; */
  border-radius: 30px;
  padding: 20px 25px;
  /* background-image: url('../assets/images/c1.png'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1000px;
}

.white-label-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text & Feature Styling */
.text-area {
  width: 55%;
}

.main-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 15px;
}

.sub-title {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 40px;
}

.scalability-card {
  display: flex;
  gap: 20px;
  padding: 20px 20px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.scalability-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: #3b82f6;
}

.card-icon.blue-tint {
  width: 45px;
  height: 45px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  color: #3b82f6;
  font-size: 20px;
}

.card-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}
.card-info p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* Visual Area with Ripple */
.visual-area {
  width: 40%;
  display: flex;
  justify-content: center;
  position: relative;
}

.ripple-bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-mockup {
  width: 280px;
  z-index: 5;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.course-mockup-enhanced {
  width: 100%;
  max-width: 550px; /* 🔥 increased */
  height: auto;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: transform 0.3s ease;
}

/* Desktop (extra large feel) */
@media (min-width: 1200px) {
  .course-mockup-enhanced {
    max-width: 650px; /* 🚀 big hero size */
    margin-left: 180px; /* keep your spacing */
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .course-mockup-enhanced {
    max-width: 420px;
    margin-left: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .course-mockup-enhanced {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}
/* 🔷 VR Visual Area */
.vr-visual-area {
  flex: 1.3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔷 VR Container */
.vr-ripple-container {
  position: relative;
  width: 100%;
  max-width: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

/* 🔷 Glow Background */
.vr-glow-bg {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

/* 🔷 VR Image */
.vr-mockup-image {
  width: 100%;
  max-width: 650px; /* 🔥 bigger */
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Hover effect */
.vr-mockup-image:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.3);
}

/* 🔷 Ripple Effect */
.vr-ripple {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  animation: vrRippleAnim 4s infinite;
  z-index: 1;
}

.vr-ripple:nth-child(2) {
  animation-delay: 1s;
}
.vr-ripple:nth-child(3) {
  animation-delay: 2s;
}

@keyframes vrRippleAnim {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .vr-mockup-image {
    max-width: 320px;
  }

  .vr-ripple-container {
    padding: 30px 10px;
  }
}
.circle-ripple {
  position: absolute;
  border: 2px solid #dbeafe;
  border-radius: 50%;
  z-index: 1;
}

.circle-ripple:nth-child(1) {
  width: 400px;
  height: 400px;
}
.circle-ripple:nth-child(2) {
  width: 550px;
  height: 550px;
}

/* Responsive */
@media (max-width: 992px) {
  .white-label-content {
    flex-direction: column;
    text-align: center;
  }
  .text-area,
  .visual-area {
    width: 100%;
  }
  .scalability-card {
    text-align: left;
  }
  .outer-container {
    padding: 15px;
  }
}

/* voice that section */

.testimonial-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

.voices-wrapper {
  position: relative;
  height: 600px;
  max-width: 900px;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-image: url("../assets/images/bg4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Globe Styling */
.globe-bg {
  width: 100%;
  opacity: 0.1;
  position: absolute;
  bottom: -100px;
  z-index: 1;
}
/*//////////////////////////////////////////////////////////////////////////////////////////////
/* Floating Avatars Base */
.floating-user {
  position: absolute;
  z-index: 5;
  transition: transform 0.3s ease;
}

.floating-user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
  cursor: pointer;
}

/* Quote Box (Julia's Style)
.quote-box {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: left;
  z-index: 10;
}

.quote-box p {
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 8px;
}
.quote-box span {
  font-size: 12px;
  color: #64748b;
} */
/* Quote Box (Julia's Style) */
.quote-box {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: left;
  z-index: 10;

  /* NEW */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.quote-box p {
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 8px;
}

.quote-box span {
  font-size: 12px;
  color: #64748b;
}

/* SHOW ON HOVER */
.floating-user:hover .quote-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Positions for Avatars (as per image_56f0d0.png) */
.user-1 {
  top: 20%;
  left: 15%;
  animation: float-slow 4s ease-in-out infinite;
}
.user-2 {
  top: 10%;
  left: 45%;
  animation: float-slow 5s ease-in-out infinite 1s;
}
.user-3 {
  top: 35%;
  right: 15%;
  animation: float-slow 6s ease-in-out infinite 2s;
}
.user-4 {
  bottom: 25%;
  right: 10%;
  animation: float-slow 4s ease-in-out infinite 0.5s;
}
.user-5 {
  bottom: 20%;
  left: 20%;
  animation: float-slow 5s ease-in-out infinite 1.5s;
}

/* Animation */
@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* .voices-wrapper { height: 400px; } */
  .floating-user img {
    width: 50px;
    height: 50px;
  }
  .quote-box {
    width: 180px;
    padding: 10px;
  }
}

/* Banner section */
.cta-section {
  padding: 100px 0;
  background-color: #f0f7ff; /* Matching the outer section bg */
}

.cta-banner-card {
  background: linear-gradient(
    105deg,
    #7eb6f8 0%,
    #a3cdff 100%
  ); /* Blue gradient as per image */
  border-radius: 40px;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

/* Content Styling */
.cta-text-content {
  width: 60%;
  z-index: 2;
}

.cta-text-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-text-content p {
  font-size: 14px;
  color: #1e293b;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Glowing Button Styling */
.btn-glow-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4f46e5; /* Vibrant blue/purple */
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
  transition: all 0.3s ease;
}

.btn-glow-blue:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.6);
}

/* Image/Mockup Positioning */
.cta-image-container {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hand-mockup-wrapper {
  position: relative;
  /* Size as per image_575da6.png */
  transform: rotate(-10deg) translateY(20px); /* Tilted look */
}

.cta-hand {
  width: 100%;
  height: auto;
}

.cta-screen {
  position: absolute;
  top: 40%;
  left: 58%;
  transform: translate(-50%, -51%);
  width: 88%;
  border-radius: 12px;
}

.section-header h2 {
  font-size: 2rem;
}
.section-header p {
  font-size: 12px;
}

/* Responsive Logic */
@media (min-width: 2065px) {
  .solution-card {
    height: 300px;
  }
  .icon-box.blue-glow,
  .card-icon.blue-tint {
    width: 4rem;
    height: 4rem;
  }
  .solutions-header h2 {
    font-size: 3.8rem;
  }
  .solutions-header p {
    font-size: 2rem;
  }
  .solution-card h3 {
    font-size: 1.5rem;
  }
  .solution-card p {
    font-size: 1.3rem;
  }
  .icon-box i {
    font-size: 1.8rem;
    color: #2563eb;
  }
  .comparison-card h3 {
    font-size: 2rem;
  }
  .comparison-list li {
    font-size: 1.5rem;
  }
  .before-card li i,
  .after-card li i,
  .card-icon i {
    font-size: 2rem;
  }
  .phone-wrapper {
    width: 500px;
  }

  .section-header h2 {
    font-size: 4rem;
  }
  .section-header p {
    font-size: 1.7rem;
    max-width: inherit;
  }
  .feature-text h3 {
    font-size: 1.8rem;
  }
  .feature-text p,
  .card-info p {
    font-size: 1.5rem;
  }
  .mockup-img,
  .course-mockup {
    width: auto;
  }
  .section-title,
  .main-title {
    font-size: 4rem;
  }
  .section-subtitle,
  .sub-title {
    font-size: 2rem;
    max-width: inherit;
  }
  .layers-list li p,
  .card-info h3 {
    font-size: 1.8rem;
  }
  .outer-container {
    max-width: inherit;
  }
  .inner-white-box {
    max-width: inherit;
  }
}
@media (max-width: 992px) {
  .cta-banner-card {
    flex-direction: column;
    padding: 50px 30px;
    text-align: center;
  }
  .cta-text-content {
    width: 100%;
    margin-bottom: 50px;
  }
  .cta-image-container {
    width: 100%;
    justify-content: center;
  }
  .cta-text-content h2 {
    font-size: 32px;
    padding: 2rem 0px;
  }
}
