/* Reset and base styles */
* {
  direction: rtl;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background-color: white;
  overflow-x: hidden;
  color: #181d6c;
  line-height: 1.6;
}


.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Text styles with animation */
.get-in-touch {
  text-align: center;
  color: #f75d5a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.contact-heading {
  text-align: center;
  color: #181d6c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s 0.2s ease forwards;
}

/* Form styles with animations */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.6s 0.4s ease forwards;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #1a2b3b;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  outline: none;
  border-color: #f75d5a;
  box-shadow: 0 0 0 4px rgba(247, 93, 90, 0.1);
  transform: translateY(-2px);
}

/* Checkbox styles */
.checkbox-container {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.custom-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.375rem;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-input:checked+.custom-checkbox {
  background-color: #f75d5a;
  border-color: #f75d5a;
}

.checkbox-input:checked+.custom-checkbox::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: checkmark 0.2s ease-in-out forwards;
}

.checkbox-label {
  color: #64748b;
  font-size: 0.875rem;
}

.checkbox-label a {
  color: #181d6c;
  text-decoration: none;
  border-bottom: 1px solid #181d6c;
  transition: all 0.2s ease;
}

.checkbox-label a:hover {
  color: #f75d5a;
  border-bottom-color: #f75d5a;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background-color: #f75d5a;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(247, 93, 90, 0.1);
}

.submit-button:hover {
  background-color: #181d6c;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(24, 29, 108, 0.2);
}

/* Decorative elements */
.ring-decoration {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background-image: url("https://designingmedia.com/eginary/wp-content/uploads/2024/10/rectangle-shape.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 20s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes checkmark {
  0% {
    transform: rotate(45deg) scale(0);
  }

  100% {
    transform: rotate(45deg) scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  50% {
    transform: translateY(-60%) rotate(5deg);
  }
}

/* Responsive styles */
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-input[type="email"] {
    grid-column: 1 / -1;
  }

  .submit-button {
    width: auto;
    margin: 0 auto;
    padding: 1rem 3rem;
  }
}

@media (max-width: 768px) {
  .ring-decoration {
    display: none;
  }
  .hero-description{
    display: none;
  }
  #illustration-1{
    display: none;
  }
}

/* Container styles */
.testimonials-section {
  max-width: 100%;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #fff8f8);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Text styles */
.subtitle {
  text-align: center;
  color: #f75d5a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.title {
  text-align: center;
  color: #181d6c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.6s 0.2s ease forwards;
}

/* Testimonial styles */
.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(24, 29, 108, 0.05);
  margin: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s 0.4s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(24, 29, 108, 0.1);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.name {
  color: #181d6c;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}


/* Stars rating */
.stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.star {
  color: #f75d5a;
  font-size: 1.25rem;
}

/* Swiper styles */
.swiper {
  padding: 2rem 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Update existing fadeInUp animation if needed */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer container */
.footer {
  position: relative;
  background-color: #181d6c;
  color: white;
  padding: 5rem 1rem 2rem;
  width: 100%;
}

/* Container for content */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Grid layout */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Logo styles */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.footer-logo img {
  height: 40px;
}

.footer-logo span {
  background: linear-gradient(45deg, #f75d5a, #ff8a84);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Description text */
.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 400px;
  font-size: 0.875rem;
}

/* Column headings */
.footer-heading {
  color: #f75d5a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 15px;
}

.footer-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #f75d5a;
  border-radius: 2px;
}

/* Link lists */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #f75d5a;
  transform: translateX(5px);
}

/* Contact information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.875rem;
}

.contact-item:hover {
  background: rgba(247, 93, 90, 0.1);
  transform: translateX(5px);
}

/* Social media */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #f75d5a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: white;
  transform: translateY(-5px);
}

.social-link:hover svg {
  color: #f75d5a;
}

/* Add animations */
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Copyright */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 93, 90, 0.2);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer {
    padding: 4rem 1rem 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Text content */
.section-subtitle {
  color: #f75d5a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.section-title {
  color: #181d6c;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.2s ease forwards;
}

.section-description {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.3s ease forwards;
}

/* Features list */
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s 0.4s ease forwards;
}

.feature-item:hover {
  background: rgba(247, 93, 90, 0.05);
  transform: translateX(10px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(247, 93, 90, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: #f75d5a;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  color: #f75d5a;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon svg {
  color: white;
}

/* Button styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background-color: #f75d5a;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.6s 0.5s ease forwards;
}

.cta-button:hover {
  background-color: #181d6c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 29, 108, 0.15);
}

/* Illustration */
.illustration {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s 0.6s ease forwards;
}

/* Decorative elements */
.learning-section::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 20%;
  width: 200px;
  height: 200px;
  border: 30px solid rgba(247, 93, 90, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.learning-section::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: 10%;
  width: 100px;
  height: 100px;
  background: rgba(24, 29, 108, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: spin 20s linear infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive styles */
@media (min-width: 1024px) {
  .learning-container {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 3rem;
  }

  .illustration {
    margin: 0 0 0 auto;
  }
}

@media (max-width: 768px) {
  .learning-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .learning-section::before,
  .learning-section::after {
    display: none;
  }
}

/* Additional animations */
@keyframes floatTriangle {

  0%,
  100% {
    transform: rotate(-15deg) translate(0, 0);
  }

  50% {
    transform: rotate(-5deg) translate(10px, -10px);
  }
}

/* Responsive styles */
@media (min-width: 1024px) {
  .career-container {
    grid-template-columns: 1fr 1fr;
  }

  .career-section .section-title {
    font-size: 3rem;
  }

  .content-right {
    order: 2;
  }

  .illustration-left {
    order: 1;
  }
}

@media (max-width: 768px) {
  .career-section {
    padding: 3rem 1rem;
  }

  .career-section .section-title {
    font-size: 2rem;
  }

  .career-section::before,
  .career-section::after,
  .career-section .triangle {
    display: none;
  }
}

.courses-section {
  position: relative;
  padding: 5rem 1rem 8rem;
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  overflow: hidden;
  margin-bottom: -2px;
}

.courses-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.courses-section .subtitle {
  text-align: center;
  color: #f75d5a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.courses-section .title {
  text-align: center;
  color: #181d6c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.6s 0.2s ease forwards;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.course-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(24, 29, 108, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.6s 0.4s ease forwards;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      transparent,
      rgba(247, 93, 90, 0.03));
  opacity: 0;
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(24, 29, 108, 0.15);
}

.course-card:hover::before {
  opacity: 1;
}

.course-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-content {
  padding: 1.5rem;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-meta .price {
  color: #f75d5a;
  font-weight: 600;
  font-size: 1.25rem;
}

.course-content h3 {
  color: #181d6c;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.course-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.enroll-button {
  position: relative;
  overflow: hidden;
  background: #f75d5a;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.enroll-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #181d6c;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  z-index: -1;
}

.enroll-button:hover::before {
  width: 300%;
  height: 300%;
}

.wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  overflow: hidden;
}

.wave-bottom .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: wave 10s linear infinite;
}

.wave-bottom .wave:nth-child(2) {
  bottom: 10px;
  opacity: 0.5;
  animation: wave 7s linear infinite reverse;
}

.wave-bottom .wave:nth-child(3) {
  bottom: 15px;
  opacity: 0.2;
  animation: wave 5s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.wave-bottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8f9ff' fill-opacity='0.4' d='M0,128L48,144C96,160,192,192,288,197.3C384,203,480,181,576,165.3C672,149,768,139,864,154.7C960,171,1056,213,1152,218.7C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
  background-size: 100% 100%;
  opacity: 0.5;
  animation: waveAnimation 15s linear infinite reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .courses-section {
    padding: 3rem 1rem;
  }

  .courses-section .title {
    font-size: 2rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .wave-bottom {
    height: 100px;
  }
}

/* Add decorative elements */
.courses-section::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 20%;
  width: 200px;
  height: 200px;
  border: 40px solid rgba(247, 93, 90, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.courses-section::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: 30%;
  width: 100px;
  height: 100px;
  background: rgba(24, 29, 108, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: spin 20s linear infinite;
}

/* Additional decorative elements */
.courses-section .floating-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  right: 5%;
  top: 15%;
  background: radial-gradient(circle, #f75d5a 20%, transparent 20%);
  background-size: 20px 20px;
  opacity: 0.1;
  animation: floatDots 20s linear infinite;
}

.courses-section .circle-decoration {
  position: absolute;
  left: 5%;
  bottom: 20%;
  width: 150px;
  height: 150px;
  border: 2px dashed #f75d5a;
  border-radius: 50%;
  opacity: 0.2;
  animation: spinSlow 30s linear infinite;
}

/* New animations */
@keyframes waveAnimation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes floatDots {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Add shine effect to course cards */
.course-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  20%,
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Section container */
.blog-section {
  margin: 0 auto;
  padding: 5rem 5.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #fff8f8);
}

/* Content layout */
.blog-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-cards-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-cards-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text styles */
.section-subtitle {
  color: #f75d5a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  color: #181d6c;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-description {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Blog card */
.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 29, 108, 0.1);
}

.blog-card:nth-child(1) {
  background: #e8f1ff;
}

.blog-card:nth-child(2) {
  background: #fff5e6;
}

.blog-card-center {
  background: #e6fff7;
}

.blog-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  color: #0a2540;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: #f75d5a;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Button styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background-color: #f75d5a;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #181d6c;
  transform: translateY(-2px);
}

/* Decorative elements */
.decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background: rgba(247, 93, 90, 0.05);
  animation: floatAnimation 6s ease-in-out infinite;
}

.decoration-2 {
  width: 200px;
  height: 200px;
  background: rgba(24, 29, 108, 0.05);
  animation: floatAnimation 8s ease-in-out infinite reverse;
}

.decoration-3 {
  background: #f75d5a;
  animation: pulseAnimation 4s ease-in-out infinite;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .blog-content {
    grid-template-columns: 1fr;
  }

  .blog-cards-left {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog-card {
    flex: 1 1 300px;
  }

  .blog-header {
    text-align: center;
    order: -1;
    margin-bottom: 2rem;
  }

  .decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .blog-cards-left {
    flex-direction: column;
  }

  .blog-card {
    width: 100%;
  }
}

/* Add subtle animations */
@keyframes floatAnimation {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -20px);
  }
}

@keyframes pulseAnimation {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

/* Add shine effect to cards */
.blog-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  animation: shine 6s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  20%,
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Enhance section title without changing structure */
.section-subtitle {
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40%;
  height: 2px;
  background: #f75d5a;
  animation: widthPulse 3s ease-in-out infinite;
}

@keyframes widthPulse {

  0%,
  100% {
    width: 40%;
  }

  50% {
    width: 60%;
  }
}

/* Add these new decorative elements */
.blog-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Floating circles pattern */
.blog-dots {
  top: 15%;
  right: 15%;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(#f75d5a 15%, transparent 15%),
    radial-gradient(#181d6c 15%, transparent 15%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  opacity: 0.1;
  animation: rotateDots 20s linear infinite;
}

/* Large gradient circle */
.blog-circle-1 {
  top: 25%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at center,
      rgba(247, 93, 90, 0.1) 0%,
      transparent 70%);
  border: 2px dashed rgba(247, 93, 90, 0.2);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

/* Hexagon shape */
.blog-hexagon {
  bottom: 20%;
  right: 20%;
  width: 100px;
  height: 115px;
  background: rgba(24, 29, 108, 0.05);
  clip-path: polygon(50% 0%,
      100% 25%,
      100% 75%,
      50% 100%,
      0% 75%,
      0% 25%);
  animation: spin 20s linear infinite;
}

/* Curved line decoration */
.blog-curve {
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  border: 2px dashed #f75d5a;
  border-radius: 50%;
  border-bottom: none;
  opacity: 0.2;
  animation: pulse 4s ease-in-out infinite;
}

/* Abstract shape */
.blog-shape {
  bottom: 15%;
  left: 20%;
  width: 120px;
  height: 120px;
  background: rgba(247, 93, 90, 0.1);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation: morphShape 8s linear infinite;
}

/* Floating squares */
.blog-squares {
  top: 30%;
  right: 25%;
  width: 140px;
  height: 140px;
  transform: rotate(45deg);
  background: repeating-linear-gradient(45deg,
      rgba(24, 29, 108, 0.03) 0px,
      rgba(24, 29, 108, 0.03) 10px,
      transparent 10px,
      transparent 20px);
  animation: floatAndRotate 10s ease-in-out infinite;
}

/* Glowing orb */
.blog-orb {
  top: 60%;
  right: 30%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%,
      rgba(247, 93, 90, 0.2) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: glow 4s ease-in-out infinite;
}

/* Add new animations */
@keyframes morphShape {

  0%,
  100% {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  }

  50% {
    clip-path: polygon(50% 0%, 100% 50%, 82% 100%, 18% 100%, 0% 50%);
  }
}

@keyframes floatAndRotate {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(225deg) translateY(-20px);
  }
}

@keyframes glow {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.2);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    transform: translateX(-50%) scaleX(1.1);
  }
}

/* Section container */
.services-section {
  margin: 0 auto;
  padding: 5rem 5.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #fff8f8);
}

/* Content layout */
.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Left content */
.services-header {
  margin-top: 5rem;
  max-width: 500px;
}

.section-subtitle {
  color: #f75d5a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  color: #181d6c;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-description {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

/* Service card */
.service-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(24, 29, 108, 0.05);
  border: 1px solid rgba(247, 93, 90, 0.1);
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(24, 29, 108, 0.1);
  border-color: rgba(247, 93, 90, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg,
      rgba(247, 93, 90, 0.1),
      rgba(24, 29, 108, 0.05));
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg,
      rgba(247, 93, 90, 0.2),
      rgba(24, 29, 108, 0.1));
}

.service-title {
  color: #181d6c;
  font-size: 1.4rem;
}

.service-description {
  color: #6b7280;
  font-size: larger;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Read More link */
.read-more {
  display: inline-flex;
  align-items: center;
  color: #181d6c;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #f75d5a;
}

.read-more svg {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.read-more:hover svg {
  transform: translateX(4px);
}

/* Button styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background-color: #f75d5a;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(247, 93, 90, 0.15);
}

.cta-button:hover {
  background-color: #181d6c;
}

/* Decorative elements */
.decoration {
  position: absolute;
  z-index: -1;
}

.decoration-circle {
  width: 300px;
  height: 300px;
  background: #00ffa3;
  border-radius: 50%;
  opacity: 0.1;
  bottom: -150px;
  right: -150px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .services-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-header {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-section {
    /* padding: 3rem 1rem; */
    padding: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Reset staggered positioning on mobile */
  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    transform: translateY(0);
  }

  .service-card:hover,
  .service-card:nth-child(1):hover,
  .service-card:nth-child(2):hover,
  .service-card:nth-child(3):hover,
  .service-card:nth-child(4):hover {
    transform: translateY(-5px);
  }

  .decoration {
    display: none;
  }
}

/* Add new decorative elements */
.services-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Large floating ring */
.services-ring {
  width: 400px;
  height: 400px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  border: 40px solid rgba(247, 93, 90, 0.05);
  border-radius: 50%;
  animation: rotateRing 20s linear infinite;
}

/* Abstract shape */
.services-shape {
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: -150px;
  background: rgba(24, 29, 108, 0.03);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  animation: morphShape 15s ease-in-out infinite;
}

/* Animated gradient blob */
.services-blob {
  width: 250px;
  height: 250px;
  top: -100px;
  left: 20%;
  background: radial-gradient(circle at center,
      rgba(247, 93, 90, 0.1) 0%,
      rgba(24, 29, 108, 0.05) 50%,
      transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: pulseBlob 8s ease-in-out infinite;
}

/* Add animations */
@keyframes rotateRing {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes morphShape {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(10deg) scale(1.1);
  }
}

@keyframes pulseBlob {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2) translate(20px, 20px);
    opacity: 0.8;
  }
}

/* Enhanced staggered animations for cards */
.service-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.2s;
}

.service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.service-card:nth-child(3) {
  animation-delay: 0.6s;
}

.service-card:nth-child(4) {
  animation-delay: 0.8s;
}

/* Enhanced Navbar Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 0;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  background: white;
}

.header.scrolled .nav-link {
  color: black;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo span {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f75d5a, #181d6c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-page-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f75d5a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: #f75d5a;
  -webkit-text-fill-color: #f75d5a;
}

.contact-button {
  padding: 0.9rem 2rem;
  background: #f75d5a;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 93, 90, 0.2);
}

.contact-button:hover {
  background: #181d6c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 29, 108, 0.3);
}

/* Hero section styles */
.hero-section {
  min-height: 100vh;
  padding-top: 7rem;
  position: relative;
  overflow: hidden;
  background: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 120%;
  background: url("https://s3.il-central-1.amazonaws.com/media.istudy-plus.com/wave-left.png") no-repeat;
  background-size: cover;
  background-position: center left;
  clip-path: path("M0,0 H100% V100% H0 C40% 100%, 0 60%, 0 0");
  z-index: 0;
  pointer-events: none;
}

/* Decorative Elements */
.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Enhanced Hero Section Decorations */
.hero-decorations {

  /* Remove overlapping decorative elements */
  .plus-signs,
  .wave-lines,
  .hero-lines,
  .square-grid {
    display: none;
  }

  /* Refined floating-circle for subtle emphasis */
  .floating-circle {
    width: 250px;
    height: 250px;
    border: 2px dashed rgba(247, 93, 90, 0.15);
    border-radius: 50%;
    top: 25%;
    left: -80px;
    animation: floatAndRotate 25s linear infinite;
  }

  /* Enhanced gradient-orb with smoother gradient */
  .gradient-orb {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
        rgba(247, 93, 90, 0.08) 0%,
        rgba(247, 93, 90, 0.05) 30%,
        transparent 70%);
    opacity: 0.3;
    top: 60%;
    left: 10%;
    animation: pulse 6s ease-in-out infinite;
  }

  /* Refined glowing-orb with softer glow */
  .glowing-orb {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle,
        rgba(247, 93, 90, 0.3) 0%,
        rgba(247, 93, 90, 0.1) 60%,
        transparent 80%);
    opacity: 0.2;
    bottom: 20%;
    left: 15%;
    animation: glowPulse 5s ease-in-out infinite;
  }

  /* Refined dots-pattern for subtle background */
  .dots-pattern {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#f75d5a 10%, transparent 10%),
      radial-gradient(#181d6c 10%, transparent 10%);
    background-size: 15px 15px;
    background-position: 0 0, 7.5px 7.5px;
    opacity: 0.2;
    top: 10%;
    right: 10%;
    animation: floatAnimation 10s ease-in-out infinite;
    transform: rotate(-10deg);
  }
}

/* New animated square grid */
.square-grid {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 5%;
  background-image: linear-gradient(#f75d5a 1px, transparent 1px),
    linear-gradient(90deg, #f75d5a 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  transform: rotate(-15deg);
  animation: rotateAndFloat 15s ease-in-out infinite;
}

/* New floating plus signs */
.plus-signs {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 40%;
  left: 20%;
  opacity: 0.2;
}

.plus-signs::before,
.plus-signs::after {
  content: "+";
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  color: #f75d5a;
}

.plus-signs::before {
  top: 0;
  left: 0;
  animation: floatUpDown 4s ease-in-out infinite;
}

.plus-signs::after {
  bottom: 0;
  right: 0;
  animation: floatUpDown 4s ease-in-out infinite 1s;
}

/* Glowing orb */
.glowing-orb {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 25%;
  left: 10%;
  background: radial-gradient(circle at 30% 30%,
      rgba(247, 93, 90, 0.4) 0%,
      rgba(247, 93, 90, 0.1) 50%,
      transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

/* Wave lines decoration */
.wave-lines {
  position: absolute;
  width: 150px;
  height: 100px;
  top: 30%;
  left: -20px;
  opacity: 0.2;
  overflow: hidden;
}

.wave-lines::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      #f75d5a 10px,
      #f75d5a 12px);
  animation: waveMove 10s linear infinite;
}

/* Add new animations */
@keyframes rotateAndFloat {

  0%,
  100% {
    transform: rotate(-15deg) translate(0, 0);
  }

  50% {
    transform: rotate(0deg) translate(-10px, -10px);
  }
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

@keyframes waveMove {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.gradient-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center,
      rgba(0, 255, 163, 0.2),
      transparent 70%);
  border-radius: 50%;
  top: 30%;
  left: 10%;
  animation: pulse 4s ease-in-out infinite;
}

.dots-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#00ffa3 10%, transparent 10%);
  background-size: 20px 20px;
  opacity: 0.1;
  bottom: 20%;
  right: 30%;
  animation: floatAnimation 8s ease-in-out infinite;
}

.hero-lines {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 40%;
  right: 15%;
  background: repeating-linear-gradient(45deg,
      rgba(247, 93, 90, 0.1),
      rgba(247, 93, 90, 0.1) 2px,
      transparent 2px,
      transparent 10px);
  animation: floatAndSpin 15s linear infinite;
}

/* Hero Content Styles */
.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f75d5a;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #181d6c;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.2s ease forwards;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.4s ease forwards;
}

/* Mobile Trust Blocks - Hidden on desktop */
.mobile-trust-blocks {
  display: none;
}

@media (max-width: 768px) {
  .mobile-trust-blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin: 1.5rem 0 1rem;
    animation: fadeInUp 0.5s 0.5s ease forwards;
    opacity: 0;
  }

  .mobile-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(212, 36, 38, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    /* padding: 0.8rem 1rem; */;
    border-radius: 12px;
    border: 1px solid rgba(212, 36, 38, 0.15);
    flex: 1;
    max-width: 110px;
    box-shadow: 0 2px 8px rgba(212, 36, 38, 0.08);
  }

  .mobile-trust-item i {
    color: #d42426;
    font-size: 1.2rem;
  }

  .mobile-trust-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #181d6c;
    text-align: center;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .mobile-trust-blocks {
    gap: 0.8rem;
  }

  .mobile-trust-item {
    padding: 0.7rem 0.8rem;
    max-width: 100px;
  }

  .mobile-trust-item i {
    font-size: 1.1rem;
  }

  .mobile-trust-item span {
    font-size: 0.7rem;
  }
}

/* Update decorative elements colors */
.floating-circle {
  border-color: rgba(247, 93, 90, 0.1);
}

.gradient-orb {
  background: radial-gradient(circle at center,
      rgba(247, 93, 90, 0.2),
      transparent 70%);
}

.dots-pattern {
  background-image: radial-gradient(#f75d5a 10%, transparent 10%);
}

.hero-lines {
  background: repeating-linear-gradient(45deg,
      rgba(247, 93, 90, 0.1),
      rgba(247, 93, 90, 0.1) 2px,
      transparent 2px,
      transparent 10px);
}

/* Update button styles */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.6s 0.6s ease forwards;
}

.primary-button {
  padding: 1.2rem 2.5rem;
  background: #f75d5a;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 93, 90, 0.2);
}

.primary-button:hover {
  background: #181d6c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 29, 108, 0.3);
}

.secondary-button {
  padding: 1.2rem 2.5rem;
  background: transparent;
  color: #181d6c;
  border: 2px solid #f75d5a;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: #181d6c;
  border-color: #181d6c;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 5rem;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f75d5a;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    color: #d42426;
    background: linear-gradient(135deg, rgba(212, 36, 38, 0.08), rgba(212, 36, 38, 0.04));
    display: inline-block;
    padding: 8px 22px;
    border-radius: 25px;
    border: 1.5px solid rgba(212, 36, 38, 0.2);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    padding: 1rem 2rem;
  }

  .hero-illustration {
    order: 2;
    margin: 0 -1rem;
  }

  .hero-illustration img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-background {
    right: 0;
    background: url("https://s3.il-central-1.amazonaws.com/media.istudy-plus.com/wave-right.png") no-repeat;
  }

  /* .hero-background,
  .hero-decorations {
    display: none;
  } */
}

@media (max-width: 480px) {
  .hero-container {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    padding: 7px 18px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .primary-button,
  .secondary-button {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
  }
}

/* Add smooth transitions */
.hero-content * {
  transition: all 0.3s ease;
}

/* Add these styles to ensure proper text visibility */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-illustration {
  position: relative;
  z-index: 2;
}

/* Optional: Add a subtle overlay to ensure text readability */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.1));
  z-index: 1;
  pointer-events: none;
  display: none;
  /* Hidden by default, enable if needed for better text contrast */
}

/* Enhanced Mobile Menu Button */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #181d6c;
  transition: all 0.3s ease;
}

.mobile-menu-button svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.mobile-menu-button.active svg {
  transform: rotate(90deg);
}

/* Enhanced Responsive Styles */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .hero-container {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
    z-index: 100;
  }

  .landing-page-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }

  .landing-page-nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    color: #181d6c;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #f75d5a;
  }

  .contact-button {
    margin-top: 2rem;
    width: 100%;
    background: #f75d5a;
    color: white;
  }

  .contact-button:hover {
    background: #181d6c;
  }

  .menu-overlay {
    background: rgba(24, 29, 108, 0.3);
  }

  /* Improve mobile menu animation */
  .landing-page-nav-links.active {
    right: 0;
    animation: slideIn 0.4s ease forwards;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .landing-page-nav-links {
    width: 100%;
  }
}

/* Add overlay for mobile menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 90;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* FOOTER START */
.footer {
  /* background: linear-gradient(135deg, #4169e1, #3154b3); */
  background: #191e6d;
  color: white;
  padding: 60px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-column ul li a:hover {
  padding-left: 8px;
  color: white;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* FOOTER END */


.loader {
  display: block;
  --height-of-loader: 4px;
  --loader-color: #f75d5a;
  width: 130px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
  ;
}

@keyframes moving {
  50% {
    width: 100%;
  }

  100% {
    width: 0;
    right: 0;
    left: unset;
  }
}

/* PHONE NUMBER START */
.phone-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: none;
  background-color: #f75d5a;
}

.phone-btn:hover {
  background-color: #f75d5a;
}
/* PHONE NUMBER End */



/* From Uiverse.io by vinodjangid07 */ 
.Btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  /* background-color: transparent; */
  /* overflow: hidden; */
  cursor: pointer;
  margin: 6px;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  border: 1px solid black;
}

.trust{display:flex; align-items:center; gap:12px; color:var(--muted); font-size:.95rem}
.trust2{display: none;}
.trust .dot{width:4px; height:4px; background:#c9c9c9; border-radius:50%}
@media (max-width: 768px) {
  .trust{
    display: none;
  }
  .trust2{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: small;
  }
}


a{
  text-decoration: none;
}
        /* Style for the title gradient */
  .text-gradient {
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      background-image: linear-gradient(to right, #3b82f6, #8b5cf6);
  }

  /* Styles for the reveal-on-scroll animation */
  .feature-card {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .feature-card.is-visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* Ensure sticky positioning works as intended */
  .sticky-container {
      align-self: flex-start; /* Prevents the container from stretching */
  }

  #trust-mobile{
    display: none;
  }

  @media (max-width: 768px){
    #trust-mobile{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
      font-size: small;
      margin: auto;
      width: 99%;
      /* flex-wrap: wrap; */
      margin-top: 20px;
    }
  }

.grid.grid-cols-2 {
  font-size: larger;
}

.grid.grid-cols-2 img{
  width: 100px;
  height: 100px;
  background: none;
}
/* Prevent responsive stacking, always 2 columns */
@media (max-width: 900px) {
#subscribe-button-2{
  width: 90%;
}

#subscribe-button-div-2{
  width: 90%;
  margin-top: 50px;
}
.grid.grid-cols-2 {
  grid-template-columns: 1fr 1fr !important;
}
}
/* Make text and icons smaller on mobile */
@media (max-width: 600px) {
.feature-card.feature-content {
  padding: 10px !important;
}
.feature-icon {
  width: 60px !important;
  height: 60px !important;
}
.feature-title {
  font-size: 1rem !important;
}
.feature-desc {
  font-size: 0.85rem !important;
}
}

#subscribe-button-2, #subscribe-button-3 {
  text-align: center;
  margin: auto;
  width: 400px;
  background-color: #3a52e8;
}

#subscribe-button-div-2, #subscribe-button-div-3{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.feature-card{
  height:300px;
}

.tooltip {
  font-size: large;
  padding-bottom: 3px;
  margin: 5px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #f9f9f9;
  color: #333;
  text-align: right;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position above the icon */
  right: 50%;
  margin-right: -125px;
  font-size: 13px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.testimonials-section {
  position: relative;
  padding: 120px 0;
  padding: 0;
  overflow: hidden;
}

.testimonials-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.testimonials-floating-circle {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.testimonials-gradient-orb {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.testimonials-dots-pattern {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, #667eea 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

.testimonials-wave-lines {
  position: absolute;
  bottom: 10%;
  right: 20%;
  width: 150px;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg width='150' height='80' viewBox='0 0 150 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q37.5 0 75 40 T150 40' stroke='%23667eea' stroke-width='2' fill='none' opacity='0.2'/%3E%3Cpath d='M0 50 Q37.5 10 75 50 T150 50' stroke='%23667eea' stroke-width='2' fill='none' opacity='0.15'/%3E%3C/svg%3E") no-repeat;
  animation: wave 3s ease-in-out infinite;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.2;
}

.testimonials-description {
  font-size: 20px;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 70px;
  overflow: hidden;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 10px;
  align-items: stretch;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #667eea;
  flex-shrink: 0;
}

.carousel-nav:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 32px;
  border-radius: 6px;
}

.carousel-dots .dot:hover {
  background: rgba(102, 126, 234, 0.6);
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
  min-width: 450px;
  max-width: 550px;
  width: 450px;
  scroll-snap-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
  background: #191e6d;
  color: white;
  min-width: 550px;
  width: 550px;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-card.featured .author-info span {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-decoration {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd89b, #19547b);
  border-radius: 50%;
  opacity: 0.2;
}

.stars {
  margin-bottom: 20px;
  font-size: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: #667eea;
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #667eea;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #4a5568;
  font-weight: 600;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.1); opacity: 0.25; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
    padding: 0;
  }
  
  .testimonials-title {
    font-size: 32px;
  }
  
  .testimonials-carousel-wrapper {
    padding: 0 50px;
  }
  
  .testimonials-carousel {
    gap: 20px;
    padding: 20px 5px;
  }
  
  .testimonial-card {
    padding: 30px;
    min-width: 340px;
    width: 340px;
    max-width: 90vw;
  }
  
  .testimonial-card.featured {
    min-width: 380px;
    width: 380px;
    max-width: 90vw;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  
  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .testimonials-stats {
    flex-direction: column;
    gap: 40px;
  }
  
  .stat-number {
    font-size: 36px;
  }

  .hidden-info::after {
    max-width: 250px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .testimonials-container {
    padding: 0 15px;
  }
  
  .testimonials-carousel-wrapper {
    padding: 0 45px;
  }
  
  .testimonials-carousel {
    gap: 15px;
    padding: 15px 0;
  }
  
  .testimonial-card {
    min-width: 280px;
    width: 280px;
    max-width: 85vw;
    padding: 25px;
  }
  
  .testimonial-card.featured {
    min-width: 300px;
    width: 300px;
    max-width: 85vw;
  }
  
  .carousel-nav {
    width: 36px;
    height: 36px;
  }
  
  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }
  
  .carousel-nav.prev {
    left: 5px;
  }
  
  .carousel-nav.next {
    right: 5px;
  }
  
  .carousel-dots {
    gap: 8px;
    margin-bottom: 30px;
  }
  
  .carousel-dots .dot {
    width: 10px;
    height: 10px;
  }
  
  .carousel-dots .dot.active {
    width: 24px;
  }
  
  .testimonials-title {
    font-size: 28px;
  }
  
  .testimonials-description {
    font-size: 16px;
  }
  
  .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .author-info h4 {
    font-size: 16px;
  }
  
  .author-info span {
    font-size: 13px;
  }

  .hidden-info::after {
    max-width: 200px;
    font-size: 10px;
  }
}

/* Modal styles */
  .modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    padding: 24px;
    z-index: 1000;
    max-width: 95%;
    width: 480px;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }

  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    backdrop-filter: blur(4px);
  }

  .close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 28px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #666;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
  }

  .close-modal:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
  }

  .modal-content {
    padding: 10px 0;
  }

  .contact-container .get-in-touch {
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .contact-container .contact-heading {
    text-align: center;
    margin-bottom: 20px;
  }

  /* OAuth Section in Modal */
  .oauth-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding: 0;
  }

  .oauth-section .oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
  }

  .oauth-section .oauth-btn:active {
    transform: scale(0.98);
  }

  .oauth-section .oauth-google {
    background: #fff;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #dadce0;
  }

  .oauth-section .oauth-google:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .oauth-section .oauth-apple {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  .oauth-section .oauth-apple:hover {
    background: #1a1a1a;
  }

  .oauth-divider-line {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 13px;
    margin: 12px 0 8px;
  }

  .oauth-divider-line::before,
  .oauth-divider-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
  }

  .oauth-divider-line span {
    padding: 0 14px;
    white-space: nowrap;
  }

  /* Modal form styles */
  .contact-form .form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-form .form-input:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  }

  .contact-form .form-input::placeholder {
    color: #999;
  }

  /* Modal form grid */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .checkbox-container {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .checkbox-container .checkbox-label {
    font-size: 13px !important;
    line-height: 1.4;
  }

  .contact-form .submit-button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    margin-top: 8px;
  }

  .contact-form .submit-button:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .modal {
      width: 92%;
      padding: 20px 16px;
      border-radius: 20px;
    }

    .form-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .oauth-section .oauth-btn {
      padding: 12px 16px;
      font-size: 14px;
    }

    .checkbox-container .checkbox-label {
      font-size: 12px !important;
    }
  }

  @media (max-width: 480px) {
    .modal {
      width: 95%;
      padding: 16px 14px;
      max-height: 85vh;
    }

    .contact-container .contact-heading {
      font-size: 16px !important;
    }

    .contact-form .form-input {
      padding: 11px 12px;
      font-size: 14px;
    }

    .contact-form .submit-button {
      padding: 12px 16px;
      font-size: 15px;
    }
  }
/* ========================================
   AI Study Plan Section - Redesigned
   ======================================== */

.ai-study-plan-section {
  margin-top: 70px;
  /* padding: 20px 20px; */
  /* background: linear-gradient(135deg, #f8fafc 0%, #fff 100%); */
  /* background: linear-gradient(180deg, #fef9f9 0%, #fff5f5 50%, #ffffff 100%); */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  padding-bottom: 70px;
}

.ai-study-plan-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  /* background: linear-gradient(90deg, transparent, #667eea, transparent); */
}

.ai-simple-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.ai-simple-header {
  text-align: center;
  margin-bottom: 50px;
}

.ai-simple-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  color: #667eea;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.ai-simple-badge i {
  font-size: 1rem;
}

.ai-simple-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #181d6c;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ai-highlight {
  background: linear-gradient(135deg, #191e6d 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-simple-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Grid */
.ai-simple-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.ai-simple-card {
  background: white;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.ai-simple-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.ai-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ai-card-icon i {
  font-size: 28px;
  color: white;
}

.ai-simple-card:hover .ai-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.ai-simple-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #181d6c;
  margin-bottom: 12px;
}

.ai-simple-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* CTA */
.ai-simple-cta {
  text-align: center;
}

.ai-simple-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.ai-simple-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.ai-simple-button:hover::before {
  left: 100%;
}

.ai-simple-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.ai-simple-button i {
  transition: transform 0.3s ease;
}

.ai-simple-button:hover i {
  transform: translateX(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .ai-simple-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .ai-simple-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .ai-study-plan-section {
    padding: 50px 15px;
    margin: 0;
  }
  
  .ai-simple-header {
    margin-bottom: 35px;
  }
  
  .ai-simple-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ai-simple-card {
    padding: 24px 20px;
  }
  
  .ai-card-icon {
    width: 50px;
    height: 50px;
  }
  
  .ai-card-icon i {
    font-size: 24px;
  }
  
  .ai-simple-title {
    font-size: 1.6rem;
  }
  
  .ai-simple-subtitle {
    font-size: 1rem;
  }
  
  .ai-simple-button {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* Old AI section styles - keeping for backward compatibility */

/* Decorative AI Elements */
.ai-plan-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ai-circuit-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(102, 126, 234, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(102, 126, 234, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.ai-floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(102, 126, 234, 0.15) 2px, transparent 2px),
    radial-gradient(circle, rgba(118, 75, 162, 0.15) 2px, transparent 2px),
    radial-gradient(circle, rgba(245, 158, 11, 0.15) 2px, transparent 2px);
  background-size: 200px 200px, 250px 250px, 300px 300px;
  background-position: 0 0, 50px 50px, 100px 100px;
  animation: particlesFloat 30s ease-in-out infinite;
}

@keyframes particlesFloat {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-20px); opacity: 0.6; }
}

.ai-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: orbPulse 6s ease-in-out infinite;
}

.ai-glow-orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.ai-glow-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0.4; }
}

.ai-gradient-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at top left, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  animation: meshMove 15s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Container */
.ai-plan-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.ai-plan-header {
  text-align: center;
  margin-bottom: 40px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  color: #667eea;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.2); }
  50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.4); }
}

.ai-icon {
  animation: iconRotate 3s linear infinite;
}

@keyframes iconRotate {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
}

.ai-plan-title {
  font-size: 2rem;
  font-weight: 700;
  color: #181d6c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ai-plan-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Content Grid */
.ai-plan-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Visual Dashboard Mockup */
.ai-plan-visual {
  position: relative;
}

.ai-dashboard-mockup {
  background: white;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 
    0 10px 30px rgba(102, 126, 234, 0.1),
    inset 0 1px 0 rgba(102, 126, 234, 0.1);
  position: relative;
  animation: dashboardFloat 4s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.dashboard-avatar {
  flex-shrink: 0;
  animation: avatarPulse 2s ease-in-out infinite;
}

.dashboard-avatar svg {
  width: 32px;
  height: 32px;
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.5)); }
}

.dashboard-info {
  flex: 1;
}

.dashboard-name {
  font-size: 1rem;
  font-weight: 600;
  color: #181d6c;
  margin-bottom: 4px;
}

.dashboard-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #64748b;
}

.dashboard-date svg {
  color: #667eea;
  width: 12px;
  height: 12px;
}

/* Progress Circles */
.progress-circles {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}

.progress-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  transform: rotate(-90deg);
  width: 100px;
  height: 100px;
}

.progress-ring-bg {
  fill: none;
  stroke: rgba(102, 126, 234, 0.1);
  stroke-width: 6;
}

.progress-ring-fill {
  fill: none;
  stroke: url(#progressGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 280;
  stroke-dashoffset: calc(280 - (280 * var(--progress)) / 100);
  animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
  from { stroke-dashoffset: 280; }
}

.progress-text {
  position: absolute;
  text-align: center;
}

.progress-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #181d6c;
}

.progress-label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

.ai-dashboard-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.3;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

/* AI Recommendations */
.ai-recommendations {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recommendation-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(102, 126, 234, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease-out backwards;
}

.recommendation-item:nth-child(1) { animation-delay: 0.2s; }
.recommendation-item:nth-child(2) { animation-delay: 0.4s; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.recommendation-item:hover {
  background: rgba(102, 126, 234, 0.08);
  border-color: rgba(102, 126, 234, 0.2);
  transform: translateX(-4px);
}

.recommendation-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recommendation-icon svg {
  width: 16px;
  height: 16px;
}

.recommendation-content {
  flex: 1;
}

.recommendation-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #181d6c;
  margin-bottom: 2px;
}

.recommendation-time {
  font-size: 0.75rem;
  color: #64748b;
}

.recommendation-badge {
  padding: 3px 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(102, 126, 234, 0.4); }
  50% { box-shadow: 0 0 15px rgba(102, 126, 234, 0.6); }
}

/* AI Active Indicator */
.ai-active-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 50px;
  color: #667eea;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

.ai-pulse {
  width: 6px;
  height: 6px;
  background: #667eea;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px #667eea;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

/* Features List */
.ai-plan-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.ai-feature-item:nth-child(1) { animation-delay: 0.1s; }
.ai-feature-item:nth-child(2) { animation-delay: 0.2s; }
.ai-feature-item:nth-child(3) { animation-delay: 0.3s; }
.ai-feature-item:nth-child(4) { animation-delay: 0.4s; }

.ai-feature-item:hover {
  background: rgba(102, 126, 234, 0.03);
  border-color: rgba(102, 126, 234, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.12);
}

.ai-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.ai-feature-icon svg {
  width: 28px;
  height: 28px;
}

.ai-feature-item:hover .ai-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.ai-feature-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #181d6c;
  margin-bottom: 6px;
}

.ai-feature-content p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* CTA Button */
.ai-cta-button {
  margin-top: 12px;
}

.ai-start-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
  position: relative;
  overflow: hidden;
}

.ai-start-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.ai-start-button:hover::before {
  left: 100%;
}

.ai-start-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.ai-start-button svg {
  transition: transform 0.3s ease;
}

.ai-start-button:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ai-plan-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ai-plan-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .ai-study-plan-section {
    padding: 80px 16px;
  }

  .ai-plan-header {
    margin-bottom: 60px;
  }

  .ai-plan-title {
    font-size: 2rem;
  }

  .ai-plan-subtitle {
    font-size: 1rem;
  }

  .ai-dashboard-mockup {
    padding: 24px;
  }

  .progress-circles {
    flex-direction: column;
    align-items: center;
  }

  .ai-feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .ai-feature-icon {
    margin: 0 auto;
  }

  .ai-start-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ai-plan-title {
    font-size: 1.75rem;
  }

  .dashboard-header {
    flex-direction: column;
    text-align: center;
  }

  .ai-recommendations {
    gap: 8px;
  }

  .recommendation-item {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* NEW */
.pricing-section{
  margin-bottom: 100px;
}
/* END NEW */

/* NEW DESIGN */

.christmas-pricing-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
  position: relative;
}

.christmas-pricing-cards[hidden] {
  display: none !important;
}

.christmas-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 24px;
  padding: 32px 28px;
  width: 320px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 2px solid #e8ecf4;
  transition: all 0.3s ease;
  overflow: hidden;
}

.christmas-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.christmas-card.featured {
  border: 3px solid #4f46e5;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  transform: scale(1.05);
}

.christmas-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.card-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #1e3a5f, #4f46e5);
  color: #ffd700;
  padding: 8px 40px;
  font-size: 0.75rem;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(79,70,229,0.3);
}

.card-santa {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  animation: celebration-bounce 1s ease-in-out infinite;
}

.card-header {
  text-align: center;
  margin-bottom: 24px;
  padding-top: 20px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #181d6c;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 0.9rem;
  color: #666;
}

.card-price {
  text-align: center;
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border-radius: 16px;
}

.christmas-card.featured .card-price {
  background: linear-gradient(135deg, #f0f0ff 0%, #fff 100%);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #181d6c;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.price-original {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-period {
  font-size: 0.95rem;
  color: #666;
  margin-top: 8px;
}

.price-period strong {
  color: #4f46e5;
  font-weight: 700;
}

.card-features {
  margin: 24px 0;
}

.feature-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  margin-left: 12px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.95rem;
  color: #444;
}

.card-cta {
  margin-top: 24px;
}

.cta-button {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-button.primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  box-shadow: 0 4px 15px rgba(79,70,229,0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79,70,229,0.4);
}

.cta-button.secondary {
  background: linear-gradient(135deg, #181d6c, #4f46e5);
  color: white;
  box-shadow: 0 4px 15px rgba(24,29,108,0.3);
}

.cta-button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24,29,108,0.4);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.christmas-ornament-left, .newyear-ornament-left {
  position: absolute;
  top: 60px;
  left: 8px;
  font-size: 20px;
  animation: swing 2s ease-in-out infinite;
}

.christmas-ornament-right, .newyear-ornament-right {
  position: absolute;
  top: 80px;
  right: 8px;
  font-size: 20px;
  animation: swing 2s ease-in-out infinite reverse;
}

@media (max-width: 1024px) {
  .christmas-card {
    width: 280px;
    padding: 24px 20px;
  }
  .christmas-card.featured {
    transform: scale(1);
  }
  .christmas-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .christmas-pricing-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 16px;
    gap: 16px;
    justify-content: flex-start;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .christmas-pricing-cards::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  /* Compact card styles for mobile */
  .christmas-card {
    flex: 0 0 85%;
    min-width: 260px;
    max-width: 300px;
    scroll-snap-align: center;
    padding: 16px 14px;
  }
  
  .christmas-card .card-header {
    margin-bottom: 10px;
    padding-top: 10px;
  }
  
  .christmas-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  
  .christmas-card .card-subtitle {
    font-size: 0.75rem;
  }
  
  .christmas-card .card-price {
    margin: 10px 0;
    padding: 10px;
  }
  
  .christmas-card .price-amount {
    font-size: 2rem;
  }
  
  .christmas-card .price-currency {
    font-size: 1rem;
  }
  
  .christmas-card .price-period {
    font-size: 0.8rem;
    margin-top: 4px;
  }
  
  .christmas-card .card-features {
    margin: 10px 0;
  }
  
  .christmas-card .feature-row {
    padding: 5px 0;
  }
  
  .christmas-card .feature-icon {
    width: 18px;
    height: 18px;
    font-size: 9px;
    margin-left: 8px;
  }
  
  .christmas-card .feature-text {
    font-size: 0.8rem;
  }
  
  .christmas-card .card-cta {
    margin-top: 10px;
  }
  
  .christmas-card .cta-button {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .christmas-card .card-ribbon {
    top: 14px;
    right: -38px;
    padding: 6px 40px;
    font-size: 0.65rem;
  }
  
  .christmas-card .card-santa {
    font-size: 28px;
    top: -10px;
  }
  
  .christmas-card .card-badge {
    padding: 4px 8px;
    font-size: 0.65rem;
  }
  
  .christmas-card .christmas-ornament-left,
  .christmas-card .christmas-ornament-right {
    font-size: 14px;
  }
  
  .christmas-card.featured {
    transform: scale(1);
  }
  
  /* Scroll indicator dots */
  .pricing-scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .pricing-scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .pricing-scroll-dot.active {
    background: linear-gradient(135deg, #d42426, #ff6b6b);
    transform: scale(1.2);
  }
}

/* Swipe hint animation for mobile */
@media (max-width: 768px) {
  .christmas-pricing-cards::after {
    content: '👆 اسحب للمقارنة';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: #888;
    animation: swipe-hint 2s ease-in-out infinite;
    white-space: nowrap;
  }
  
  @keyframes swipe-hint {
    0%, 100% { opacity: 0.6; transform: translateX(-50%); }
    50% { opacity: 1; transform: translateX(-45%); }
  }
}

/* Hide scroll indicators on desktop, show on mobile */
.pricing-scroll-indicator {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .pricing-scroll-indicator {
    display: flex;
  }
  
  /* Hide non-active indicators by default */
  .pricing-scroll-indicator.yaelnet-indicator,
  .pricing-scroll-indicator.both-indicator {
    display: none;
  }
  
  .pricing-scroll-indicator .pricing-scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .pricing-scroll-indicator .pricing-scroll-dot.active {
    background: linear-gradient(135deg, #d42426, #ff6b6b);
    transform: scale(1.2);
  }
}

.pricing-trust-bar {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,255,0.95) 100%);
  border-radius: 16px;
  border: 1px solid #e8ecf4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.pricing-trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-trust-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0f8a00, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.pricing-trust-icon.secure {
  background: linear-gradient(135deg, #181d6c, #4f46e5);
}

.pricing-trust-icon.guarantee {
  background: linear-gradient(135deg, #d42426, #ff6b6b);
}

.pricing-trust-text {
  text-align: right;
}

.pricing-trust-text strong {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 2px;
}

.pricing-trust-text span {
  font-size: 0.75rem;
  color: #666;
}

@media (max-width: 768px) {
  .pricing-trust-items {
    gap: 20px;
  }
  
  .pricing-trust-item {
    flex: 1 1 45%;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .pricing-trust-item {
    flex: 1 1 100%;
  }
}

.pricing-trust-bar {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,255,0.95) 100%);
  border-radius: 16px;
  border: 1px solid #e8ecf4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.pricing-trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-trust-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0f8a00, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.pricing-trust-icon.secure {
  background: linear-gradient(135deg, #181d6c, #4f46e5);
}

.pricing-trust-icon.guarantee {
  background: linear-gradient(135deg, #d42426, #ff6b6b);
}

.pricing-trust-text {
  text-align: right;
}

.pricing-trust-text strong {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 2px;
}

.pricing-trust-text span {
  font-size: 0.75rem;
  color: #666;
}

@media (max-width: 768px) {
  .pricing-trust-items {
    gap: 20px;
  }
  
  .pricing-trust-item {
    flex: 1 1 45%;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .pricing-trust-item {
    flex: 1 1 100%;
  }
}


.free-trial-banner {
  background: transparent;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.free-trial-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /* background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px); */
  background-size: 30px 30px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

.free-trial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #191e6d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.trial-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #191e6d;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.trial-highlight {
    background: linear-gradient(120deg, #f75d5a, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGlow 2s ease-in-out infinite;
}

@keyframes shimmerGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.trial-description {
  font-size: 1.1rem;
  color: #191e6d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.trial-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.trial-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #191e6d;
  font-size: 0.95rem;
  font-weight: 500;
}

.trial-feature i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.trial-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f75d5a;
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.trial-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.trial-cta-button:hover::before {
  left: 100%;
}

.trial-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.trial-cta-button i {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
  40% { transform: translateX(-5px); }
  60% { transform: translateX(-3px); }
}

.trial-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #191e6d;
  font-style: italic;
}

/* Floating elements */
.trial-float-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.trial-float-1 {
  width: 200px;
  height: 200px;
  background: white;
  top: -50px;
  left: 5%;
  animation: floatElement1 8s ease-in-out infinite;
}

.trial-float-2 {
  width: 150px;
  height: 150px;
  background: white;
  bottom: -30px;
  right: 10%;
  animation: floatElement2 10s ease-in-out infinite;
}

@keyframes floatElement1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 30px) rotate(180deg); }
}

@keyframes floatElement2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, -30px) rotate(-180deg); }
}

@media (max-width: 768px) {
  .trial-title {
    font-size: 1.8rem;
  }
  
  .trial-description {
    font-size: 1rem;
  }
  
  .trial-features {
    gap: 15px;
  }
  
  .trial-cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .free-trial-banner {
    padding: 40px 15px;
  }
  
  .trial-title {
    font-size: 1.5rem;
  }
  
  .trial-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}



/* FAQ SECTION START */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #667eea, #764ba2, #667eea, transparent);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f75d5a;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #191e6d;
  margin-bottom: 12px;
}

.faq-title .highlight {
  background: #191e6d;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: white;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
  opacity: 1;
}

.faq-question:hover {
  background: #f8f9ff;
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #181d6c;
  text-align: right;
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  background-color: #191e6d;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  text-align: right;
}

.faq-cta {
  margin-top: 50px;
  text-align: center;
  padding: 40px;
  background: #191e6d;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: movePattern 15s linear infinite;
}

.faq-cta-content {
  position: relative;
  z-index: 2;
}

.faq-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.faq-cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #667eea;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.faq-cta-button i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 15px;
  }
  
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-subtitle {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 20px 20px;
  }
  
  .faq-question-text {
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  
  .faq-cta {
    padding: 30px 20px;
  }
  
  .faq-cta-title {
    font-size: 1.5rem;
  }
}
/* FAQ SECTION END */


  .reg-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        animation: fadeIn 0.3s ease-out;
        overflow-y: auto;
        padding: 20px;
      }

      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }

      /* Modal Content */
      .reg-modal-content {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        margin: auto;
        max-width: 600px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        position: relative;
        animation: slideUp 0.4s ease-out;
        overflow: hidden;
      }

      @keyframes slideUp {
        from {
          transform: translateY(50px);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      /* Close Button */
      .reg-modal-close {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 28px;
        cursor: pointer;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 1;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .reg-modal-close:hover {
        background: #ff4757;
        color: white;
        transform: rotate(90deg);
      }

      /* Modal Header */
      .reg-modal-header {
        /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
        background: #181d6c;
        padding: 40px 30px 30px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .reg-modal-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: pulse 3s ease-in-out infinite;
      }

      @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.3; }
      }

      .reg-modal-icon {
        font-size: 50px;
        margin-bottom: 15px;
        animation: bounce 2s ease-in-out infinite;
      }

      @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }

      .reg-modal-title {
        font-size: 28px;
        font-weight: 800;
        margin: 0 0 10px 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      }

      .reg-modal-subtitle {
        font-size: 16px;
        margin: 0;
        opacity: 0.95;
        font-weight: 500;
      }

      /* OAuth Buttons */
      .oauth-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 30px;
        margin-top: 20px;
      }

      .oauth-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding: 14px 20px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.1);
      }

      .oauth-google {
        background: #fff;
        color: #333;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }

      .oauth-google:hover {
        background: #f8f9fa;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
      }

      .oauth-apple {
        background: #000;
        color: #fff;
        border-color: #000;
      }

      .oauth-apple:hover {
        background: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .oauth-divider {
        display: flex;
        align-items: center;
        padding: 20px 30px 10px;
        color: #666;
        font-size: 14px;
      }

      .oauth-divider::before,
      .oauth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.15), transparent);
      }

      .oauth-divider span {
        padding: 0 16px;
        white-space: nowrap;
      }

      /* Form */
      .reg-form {
        padding: 30px;
      }

      .reg-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
      }

      .reg-form-group {
        margin-bottom: 20px;
      }

      .reg-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
      }

      .reg-label i {
        color: #667eea;
        font-size: 16px;
      }

      .reg-input {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: white;
      }

      .reg-input:focus {
        outline: none;
        border-color: #181d6c;
        box-shadow: 0 0 0 4px rgba(24, 29, 108, 0.1);
        transform: translateY(-2px);
      }

      .reg-input::placeholder {
        color: #aaa;
      }

      /* Checkbox Group */
      .reg-checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 10px;
        transition: all 0.3s ease;
      }

      .reg-checkbox-group:hover {
        background: #e9ecef;
      }

      .reg-checkbox { 
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: #667eea;
        margin-top: 2px;
      }

      .reg-checkbox-label {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
        cursor: pointer;
        user-select: none;
      }

      .reg-link {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
      }

      .reg-link:hover {
        color: #764ba2;
        text-decoration: underline;
      }

      /* Submit Button */
      .reg-submit-btn {
        width: 100%;
        padding: 16px;
        background: #181d6c;
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
      }

      .reg-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
      }

      .reg-submit-btn:active {
        transform: translateY(0);
      }

      .reg-submit-btn i {
        font-size: 20px;
        animation: slideLeft 1.5s ease-in-out infinite;
      }

      @keyframes slideLeft {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(-5px); }
      }

      /* Loader */
      .reg-loader {
        text-align: center;
        margin-top: 20px;
      }

      .reg-spinner {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #667eea;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 0 auto;
      }

      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }

      /* Footer */
      .reg-modal-footer {
        padding: 20px 30px;
        background: #f8f9fa;
        border-top: 1px solid #e0e0e0;
        text-align: center;
      }

      .reg-footer-text {
        margin: 0;
        color: #666;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }

      .reg-footer-text i {
        color: #28a745;
        font-size: 16px;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .reg-modal {
          padding: 10px;
        }

        .reg-modal-content {
          max-width: 100%;
          border-radius: 15px;
        }

        .reg-modal-header {
          padding: 30px 20px 25px;
        }

        .reg-modal-title {
          font-size: 22px;
        }

        .reg-modal-subtitle {
          font-size: 14px;
        }

        .reg-modal-icon {
          font-size: 40px;
        }

        .reg-form {
          padding: 20px;
        }

        .reg-form-row {
          grid-template-columns: 1fr;
          gap: 0;
          margin-bottom: 0;
        }

        .reg-submit-btn {
          font-size: 16px;
          padding: 14px;
        }
      }

      @media (max-width: 480px) {
        .reg-modal-title {
          font-size: 20px;
        }

        .reg-modal-subtitle {
          font-size: 13px;
        }

        .reg-input {
          padding: 12px 14px;
          font-size: 16px;
        }

        .reg-checkbox-label {
          font-size: 13px;
        }
      }


      /* Mobile Sticky CTA */
      .mobile-sticky-cta {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        background: linear-gradient(to top, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        transform: translateY(100%);
        transition: transform 0.3s ease;
      }
      
      .mobile-sticky-cta.visible {
        transform: translateY(0);
      }

      .mobile-sticky-cta-container {
        display: flex;
        align-items: stretch;
        gap: 10px;
      }
      
      .mobile-sticky-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex: 1;
        padding: 14px 24px;
        background: linear-gradient(135deg, #d42426 0%, #ff6b6b 100%);
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(212, 36, 38, 0.4);
        animation: mobile-cta-pulse 2s infinite;
      }

      .mobile-sticky-whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        min-width: 54px;
        background: #25D366;
        border-radius: 12px;
        color: white;
        font-size: 24px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
      }

      .mobile-sticky-whatsapp-btn:hover {
        background: #1ebe5c;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
      }
      
      .mobile-sticky-cta-icon {
        font-size: 1.2rem;
      }
      
      .mobile-sticky-cta-text {
        flex: 1;
        text-align: center;
      }
      
      .mobile-sticky-cta-price {
        background: rgba(255,255,255,0.25);
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 0.9rem;
      }
      
      @keyframes mobile-cta-pulse {
        0%, 100% { box-shadow: 0 4px 15px rgba(212, 36, 38, 0.4); }
        50% { box-shadow: 0 6px 25px rgba(212, 36, 38, 0.6); }
      }
      
      /* Show only on mobile */
      @media (max-width: 768px) {
        .mobile-sticky-cta {
          display: block;
        }
        
        /* Add padding to body to prevent content from being hidden behind sticky CTA */
        body {
          padding-bottom: 80px;
        }
      }
      
      /* Hide when at pricing section */
      .mobile-sticky-cta.at-pricing {
        transform: translateY(100%) !important;
      }
      


                .christmas-pricing-cards {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            padding: 20px 0;
            position: relative;
            align-items: stretch;
          }
          
          .christmas-pricing-cards[hidden] {
            display: none !important;
          }
          
          .christmas-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px 28px;
            width: 320px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 2px solid #e8ecf4;
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
          }
          
          .christmas-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
          }
          
          .christmas-card.featured {
            border: 3px solid #d42325;
            background: #ffffff;
            transform: scale(1.05);
          }
          
          .christmas-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
          }
          
          .card-ribbon {
            position: absolute;
            top: 20px;
            right: -35px;
            background: #d42325;
            color: white;
            padding: 8px 40px;
            font-size: 0.75rem;
            font-weight: bold;
            transform: rotate(45deg);
            box-shadow: 0 2px 10px rgba(79,70,229,0.3);
          }
          
          .card-santa {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 40px;
            animation: santa-wave 1s ease-in-out infinite;
          }
          
          .card-header {
            text-align: center;
            margin-bottom: 24px;
            padding-top: 20px;
          }
          
          .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #181d6c;
            margin-bottom: 8px;
          }
          
          .card-subtitle {
            font-size: 0.9rem;
            color: #666;
          }
          
          .card-price {
            text-align: center;
            margin: 24px 0;
            padding: 20px;
            background: #f9fafb;
            border-radius: 12px;
          }
          
          .christmas-card.featured .card-price {
            background: #f0f4ff;
          }
          
          .price-amount {
            font-size: 2.8rem;
            font-weight: 800;
            color: #181d6c;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
          }
          
          .christmas-card.featured .price-amount {
            color: #d42325;
          }
          
          .price-currency {
            font-size: 1.4rem;
            font-weight: 600;
          }
          
          .price-original {
            font-size: 1.1rem;
            color: #999;
            text-decoration: line-through;
            margin-bottom: 4px;
          }
          
          .price-period {
            font-size: 0.95rem;
            color: #666;
            margin-top: 8px;
          }
          
          .price-period strong {
            color: #d42325;
            font-weight: 700;
          }
          
          .card-features {
            margin: 24px 0;
            flex: 1;
          }
          
          .card-cta {
            margin-top: auto;
            padding-top: 16px;
          }
          
          /* Features Title */
          .features-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #666;
            margin-bottom: 16px;
            text-align: center;
          }
          
          /* Feature Checklist */
          .features-checklist {
            list-style: none;
            padding: 0;
            margin: 0;
          }
          
          .features-checklist li {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            gap: 10px;
          }
          
          .features-checklist li:last-child {
            border-bottom: none;
          }
          
          .features-checklist .check-icon {
            width: 20px;
            height: 20px;
            background: #4f46e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            flex-shrink: 0;
          }
          
          .christmas-card.featured .features-checklist .check-icon {
            background: #4f46e5;
          }
          
          .features-checklist .feature-text {
            flex: 1;
            font-size: 0.9rem;
            color: #333;
            line-height: 1.4;
          }
          
          .features-checklist .feature-count {
            background: #f5f5f5;
            color: #333;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
          }
          
          .christmas-card.featured .features-checklist .feature-count {
            background: #f0f4ff;
            color: #d42325;
          }
          
          /* AI Badge - Simplified */
          .feature-ai-badge {
            background: #f5f5f5;
            color: #333;
            border-radius: 8px;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 500;
            font-size: 0.85rem;
            margin-top: 12px;
            border: 1px solid #e0e0e0;
          }
          
          .feature-ai-badge i {
            font-size: 1rem;
            color: #4f46e5;
          }
          
          /* Bonus Feature - Simplified */
          .feature-bonus {
            background: #fffbeb;
            border: 1px solid #fcd34d;
            border-radius: 8px;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #92400e;
            font-weight: 500;
            margin-top: 8px;
          }
          
          .feature-bonus i {
            color: #f59e0b;
          }
          
          /* Legacy feature-row support */
          .feature-row {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
          }
          
          .feature-row:last-child {
            border-bottom: none;
          }
          
          .feature-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #0f8a00, #2ecc71);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            margin-left: 12px;
            flex-shrink: 0;
          }
          
          .feature-text {
            font-size: 0.95rem;
            color: #444;
          }
          
          @media (max-width: 400px) {
            .features-grid {
              gap: 8px;
            }
            .feature-category {
              padding: 10px 8px;
            }
            .feature-category-icon {
              font-size: 1.5rem;
            }
            .feature-category-count {
              font-size: 1.2rem;
            }
          }
          
          .card-cta {
            margin-top: 24px;
          }
          
          .cta-button {
            width: 100%;
            padding: 16px 24px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
          }
          
          .cta-button.primary {
            background: linear-gradient(135deg, #d42426, #ff6b6b);
            color: white;
            box-shadow: 0 4px 15px rgba(212,36,38,0.3);
          }
          
          .cta-button.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212,36,38,0.4);
          }
          
          .cta-button.secondary {
            background: linear-gradient(135deg, #181d6c, #4f46e5);
            color: white;
            box-shadow: 0 4px 15px rgba(24,29,108,0.3);
          }
          
          .cta-button.secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(24,29,108,0.4);
          }
          
          .card-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: linear-gradient(135deg, #0f8a00, #2ecc71);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
          }
          
          .christmas-ornament-left {
            position: absolute;
            top: 60px;
            left: 8px;
            font-size: 20px;
            animation: swing 2s ease-in-out infinite;
          }
          
          .christmas-ornament-right {
            position: absolute;
            top: 80px;
            right: 8px;
            font-size: 20px;
            animation: swing 2s ease-in-out infinite reverse;
          }
          
          @media (max-width: 1024px) {
            .christmas-card {
              width: 280px;
              padding: 24px 20px;
            }
            .christmas-card.featured {
              transform: scale(1);
            }
            .christmas-card.featured:hover {
              transform: translateY(-8px);
            }
          }
          
          @media (max-width: 768px) {
            .christmas-pricing-cards {
              flex-direction: row;
              flex-wrap: nowrap;
              overflow-x: auto;
              scroll-snap-type: x mandatory;
              -webkit-overflow-scrolling: touch;
              padding: 20px 16px;
              gap: 16px;
              justify-content: flex-start;
              scrollbar-width: none; /* Firefox */
              -ms-overflow-style: none; /* IE and Edge */
            }
            
            .christmas-pricing-cards::-webkit-scrollbar {
              display: none; /* Chrome, Safari, Opera */
            }
            
            .christmas-card {
              flex: 0 0 85%;
              min-width: 280px;
              max-width: 320px;
              scroll-snap-align: center;
            }
            
            .christmas-card.featured {
              transform: scale(1);
            }
            
            /* Scroll indicator dots */
            .pricing-scroll-indicator {
              display: flex;
              justify-content: center;
              gap: 8px;
              margin-top: 20px;
            }
            
            .pricing-scroll-dot {
              width: 10px;
              height: 10px;
              border-radius: 50%;
              background: #e0e0e0;
              transition: all 0.3s ease;
              cursor: pointer;
            }
            
            .pricing-scroll-dot.active {
              background: linear-gradient(135deg, #d42426, #ff6b6b);
              transform: scale(1.2);
            }
          }
          
          /* Swipe hint animation for mobile */
          @media (max-width: 768px) {



            .christmas-pricing-cards::after {
              content: '👆 اسحب للمقارنة';
              position: absolute;
              bottom: -30px;
              left: 50%;
              transform: translateX(-50%);
              font-size: 0.85rem;
              color: #888;
              animation: swipe-hint 2s ease-in-out infinite;
              white-space: nowrap;
            }
            
            @keyframes swipe-hint {
              0%, 100% { opacity: 0.6; transform: translateX(-50%); }
              50% { opacity: 1; transform: translateX(-45%); }
            }
          }
          
          /* Hide scroll indicators on desktop, show on mobile */
          .pricing-scroll-indicator {
            display: none;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding-bottom: 10px;
          }
          
          @media (max-width: 768px) {
            .pricing-scroll-indicator {
              display: flex;
            }
            
            /* Hide non-active indicators by default */
            .pricing-scroll-indicator.yaelnet-indicator,
            .pricing-scroll-indicator.both-indicator {
              display: none;
            }
            
            .pricing-scroll-indicator .pricing-scroll-dot {
              width: 10px;
              height: 10px;
              border-radius: 50%;
              background: #e0e0e0;
              transition: all 0.3s ease;
              cursor: pointer;
            }
            
            .pricing-scroll-indicator .pricing-scroll-dot.active {
              background: linear-gradient(135deg, #d42426, #ff6b6b);
              transform: scale(1.2);
            }
          }



          .pricing-urgency-bar {
              display: flex;
              flex-wrap: wrap;
              justify-content: center;
              gap: 16px;
              margin: 20px 0;
              padding: 16px;
              background: linear-gradient(135deg, #fff9e6 0%, #fff5f5 100%);
              border-radius: 16px;
              border: 2px dashed #ffc107;
            }
            
            .urgency-item {
              display: inline-flex;
              align-items: center;
              gap: 6px;
              padding: 8px 16px;
              border-radius: 50px;
              font-weight: 600;
              font-size: 0.9rem;
              background: white;
              box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            }
            
            .urgency-timer {
              color: #d42426;
              border: 1px solid rgba(212, 36, 38, 0.2);
              animation: urgency-pulse 2s infinite;
            }
            
            .urgency-popular {
              color: #f59e0b;
              border: 1px solid rgba(245, 158, 11, 0.2);
            }
            
            .urgency-guarantee {
              color: #0f8a00;
              border: 1px solid rgba(15, 138, 0, 0.2);
            }
            
            .urgency-icon {
              font-size: 1.1rem;
            }
            
            @keyframes urgency-pulse {
              0%, 100% { transform: scale(1); }
              50% { transform: scale(1.03); }
            }
            
            @media (max-width: 640px) {
              .pricing-urgency-bar {
                gap: 10px;
                padding: 12px;
              }
              
              .urgency-item {
                padding: 6px 12px;
                font-size: 0.8rem;
              }
              
              .urgency-icon {
                font-size: 1rem;
              }
            }




                          .features-show-more-container {
                display: none;
                justify-content: center;
                margin-top: 20px;
              }
              
              @media (max-width: 768px) {
                .features-show-more-container {
                  display: flex;
                }
                
                .christmas-features-grid.expanded + .features-show-more-container .show-more-text,
                .christmas-features-grid.expanded + .features-show-more-container .show-more-icon {
                  display: none !important;
                }
                
                .christmas-features-grid.expanded + .features-show-more-container .show-less-text,
                .christmas-features-grid.expanded + .features-show-more-container .show-less-icon {
                  display: inline !important;
                }
              }
              
              .features-show-more-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: white;
                color: #4f46e5;
                padding: 12px 24px;
                border-radius: 50px;
                font-weight: 600;
                font-size: 0.95rem;
                border: 2px solid #e5e7eb;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 2px 8px rgba(0,0,0,0.05);
              }
              
              .features-show-more-btn:hover {
                border-color: #4f46e5;
                box-shadow: 0 4px 15px rgba(79, 70, 229, 0.15);
              }
              
              .features-show-more-btn i {
                transition: transform 0.3s ease;
              }


                        .christmas-services {
            position: relative;
            background: linear-gradient(180deg, #fef9f9 0%, #fff5f5 50%, #ffffff 100%);
            /* background: #ffffff; */
            overflow: hidden;
            /* margin-top: 20px; */
          }
          
          .christmas-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            /* background: linear-gradient(90deg, #d42426, #0f8a00, #d42426, #0f8a00, #d42426); */
            background-size: 200% 100%;
            animation: christmas-gradient 3s linear infinite;
          }
          
          @keyframes christmas-gradient {
            0% { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
          }
          
          .services-snowflakes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
          }
          
          .services-snowflake {
            position: absolute;
            top: -20px;
            font-size: 1.5rem;
            color: rgba(212, 36, 38, 0.15);
            animation: services-snow-fall linear infinite;
          }
          
          @keyframes services-snow-fall {
            0% {
              transform: translateY(-20px) rotate(0deg);
              opacity: 0;
            }
            10% {
              opacity: 1;
            }
            90% {
              opacity: 1;
            }
            100% {
              transform: translateY(100vh) rotate(360deg);
              opacity: 0;
            }
          }
          
          .christmas-section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            position: relative;
          }
          
          .christmas-header-badge, .newyear-header-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #d42426, #ff6b6b);
            color: #ffd700;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
          }
          
          .christmas-section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #181d6c;
            margin-bottom: 1rem;
            line-height: 1.3;
          }
          
          .christmas-section-title .highlight {
            background: linear-gradient(135deg, #d42426, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
          }
          
          .christmas-section-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
          }
          
          .christmas-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
          }
          
          @media (max-width: 1024px) {
            .christmas-features-grid {
              grid-template-columns: repeat(2, 1fr);
            }
          }
          
          @media (max-width: 768px) {
            .christmas-features-grid {
              grid-template-columns: 1fr;
            }
            .christmas-section-title {
              font-size: 1.8rem;
            }
            
            /* Mobile: Show only first 3 features, hide rest */
            .christmas-features-grid .christmas-feature-card:nth-child(n+4) {
              display: none;
            }
            
            .christmas-features-grid.expanded .christmas-feature-card:nth-child(n+4) {
              display: block;
            }
          }
          
          .christmas-feature-card {
            background: white;
            border-radius: 20px;
            padding: 10px 20px 30px 10px;
            position: relative;
            border: 2px solid #f0f0f0;
            transition: all 0.4s ease;
            overflow: hidden;
          }
          
          .christmas-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d42426, #0f8a00);
            transform: scaleX(0);
            transition: transform 0.4s ease;
          }
          
          .christmas-feature-card:hover::before {
            transform: scaleX(1);
          }
          
          .christmas-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(212, 36, 38, 0.15);
            border-color: #d42426;
          }
          
          .christmas-feature-card .card-ornament {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 1.2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
          }
          
          .christmas-feature-card:hover .card-ornament {
            opacity: 1;
          }
          
          .christmas-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
            border: 2px solid #ffe5e5;
            transition: all 0.3s ease;
          }
          
          .christmas-feature-card:hover .christmas-feature-icon {
            background: linear-gradient(135deg, #d42426, #ff6b6b);
            border-color: #d42426;
          }
          
          .christmas-feature-icon img {
            width: 40px;
            height: 40px;
            transition: filter 0.3s ease;
          }
          
          .christmas-feature-card:hover .christmas-feature-icon img {
            filter: brightness(0) invert(1);
          }
          
          .christmas-feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #181d6c;
            margin-bottom: 10px;
          }
          
          .christmas-feature-desc {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
          }
          
          .christmas-cta-container {
            text-align: center;
            margin-top: 3rem;
          }
          
          .christmas-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #d42426, #ff6b6b);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(212, 36, 38, 0.35);
            transition: all 0.3s ease;
          }
          
          .christmas-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 36, 38, 0.45);
          }
          
          .christmas-feature-number {
            position: absolute;
            top: 0px;
            right: 0px;
            width: 18px;
            height: 18px;
            background: linear-gradient(135deg, #0f8a00, #2ecc71);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
          }

          .feature-card{
            max-width: 70px;
            max-height: 50px;
            margin-bottom: 10px;
          }

          .feature-card * {
            max-width: 70px;
            max-height: 50px;
          }

                  .pricing-hint-section {
          padding: 40px 20px;
          background: linear-gradient(135deg, #fff9e6 0%, #fff5f5 100%);
          border-bottom: 1px solid #f0f0f0;
          text-align: center;
        }
        
        .pricing-hint-container {
          max-width: 600px;
          margin: 0 auto;
        }
        
        .pricing-hint-badge {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: linear-gradient(135deg, #d42426 0%, #ff6b6b 100%);
          color: white;
          padding: 8px 20px;
          border-radius: 50px;
          font-weight: 700;
          font-size: 0.9rem;
          margin-bottom: 16px;
          animation: hint-pulse 2s infinite;
        }
        
        @keyframes hint-pulse {
          0%, 100% { transform: scale(1); }
          50% { transform: scale(1.02); }
        }
        
        .pricing-hint-title {
          font-size: 1.4rem;
          font-weight: 800;
          color: #1a1a2e;
          margin-bottom: 12px;
        }
        
        .pricing-hint-price {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 12px;
          margin-bottom: 16px;
        }
        
        .pricing-hint-from {
          color: #666;
          font-size: 1rem;
        }
        
        .pricing-hint-amount {
          font-size: 2.2rem;
          font-weight: 900;
          color: #d42426;
        }
        
        .pricing-hint-period {
          color: #666;
          font-size: 0.9rem;
        }
        
        .pricing-hint-features {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 8px;
          margin-bottom: 20px;
        }
        
        .pricing-hint-feature {
          display: inline-flex;
          align-items: center;
          gap: 4px;
          background: white;
          padding: 6px 12px;
          border-radius: 20px;
          font-size: 0.85rem;
          color: #333;
          box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        
        .pricing-hint-feature i {
          color: #0f8a00;
        }
        
        .pricing-hint-cta {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: #191e6d;
          color: white;
          padding: 14px 32px;
          border-radius: 12px;
          font-weight: 700;
          font-size: 1.1rem;
          text-decoration: none;
          box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
          transition: all 0.3s ease;
        }
        
        .pricing-hint-cta:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 25px rgba(79, 70, 229, 0.4);
        }
        
        .pricing-hint-guarantee {
          margin-top: 16px;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 6px;
          color: #666;
          font-size: 0.85rem;
        }
        
        .pricing-hint-guarantee i {
          color: #0f8a00;
        }


               .trust-section {
          padding: 60px 20px;
          /* background: linear-gradient(135deg, #f8fafc 0%, #fff 100%); */
          background: #ffffff;
          position: relative;
          overflow: hidden;
        }
        
        .trust-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 1px;
          /* background: linear-gradient(90deg, transparent, #d42426, transparent); */
        }
        
        .trust-container {
          max-width: 1200px;
          margin: 0 auto;
        }
        
        .trust-header {
          text-align: center;
          margin-bottom: 40px;
        }
        
        .trust-badge {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: linear-gradient(135deg, #0f8a00, #2ecc71);
          color: white;
          padding: 8px 20px;
          border-radius: 50px;
          font-size: 0.9rem;
          font-weight: 600;
          margin-bottom: 16px;
        }
        
        .trust-title {
          font-size: 1.8rem;
          font-weight: 700;
          color: #181d6c;
        }
        
        .trust-stats-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 24px;
          margin-bottom: 40px;
        }
        
        @media (max-width: 992px) {
          .trust-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
          }
        }
        
        @media (max-width: 480px) {
          .trust-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
          }
        }
        
        .trust-stat {
          text-align: center;
          padding: 24px 16px;
          background: white;
          border-radius: 16px;
          box-shadow: 0 4px 20px rgba(0,0,0,0.05);
          border: 1px solid #f0f0f0;
          transition: all 0.3s ease;
        }
        
        .trust-stat:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }
        
        .trust-stat-icon {
          font-size: 2.5rem;
          margin-bottom: 12px;
        }
        
        .trust-stat-number {
          font-size: 2rem;
          font-weight: 800;
          color: #d42426;
          margin-bottom: 4px;
        }
        
        .trust-stat-label {
          font-size: 0.9rem;
          color: #666;
        }
        
        .trust-guarantees {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 20px;
          margin-top: 30px;
        }
        
        .trust-guarantee {
          display: flex;
          align-items: center;
          gap: 10px;
          background: white;
          padding: 12px 24px;
          border-radius: 50px;
          box-shadow: 0 2px 10px rgba(0,0,0,0.05);
          border: 1px solid #e8ecf4;
        }
        
        .trust-guarantee-icon {
          width: 24px;
          height: 24px;
          background: linear-gradient(135deg, #0f8a00, #2ecc71);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-size: 12px;
        }
        
        .trust-guarantee-text {
          font-size: 0.9rem;
          font-weight: 600;
          color: #333;
        }
        
        .trust-logos {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 40px;
          flex-wrap: wrap;
          margin-top: 40px;
          padding-top: 30px;
          border-top: 1px solid #f0f0f0;
        }
        
        .trust-logo-item {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 8px;
          opacity: 0.7;
          transition: opacity 0.3s ease;
        }
        
        .trust-logo-item:hover {
          opacity: 1;
        }
        
        .trust-logo-icon {
          font-size: 2rem;
        }
        
        .trust-logo-text {
          font-size: 0.75rem;
          color: #888;
          font-weight: 500;
        }
        
        /* Mobile Responsive Styles for Trust Section */
        @media (max-width: 768px) {
          .trust-section {
            padding: 40px 16px;
          }
          
          .trust-header {
            margin-bottom: 24px;
          }
          
          .trust-badge {
            font-size: 0.8rem;
            padding: 6px 16px;
          }
          
          .trust-title {
            font-size: 1.4rem;
          }
          
          .trust-stat {
            padding: 16px 12px;
            border-radius: 12px;
          }
          
          .trust-stat-icon {
            font-size: 2rem;
            margin-bottom: 8px;
          }
          
          .trust-stat-number {
            font-size: 1.5rem;
          }
          
          .trust-stat-label {
            font-size: 0.8rem;
          }
          
          .trust-guarantees {
            display: none;
            gap: 10px;
            margin-top: 20px;
          }
          
          .trust-guarantee {
            padding: 10px 16px;
            flex: 1 1 calc(50% - 10px);
            min-width: 140px;
            justify-content: center;
          }
          
          .trust-guarantee-icon {
            width: 20px;
            height: 20px;
            font-size: 10px;
          }
          
          .trust-guarantee-text {
            font-size: 0.8rem;
          }
          
          .trust-logos {
            gap: 20px;
            margin-top: 24px;
            padding-top: 20px;
          }
          
          .trust-logo-item {
            flex: 0 0 auto;
          }
          
          .trust-logo-icon {
            font-size: 1.5rem;
          }
          
          .trust-logo-text {
            font-size: 0.7rem;
          }
        }
        
        @media (max-width: 480px) {
          .trust-section {
            padding: 32px 12px;
          }
          
          .trust-title {
            font-size: 1.2rem;
          }
          
          .trust-stat {
            padding: 14px 10px;
          }
          
          .trust-stat-icon {
            font-size: 1.75rem;
          }
          
          .trust-stat-number {
            font-size: 1.3rem;
          }
          
          .trust-stat-label {
            font-size: 0.75rem;
          }
          
          .trust-guarantee {
            flex: 1 1 100%;
            justify-content: flex-start;
          }
          
          .trust-logos {
            gap: 16px;
          }
        }


                      .video-showcase-container {
                position: relative;
                width: 100%;
                max-width: 600px;
                margin: 0 auto;
              }
              
              .video-wrapper {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
                background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
              }
              
              .video-wrapper::before {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
                border-radius: 22px;
                z-index: -1;
                animation: gradient-border 4s ease infinite;
                background-size: 300% 300%;
              }
              
              @keyframes gradient-border {
                0%, 100% { background-position: 0% 50%; }
                50% { background-position: 100% 50%; }
              }
              
              .video-inner {
                position: relative;
                padding: 8px;
                /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); */
                background-color: white;
                border-radius: 18px;
              }
              
              .hero-video {
                width: 100%;
                height: auto;
                max-height: 400px;
                object-fit: cover;
                border-radius: 12px;
                display: block;
              }
              
              .sound-toggle-btn {
                position: absolute;
                top: 20px;
                left: 20px;
                width: 50px;
                height: 50px;
                background: rgba(0, 0, 0, 0.7);
                border: 2px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                z-index: 15;
                transition: all 0.3s ease;
                backdrop-filter: blur(5px);
              }
              
              .sound-toggle-btn:hover {
                background: rgba(0, 0, 0, 0.85);
                border-color: rgba(255, 255, 255, 0.6);
                transform: scale(1.1);
              }
              
              .sound-toggle-btn i {
                font-size: 20px;
                color: white;
              }
              
              .sound-toggle-btn.unmuted {
                background: #191e6d;
                border-color: transparent;
              }
              
              @media (max-width: 768px) {
                .sound-toggle-btn {
                  width: 40px;
                  height: 40px;
                  top: 15px;
                  left: 15px;
                }
                
                .sound-toggle-btn i {
                  font-size: 16px;
                }
              }
              
              .video-badge {
                position: absolute;
                top: 20px;
                right: 20px;
                background: #191e6d;
                color: white;
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: bold;
                z-index: 10;
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
              }
              
              .video-caption {
                text-align: center;
                margin-top: 16px;
                color: #6b7280;
                font-size: 14px;
              }
              
              .video-caption strong {
                color: #374151;
              }
              
              .floating-elements {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                pointer-events: none;
                z-index: -1;
              }
              
              .floating-circle {
                position: absolute;
                border-radius: 50%;
                animation: float 6s ease-in-out infinite;
              }
              
              .floating-circle-1 {
                width: 100px;
                height: 100px;
                background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
                top: -30px;
                right: -30px;
                animation-delay: 0s;
              }
              
              .floating-circle-2 {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
                bottom: -20px;
                left: -20px;
                animation-delay: 2s;
              }
              
              @keyframes float {
                0%, 100% { transform: translateY(0) rotate(0deg); }
                50% { transform: translateY(-20px) rotate(10deg); }
              }
              
              @media (max-width: 768px) {
                .video-showcase-container {
                  max-width: 100%;
                  padding: 0 10px;
                }
                
                .hero-video {
                  max-height: 280px;
                }
              }


                          @keyframes fadeInUp {
              from {
              opacity: 0;
              transform: translateY(20px);
              }
              to {
              opacity: 1;
              transform: translateY(0);
              }
            }
            @keyframes pulse {
              0%, 100% { transform: scale(1); }
              50% { transform: scale(1.05); }
            }
            @keyframes shimmer {
              0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
              50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4); }
            }
            .hero-title-part {
              display: inline;
            }
            .hero-title-highlight {
              display: inline;
              font-weight: bold;
            }


                /* New Year 2025 Theme */
    .newyear-sparkle {
      position: absolute;
      color: #fff;
      font-size: 1.5em;
      text-shadow: 0 0 5px rgba(255,255,255,0.8);
      animation: sparkle-float linear infinite;
      z-index: 20;
      pointer-events: none;
      top: -50px;
    }

    @keyframes sparkle-float {
      0% { top: -10%; transform: translateX(0) scale(0.8); opacity: 0.9; }
      50% { transform: translateX(30px) scale(1.1); opacity: 1; }
      100% { top: 100%; transform: translateX(-20px) scale(0.9); opacity: 0.3; }
    }
    
    .newyear-badge {
      background: #d42426;
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: bold;
      display: inline-block;
      margin-bottom: 10px;
      box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
      border: 2px solid #ffd700;
      animation: gentle-glow 3s ease-in-out infinite;
    }

    @keyframes gentle-glow {
      0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
      50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5); }
    }

    .newyear-header-badge {
      background: linear-gradient(135deg, #d42426, #ff6b6b);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: bold;
      display: inline-block;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
      border: 2px solid rgba(255, 215, 0, 0.5);
    }

    .pricing-newyear-badge {
      background: linear-gradient(135deg, #d42426, #ff6b6b);
      color: white;
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.2rem;
      display: inline-block;
      margin-bottom: 20px;
      box-shadow: 0 4px 20px rgba(30, 58, 95, 0.4);
      border: 2px solid #ffd700;
      animation: gentle-glow 3s ease-in-out infinite;
    }

    .newyear-stars {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 20px;
    }

    .newyear-star {
      font-size: 1.5rem;
      animation: twinkle 2s ease-in-out infinite;
    }

    .newyear-star:nth-child(2) { animation-delay: 0.3s; }
    .newyear-star:nth-child(3) { animation-delay: 0.6s; }
    .newyear-star:nth-child(4) { animation-delay: 0.9s; }
    .newyear-star:nth-child(5) { animation-delay: 1.2s; }

    @keyframes twinkle {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.2); }
    }

    .newyear-ornament-left,
    .newyear-ornament-right {
      position: absolute;
      font-size: 1.5rem;
      top: 10px;
      opacity: 0.8;
    }

    .newyear-ornament-left {
      left: 15px;
    }

    .newyear-ornament-right {
      right: 15px;
    }

    .countdown-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
      margin-bottom: 10px;
      padding: 12px 20px;
      background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(79, 70, 229, 0.1));
      border-radius: 12px;
      border: 1px dashed #4f46e5;
    }

    .countdown-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: bold;
      color: #1e3a5f;
      font-size: 1rem;
    }

    .countdown-timer {
      display: flex;
      gap: 8px;
    }

    .countdown-box {
      background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
      color: #ffd700;
      padding: 8px 12px;
      border-radius: 8px;
      text-align: center;
      min-width: 50px;
      box-shadow: 0 4px 6px rgba(30, 58, 95, 0.3);
    }

    .countdown-box .number {
      font-size: 1.4rem;
      font-weight: bold;
      display: block;
      line-height: 1.2;
    }

    .countdown-box .label {
      font-size: 0.65rem;
      text-transform: uppercase;
      opacity: 0.9;
    }

    .countdown-separator {
      font-size: 1.5rem;
      font-weight: bold;
      color: #d42426;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .urgency-text {
      color: #d42426;
      font-size: 0.85rem;
      margin-top: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      background-color: #d42426;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.3); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
    }

    /* Testimonial New Year Styles */
    .testimonial-card {
      border-top: 4px solid #4f46e5 !important;
      position: relative;
    }
    
    .testimonial-card::before {
      content: '✨';
      position: absolute;
      top: -15px;
      right: 10px;
      font-size: 20px;
      background: white;
      border-radius: 50%;
      padding: 2px;
    }

    /* New Year Pricing Section Styles */
    .pricing-section {
      position: relative;
      overflow: hidden;
    }

    .pricing-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background-size: 200% 100%;
      animation: newyearGradient 3s linear infinite;
    }

    @keyframes newyearGradient {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    .pricing-christmas-badge {
      background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
      color: #ffd700;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: bold;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
      animation: pulse-badge 2s infinite;
    }

    @keyframes pulse-badge {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .pricing-column.christmas-deal {
      border: 3px solid #4f46e5 !important;
      background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%) !important;
      position: relative;
      overflow: visible;
    }

    .pricing-column.christmas-deal::before {
      content: '�';
      position: absolute;
      top: -25px;
      right: -10px;
      font-size: 40px;
      z-index: 10;
      animation: celebration-bounce 1s ease-in-out infinite;
    }

    .pricing-column.christmas-deal::after {
      content: '✨';
      position: absolute;
      top: -20px;
      left: -10px;
      font-size: 30px;
      z-index: 10;
      animation: star-twinkle 1.5s ease-in-out infinite;
    }

    @keyframes celebration-bounce {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    @keyframes star-twinkle {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(0.9); }
    }

    .christmas-deal-badge {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #1e3a5f, #4f46e5);
      color: #ffd700;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
      white-space: nowrap;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .christmas-ornament {
      position: absolute;
      font-size: 24px;
      animation: swing 2s ease-in-out infinite;
      z-index: 1;
    }

    .christmas-ornament.left {
      top: 60px;
      left: 10px;
    }

    .christmas-ornament.right {
      top: 80px;
      right: 10px;
    }

    @keyframes swing {
      0%, 100% { transform: rotate(-10deg); }
      50% { transform: rotate(10deg); }
    }

    .christmas-lights, .newyear-stars {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .christmas-light, .newyear-star {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      animation: twinkle 1s ease-in-out infinite;
    }

    .christmas-light:nth-child(1), .newyear-star:nth-child(1) { background: #4f46e5; animation-delay: 0s; }
    .christmas-light:nth-child(2), .newyear-star:nth-child(2) { background: #ffd700; animation-delay: 0.2s; }
    .christmas-light:nth-child(3), .newyear-star:nth-child(3) { background: #1e3a5f; animation-delay: 0.4s; }
    .christmas-light:nth-child(4), .newyear-star:nth-child(4) { background: #7c3aed; animation-delay: 0.6s; }
    .christmas-light:nth-child(5), .newyear-star:nth-child(5) { background: #ffd700; animation-delay: 0.8s; }

    .pricing-snowflake {
      position: absolute;
      color: #4f46e5;
      font-size: 1.2em;
      animation: fall linear infinite;
      z-index: 1;
      pointer-events: none;
      opacity: 0.6;
    }



.contact-us-1{  
  margin: auto;
  margin-top: 40px;
  width: 30%;
  padding: 20px;
}

.contact-us-1 a{
  padding: 20px;
}

@media (max-width: 768px) {
  .pricing-urgency-bar{
    display: none;
  }

  .contact-us-1{
    margin-top: 20px;
    width: 100%;
  }
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }
  .hero-background{
    display: none;
  }

  .newyear-badge{
    display: none;
  }
}

/* ============================================
   NEW HERO SECTION STYLES - Gen-Z Optimized
   ============================================ */

/* Social Proof Badge */
.hero-social-proof {
  margin-bottom: 20px;
}

.live-users-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #22c55e;
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* New Bold Headline */
.hero-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.hero-line-1 {
  display: block;
  color: #1a1a2e;
}

.hero-line-2 {
  display: block;
  background: linear-gradient(135deg, #d42426, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Exam Type Pills */
.exam-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.exam-pill {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: default;
  transition: transform 0.2s ease;
}

.exam-pill:hover {
  transform: translateY(-2px);
}

.exam-pill.amirnet {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.exam-pill.yaelnet {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: white;
}

.exam-pill.psycho {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

/* Tagline */
.hero-tagline {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* CTA Section */
.hero-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #d42426, #b91c1c);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212, 36, 38, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 36, 38, 0.5);
}

.hero-cta-primary i {
  font-size: 1rem;
}

.hero-cta-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.hero-cta-note i {
  font-size: 0.75rem;
}

/* Stats Row */
.hero-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-title-new {
    font-size: 2.2rem;
  }
  
  .exam-pills {
    gap: 8px;
  }
  
  .exam-pill {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .hero-tagline {
    font-size: 0.95rem;
  }
  
  .hero-cta-primary {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats-row {
    gap: 20px;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .hero-stat {
    flex: 1;
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .hero-title-new {
    font-size: 1.8rem;
  }
  
  .live-users-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@font-face {
  font-family: 'MyCustomFont';
  src: url("IBMPlexSansArabic-ExtraLight.ttf");
  font-weight: normal;
  font-style: normal;
}

body , html, *{
  font-family: 'MyCustomFont', sans-serif;
}

/* Mobile Nav Actions - Always visible on mobile */
.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.mobile-login-btn {
  background: #f75d5a;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mobile-login-btn:hover {
  background: #181d6c;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .mobile-nav-actions {
    display: flex;
  }
  
  .landing-page-nav-links {
    display: none !important;
  }
  
  .mobile-menu-button {
    display: none !important;
  }
}

/* Hero Subscribe Full Width */
.hero-primary-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Mobile Buttons Container in Hero */
.mobile-buttons-container {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 90%;
  margin: 30px auto 0;
}

@media (max-width: 768px) {
  .mobile-buttons-container {
    display: flex;
  }
  
  .mobile-buttons-container .primary-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
  }
  
  /* Hide desktop hero buttons on mobile */
  .hero-content > .hero-buttons {
    display: none !important;
  }
}
