.kreedo-benefits-section {
	background-color: #f3f3fd;
}

.benefit-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.card-hover-up {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-up:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
	transform: translateY(-10px);
}

.list-unstyled {
	font-size: 15px;
}

.icon-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
	margin: 0 auto;
}

.bg-pink {
	background: #ffd9ec;
	color: #cc0e74;
}

.bg-purple {
	background: #ded5ff;
	color: #5529c5;
}

.bg-mint {
	background: #cbf2e9;
	color: #2a9988;
}

.bg-yellow {
	background: #fff2cc;
	color: #c79700;
}

.text-pink {
	color: #cc0e74;
}

.text-purple {
	color: #5529c5;
}

.text-mint {
	color: #2a9988;
}

.text-yellow {
	color: #c79700;
}

.benefit-card ul li {
	text-align: left;
	margin-top: 8px;
}

.benefit-card ul li i {
	margin-right: 8px;
	color: #5e5e5e;
    
}

.why-love-edusarthii ul li {
	transition: transform 0.3s ease, color 0.3s ease;
}

.why-love-edusarthii ul li:hover {
	transform: translateX(5px);
	color: #007bff;
}

.h2_price-area {
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.h2_price-area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://images.unsplash.com/photo-1590608897129-31351ef6e853') no-repeat center center/cover;
	opacity: 0.1;
	z-index: 0;
}

.section-area-2 {
	margin-bottom: 3rem;
	opacity: 0;
	animation: fadeIn 1s ease-in-out forwards;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	animation: slideIn 1.2s ease-out;
}

.section-title span {
	color: #facc15;
	position: relative;
}

.section-title img {
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: auto;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.h2_price-item {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: fadeInUp 1s ease-out forwards;
}

.h2_price-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.h2_price-item-title {
	margin-bottom: 1.5rem;
}

.h2_price-item-title h5 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1f2937;
	animation: fadeIn 1.2s ease-out;
}

.h2_price-button a {
	display: inline-block;

	font-size: 1.1rem;
	font-weight: 600;
	background: #facc15;
	color: #1f2937;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.h2_price-button a:hover {
	transform: scale(1.05);
	background: #eab308;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.h2_price-content-list ul {
	list-style: none;
	padding: 0;
}

.h2_price-content-list li {
	font-size: 1.1rem;
	color: #4b5563;
	margin-bottom: 1rem;
	position: relative;
	padding-left: 2rem;
	opacity: 0;
	animation: fadeInUp 0.5s ease-out forwards;
	animation-delay: calc(0.2s * var(--index));
}

.h2_price-content-list li::before {
	content: '✔';
	position: absolute;
	left: 0;
	color: #10b981;
	font-size: 1.2rem;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.section-title {
		font-size: 1.8rem;
	}

	.h2_price-item-title h5 {
		font-size: 1.5rem;
	}

	.h2_price-content-list li {
		font-size: 1rem;
	}
}

    .services-section {
      text-align: center;
      padding: 50px 15px;
    }
    .services-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #fff;
    }
    .services-section p {
      font-size: 1.1rem;
      color: #eee;
      max-width: 800px;
      margin: 10px auto 40px auto;
    }
    .carousel-item {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    .service-card {
      background-color: #ece6ff;
      border-radius: 16px;
      padding: 30px;
      flex: 1;
      min-width: 280px;
      max-width: 320px;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }
    .service-icon {
      font-size: 40px;
      color: #9966ff;
      margin-bottom: 20px;
    }
    .service-title {
      font-weight: 700;
      color: #6f42c1;
      font-size: 1.25rem;
    }
    .service-desc {
      color: #333;
      font-size: 1rem;
      margin: 15px 0;
    }
    .learn-more {
      color: #9966ff;
      font-weight: 500;
      text-decoration: none;
    }
    .learn-more i {
      transition: transform 0.3s;
    }
    .learn-more:hover i {
      transform: translateX(5px);
    }
    .carousel-control-prev, .carousel-control-next {
      background-color: #9966ff;
      width: 40px;
      height: 40px;
      top: 45%;
      border-radius: 50%;
      opacity: 1;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 20px;
    }
    @media (max-width: 992px) {
      .carousel-item {
        flex-direction: column;
        align-items: center;
      }
    }

	.testimonial-section {
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }

    .testimonial-text {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 30px;
      line-height: 1.6;
      max-width: 900px;
      margin-inline: auto;
      animation: fadeIn 1s ease-in-out;
    }

    .testimonial-image {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 5px solid #8a2be2;
      object-fit: cover;
      animation: zoomIn 0.6s ease;
    }

    .testimonial-name {
      font-weight: 700;
      font-size: 1.2rem;
      margin-top: 15px;
      text-transform: uppercase;
    }

    .testimonial-source {
      color: #ccc;
      font-size: 0.9rem;
    }

    .carousel-control-prev, .carousel-control-next {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-control-prev-icon, .carousel-control-next-icon {
      background-size: 70% 70%;
    }

    .carousel-control-prev {
      left: 20px;
      background-color: #8a2be2;
    }

    .carousel-control-next {
      right: 20px;
      background-color: #fff;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 768px) {
      .testimonial-text {
        font-size: 1.2rem;
        padding: 0 10px;
      }

      .testimonial-image {
        width: 100px;
        height: 100px;
      }
    }

	.testimonial-container {
    width: 100%;
    max-width: 56rem;
    padding: 2rem;
    margin: 0 auto; /* Center the container horizontally */
    display: flex; /* Ensure flex context for centering */
    justify-content: center; /* Center content within container */
}

.testimonial-grid {
    display: grid;
    gap: 5rem;
}

.image-container {
    position: relative;
    width: 100%;
    height: 24rem;
    perspective: 1000px;
	margin-bottom: 50px;
}

.testimonial-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.25rem;
}

.designation {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}

.arrow-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
}

.arrow-button {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.arrow-button:hover {
    background-color: #00a6fb;
}

.arrow-button svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #f1f1f7;
    transition: transform 0.3s;
}

.arrow-button:hover svg {
    fill: #ffffff;
}

.prev-button:hover svg {
    transform: rotate(-12deg);
}

.next-button:hover svg {
    transform: rotate(12deg);
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
    .arrow-buttons {
        padding-top: 0;
    }
}
	
.hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      gap: 50px;
    }

    .hero-content {
      flex: 1 1 450px;
      max-width: 600px;
      animation: fadeInLeft 1s ease forwards;
    }

    .hero-content h1 {
      font-size: 42px;
      font-weight: 900;
      color: #111;
      margin-bottom: 20px;
    }

    .hero-content h1 .highlight {
      color: white;
    }

    .hero-content p {
      font-size: 18px;
      margin-bottom: 25px;
      color: #222;
    }

    .hero-content .stats {
      font-weight: 700;
      color: #2a2a72;
      margin-bottom: 30px;
      font-size: 16px;
    }

    .hero-content .buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 14px 22px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: 0.3s;
    }

    .btn-primary {
      background-color: #ec2474;
      color: white;
    }

    .btn-primary:hover {
      background-color: #c61d5f;
    }

    .btn-secondary {
      background-color: #d8d8e0;
      color: #2a2a72;
    }

    .btn-secondary:hover {
      background-color: #c4c4cd;
    }

    .btn i {
      margin-left: 10px;
    }

    .play-button {
      background-color: #2484ec;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      border: none;
      cursor: pointer;
    }

    .hero-image-container {
      flex: 1 1 400px;
      position: relative;
      max-width: 500px;
      animation: fadeInRight 1s ease forwards;
    }

    .circle-bg {
      position: absolute;
      top: 10%;
      left: 10%;
      width: 350px;
      height: 350px;
      background-color: #f23e82;
      border-radius: 50%;
      z-index: 1;
    }

    .hero-image-container img {
      width: 100%;
      position: relative;
      z-index: 2;
    }

    /* Animations */
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-content h1 {
        font-size: 32px;
      }

      .circle-bg {
        width: 250px;
        height: 250px;
        top: 5%;
        left: 20%;
      }

      .play-button {
        margin: 10px auto;
      }

      .buttons {
        justify-content: center;
      }
    }


    /* Hero Section */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 120px 7%;
            gap: 60px;
            background: linear-gradient(135deg, #f7941d 0%, #e67e22 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        /* Parallax background effect */
        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
            border-radius: 50%;
            z-index: 1;
            transform: translateZ(0);
            transition: transform 0.5s ease;
        }

        .heros {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 120px 7%;
            gap: 60px;
            background: linear-gradient(135deg, #FFCFDB 0%, #fca7b8  100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        /* Parallax background effect */
        .heros::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
            border-radius: 50%;
            z-index: 1;
            transform: translateZ(0);
            transition: transform 0.5s ease;
        }

        .hero-content {
            flex: 1 1 550px;
            max-width: 700px;
            animation: fadeInLeft 1.4s ease-out forwards;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 52px;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 30px;
            line-height: 1.25;
            letter-spacing: -1px;
        }

        .hero-content h1 .highlight {
            color: #ffffff;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .hero-content .typed-text {
            font-size: 24px;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 25px;
            display: inline-block;
            min-height: 32px;
        }

        .hero-content p {
            font-size: 20px;
            color: #2d2d2d;
            margin-bottom: 35px;
            line-height: 1.7;
            max-width: 600px;
        }

        .hero-content .stats {
            font-weight: 700;
            color: #2a2a72;
            margin-bottom: 40px;
            font-size: 18px;
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 24px;
            border-radius: 10px;
            display: inline-flex;
            gap: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-content .buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn {
            padding: 16px 30px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-primary {
            background-color: #e91e63;
            color: white;
        }

        .btn-primary:hover {
            background-color: #c2185b;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            color: #2a2a72;
            border: 2px solid #2a2a72;
        }

        .btn-secondary:hover {
            background-color: #2a2a72;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn i {
            margin-left: 12px;
            font-size: 18px;
        }

        .play-button {
            background-color: #2196f3;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .play-button:hover {
            background-color: #1976d2;
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .hero-image-container {
            flex: 1 1 500px;
            max-width: 750px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1.4s ease-out forwards;
            z-index: 2;
        }

        .hero-image-container img {
            width: 100%;
            max-width: 700px;
            border-radius: 20px;
            transition: transform 0.4s ease;
        }

        .hero-image-container img:hover {
            transform: scale(1.05);
        }

        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .video-modal.active {
            display: flex;
        }

        .video-modal .video-container {
            position: relative;
            max-width: 900px;
            width: 90%;
        }

        .video-modal iframe {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 12px;
        }

        .video-modal .close-btn {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                padding: 100px 5%;
                min-height: auto;
            }

            .hero-content h1 {
                font-size: 44px;
            }

            .hero-content .typed-text {
                font-size: 22px;
            }

            .hero-content p {
                font-size: 18px;
            }

            .hero-image-container img {
                max-width: 550px;
            }

            .video-modal iframe {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 80px 5%;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content .typed-text {
                font-size: 20px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .hero-content .stats {
                font-size: 16px;
                flex-direction: column;
                gap: 10px;
            }

            .hero-content .buttons {
                justify-content: center;
            }

            .hero-image-container {
                max-width: 100%;
            }

            .hero-image-container img {
                max-width: 450px;
            }

            .hero::before {
                width: 250px;
                height: 250px;
                top: -50px;
                right: -50px;
            }

            .video-modal iframe {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 60px 4%;
            }

            .hero-content h1 {
                font-size: 30px;
            }

            .hero-content .typed-text {
                font-size: 18px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .btn {
                padding: 12px 24px;
                font-size: 14px;
            }

            .play-button {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .video-modal iframe {
                height: 200px;
            }
        }

  .action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: 25px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.action-primary {
  background-color: #ec2474;
  color: #fff;
  border: none;
}

.action-primary:hover {
  background-color: #c61d5f;
  transform: translateY(-2px);
}

.action-secondary {
  background-color: #fff;
  color: #2a2a72;
  border: 2px solid #2a2a72;
}

.action-secondary:hover {
  background-color: #f9f9f9;
  color: #1a1a5e;
  transform: translateY(-2px);
}

.play-circle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2484ec;
  color: white;
  font-size: 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.play-circle-btn:hover {
  background-color: #1d6ed4;
  transform: scale(1.05);
}

.kreedo-features-section {
  background: #fff;
}

.kreedo-features-section h2 {
  color: #1b1464;
  font-size: 1.75rem;
}

.feature-card {
  border-radius: 20px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.feature-icon {
  font-size: 45px;
}

.feature-title {
  font-size: 1.1rem;
  color: #000;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #222;
}

@media (max-width: 768px) {
  .kreedo-features-section h2 {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 20px;
    text-align: left;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

.kreedo-banner-section {
  background: radial-gradient(circle at center, #2b245b 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.banner-icon {
  max-width: 120px;
  animation: float 4s ease-in-out infinite;
}

.left-icon {
  transform: rotate(-15deg);
}

.right-icon {
  transform: rotate(10deg);
}

.text-highlight {
  color: #4dafff;
}

.kreedo-banner-section h2 {
  font-size: 1.75rem;
  line-height: 1.6;
}

.kreedo-banner-section .btn-primary {
  background-color: #4dafff;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.kreedo-banner-section .btn-primary:hover {
  background-color: #1c7ed6;
  transform: scale(1.05);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 768px) {
  .kreedo-banner-section h2 {
    font-size: 1.3rem;
  }
}

.kreedo-6t-section {
  background: radial-gradient(circle at center, #fff6ed, #fde7d5);
  font-family: 'Poppins', sans-serif;
}

.kreedo-6t-section h2 {
  color: #2b245b;
  font-size: 2rem;
}

.kreedo-6t-section p {
  font-size: 1rem;
  color: #555;
}

.flip-card {
  background-color: transparent;
  perspective: 1000px;
  border-radius: 20px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 20px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.flip-card-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  padding: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

.card-overlay h5 span {
  color: #fbb03b; /* Orange for "T" */
}

.flip-card-back {
  background: linear-gradient(135deg, #1c1c3c, #2e2e5e);
  -webkit-text-fill-color: #ffffff;
  transform: rotateY(180deg);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.flip-card-back p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.learn-more-btn {
  margin-top: 15px;
  padding: 8px 20px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.learn-more-btn:hover {
  background-color: #fbb03b;
  border-color: #fbb03b;
  color: #1c1c3c;
}

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      padding: 40px;
      overflow: hidden;
      animation: fadeIn 1.2s ease-in-out;
      margin-bottom: 30px;
      margin-top: 30px;
    }
    .faq-title {
      text-align: center;
      font-size: 2.8rem;
      color: #1a1a1a;
      margin-bottom: 40px;
      font-weight: 800;
      letter-spacing: -0.5px;
      position: relative;
    }
    .faq-title::after {
      content: '';
      width: 80px;
      height: 5px;
      background: linear-gradient(to right, #007bff, #00c4ff);
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
    }
    .faq-item {
      border-bottom: 1px solid #ececec;
      margin-bottom: 20px;
      transition: all 0.4s ease;
      border-radius: 10px;
    }
    .faq-item:hover {
      background: #f9f9f9;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    .faq-question {
      padding: 20px;
      cursor: pointer;
      font-size: 1.3rem;
      font-weight: 600;
      color: #1a1a1a;
      position: relative;
      transition: color 0.3s ease;
    }
    .faq-question::after {
      content: '\002B';
      font-size: 1.5rem;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #007bff;
      transition: transform 0.4s ease;
    }
    .faq-question:hover {
      color: #007bff;
    }
    .faq-question.active::after {
      content: '\2212';
      transform: translateY(-50%) rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      font-size: 1rem;
      color: #4a4a4a;
      line-height: 1.7;
      transition: max-height 0.6s ease, padding 0.6s ease;
    }
    .faq-answer.active {
      max-height: 250px;
      padding: 20px;
    }
    /* Animation for fade-in */
    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    /* Responsive adjustments */
    @media (max-width: 576px) {
      .faq-container {
        padding: 25px;
      }
      .faq-title {
        font-size: 2.2rem;
      }
      .faq-question {
        font-size: 1.1rem;
      }
      .faq-answer {
        font-size: 0.95rem;
      }
    }

    .goal-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
  }

  .goal-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
  }

  .goal-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .support-section {
  background-color: #fff;
  overflow: hidden;
}

.support-section .icon {
  width: 32px;
  height: 32px;
}

.support-img {
  border-radius: 12px;
  object-fit: cover;

}

	