/* CSS for section section:Header */

.header-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 113px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 36px;
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 16px;
    }
    .header-nav {
        width: 100%;
        justify-content: space-around;
    }
    .header-nav .btn {
        flex-grow: 1;
        font-size: 14px;
        padding: 8px 14px;
    }
}

/* CSS for section section:Hero */
.hero-section {
    background: var(--secondary-gradient);
    padding: 80px 20px 50px;
    overflow: hidden;
}
.hero-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
}
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-title {
    font-size: 54px;
    line-height: 68px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}
.hero-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: var(--text-medium);
    margin: 0;
    max-width: 504px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: -4px;
}
.btn-small {
    padding: 8px 24px;
    font-size: 15px;
}
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-top: 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}
.feature-icon-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature-icon-wrapper img {
    width: 20px;
    height: 20px;
}
.hero-image-container {
    flex: 1;
    position: relative;
    max-width: 536px;
}
.hero-bg-blur-1 {
    position: absolute;
    width: 256px;
    height: 256px;
    background-color: #9810fa;
    border-radius: 50%;
    filter: blur(128px);
    opacity: 0.2;
    top: -16px;
    left: -72px;
    z-index: 0;
}
.hero-bg-blur-2 {
    position: absolute;
    width: 256px;
    height: 256px;
    background-color: #4f39f6;
    border-radius: 50%;
    filter: blur(128px);
    opacity: 0.2;
    bottom: -128px;
    right: 0;
    z-index: 0;
}
.hero-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0px 15px 30px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-title {
        font-size: 48px;
        line-height: 60px;
    }
    .hero-features {
        grid-template-columns: repeat(2, auto);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* CSS for section section:WhyAspira */
.why-aspira-section {
    background-color: #ffffff;
    padding: 50px 20px;
}
.section-title {
    font-size: 34px;
    line-height: 40px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 24px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-card {
    background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 141.42%);
    border: 0.8px solid #e0e7ff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.card-icon-wrapper {
    background-color: var(--primary-color);
    border-radius: 14px;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-icon-wrapper img {
    width: 28px;
    height: 28px;
}
.feature-card h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}
.feature-card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-medium);
    margin: 0;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:SuccessStories */

.story-card {
  background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 141.42%);
  border: 1px solid #e0e7ff;
  border-radius: 14px;
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.story-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 4px #ffffff;
  margin-bottom: 0.25rem;
}
.story-name {
  font-size: 1.25rem;  
  font-weight: 400;
   margin:0;
 
}
.story-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin:0;
  padding:0;
}
.story-company-badge {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.125rem 0.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Testimonials */
.testimonials-section {
    padding: 50px 20px;
    background-color: var(--background-light);
}
.testimonials-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 54px;
}
.testimonials-group:last-child {
    margin-bottom: 0;
}
.group-title {
    font-size: 34px;
    line-height: 40px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;  
}
.group-subtitle {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    margin: 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    width: 100%;
}
.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.video-card-top {
    background-color: var(--accent-yellow);
    padding: 20px;
    position: relative;
    height: 198px;
    box-sizing: border-box;
}
.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 22px;
    height: 35px;
}
.review-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 34.56px;
    line-height: 1.18;
    color: #0e0e0e;
}
.review-text p {
    margin: 0;
}
.student-image-container {
    position: absolute;
    right: 20px;
    bottom: -20px;
    width: 152px;
    height: 152px;
}
.student-image-wrapper {
    position: absolute;
    inset: 2.375px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.student-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.student-image-wrapper-rishika {
    background-color: #d4969c;
}
.student-image-border {
    position: absolute;
    inset: 0;
    border: 1.6px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0px 11.9px 14.88px -2.98px rgba(0, 0, 0, 0.1), 0px 4.76px 5.95px -3.57px rgba(0, 0, 0, 0.1);
}
.video-card-bottom {
    padding: 44px 24px 24px;
}
.video-card-bottom h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}
.video-card-bottom p {
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-color);
    margin: 0;
}
.text-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.quote-icon-large {
    width: 32px;
    height: 32px;
}
.testimonial-text {
    font-size: 16px;
    line-height: 26px;
    color: #364153;
    margin: 0;
    flex-grow: 1;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.author-image-wrapper {
    /* width: 100%;
    height: 56px;*/   
    overflow: hidden;
}
.author-image-wrapper img {
    width: 100%;
    height: 100%;
	 border-radius: 50%;
    object-fit: cover;
}
.author-details h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}
.author-details p {
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-color);
    margin: 0;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:CurriculumHighlights */
.curriculum-highlights-section {
    padding: 50px 20px;
    background-color: #ffffff;
}
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1050px;
    margin: 0 auto;
}
.curriculum-item {
    background: linear-gradient(90deg, #eef2ff 0%, #faf5ff 100%);
    border: 0.8px solid #e0e7ff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 26px;
    color: #364153;
}
.curriculum-item img {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 4px;
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:PortfolioShowcase */
.portfolio-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 141.42%);
    padding: 50px 20px;
    text-align: center;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.portfolio-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 40px 16px 16px;
}
.portfolio-overlay p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:Mentor */
.mentor-section { padding: 50px 20px; }
.mentor-header { text-align: center; margin-bottom: 44px; }
.mentor-subtitle { font-size: 20px; line-height: 28px; color: var(--primary-color); margin-top: 16px; }
.mentor-main-content { display: flex; gap: 64px; align-items: flex-start; margin-bottom: 45px; }
.mentor-image-container { flex-shrink: 0; width: 320px; height: 320px; border-radius: 16px; box-shadow: 0px 15px 30px -12px rgba(0, 0, 0, 0.25); overflow: hidden; }
.mentor-image-container img { width: 100%; height: 100%; object-fit: cover; }
.mentor-details { flex-grow: 1; }
.mentor-bio { font-size: 18px; line-height: 29.25px; color: #364153; margin: 0 0 32px 0; }
.mentor-workshops h3 { font-size: 24px; line-height: 32px; color: var(--text-dark); margin: 0 0 24px 0; }
.mentor-workshops > p { font-size: 16px; line-height: 24px; color: var(--text-medium); margin: 0 0 24px 0; }
.workshop-list { display: flex; flex-direction: column; gap: 24px; }
.workshop-item { background: linear-gradient(90deg, #eef2ff 0%, #faf5ff 100%); border: 0.8px solid #e0e7ff; border-radius: 14px; padding: 16px; }
.workshop-item-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.workshop-item-header img { background-color: var(--primary-color); border-radius: 50%; padding: 2px; width: 12px; height: 12px; }
.workshop-item-header h4 { font-size: 16px; line-height: 24px; color: var(--text-dark); margin: 0; }
.workshop-item p { font-size: 14px; line-height: 20px; color: var(--text-medium); margin: 0; padding-left: 28px; }
.mentor-support-section { background: var(--primary-gradient); border-radius: 16px; padding: 20px; color: #ffffff; text-align: center; margin-bottom: 45px; }
.mentor-support-header { margin-bottom: 32px; }
.mentor-support-header h3 { font-size: 30px; line-height: 36px; margin: 0 0 12px 0; }
.mentor-support-header p { font-size: 18px; line-height: 28px; color: #e0e7ff; margin: 0; }
.mentor-support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.support-item { background-color: rgba(255, 255, 255, 0.1); border-radius: 10px; padding: 12px; text-align: left; display: flex; align-items: center; gap: 12px; font-size: 16px; color: rgba(255, 255, 255, 0.9); }
.support-item::before { content: ''; display: block; width: 8px; height: 8px; background-color: var(--accent-yellow); border-radius: 50%; flex-shrink: 0; }
.mentor-support-footer { font-size: 16px; line-height: 26px; color: #e0e7ff; max-width: 932px; margin: 0 auto; }
.support-mentors-section { background-color: #f9fafb; border-radius: 16px; padding: 40px; text-align: center; }
.support-mentors-section h3 { font-size: 30px; line-height: 36px; margin: 0 0 12px 0; }
.support-mentors-section > p { font-size: 18px; line-height: 28px; color: var(--text-medium); margin: 0 0 40px 0; }
.support-mentors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mentor-profile-card { background-color: #ffffff; border-radius: 14px; padding: 24px; box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1); }
.mentor-profile-img-wrapper { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; background-color: #e5e7eb; }
.mentor-profile-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.mentor-profile-card h4 { font-size: 18px; line-height: 24px; margin: 0 0 4px 0; }
.mentor-profile-card .title { font-size: 14px; line-height: 20px; color: var(--primary-color); margin: 0 0 4px 0; }
.mentor-profile-card .company { font-size: 14px; line-height: 20px; color: #6a7282; margin: 0; }

@media (max-width: 1024px) {
    .mentor-main-content { flex-direction: column; align-items: center; }
    .mentor-image-container { margin-bottom: 32px; }
    .support-mentors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mentor-support-grid { grid-template-columns: 1fr; }
    .support-mentors-grid { grid-template-columns: 1fr; }
}

/* CSS for section section:Curriculum */
.curriculum-highlights-section {
    padding: 50px 20px;
    background-color: #ffffff;
}
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1050px;
    margin: 0 auto;
}
.curriculum-item {
    background: linear-gradient(90deg, #eef2ff 0%, #faf5ff 100%);
    border: 0.8px solid #e0e7ff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 26px;
    color: #364153;
}
.curriculum-item img {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 4px;
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:Tools */
.tools-section {
    background-color: #ffffff;
    padding: 50px 20px;
}
.section-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: var(--text-medium);
    text-align: center;
    margin: 16px 0 50px 0;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 24px;
}
.tool-card {
    background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 141.42%);
    border: 0.8px solid #e0e7ff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    height: 110px;
}
.tool-card img {
    height: 64px;
    width: 64px;
    object-fit: contain;
}
.tool-card span {
    font-size: 16px;
    line-height: 24px;
    color: #1e2939;
    text-align: center;
}
.lovable-dev-logo {
    position: relative;
    width: 64px;
    height: 64px;
}

/* CSS for section section:Pricing */
.pricing-section {
    background-color: #ffffff;
    padding: 50px 20px;
}
.pricing-card {
    background: var(--primary-gradient);
    border-radius: 24px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 48px;
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    color: var(--text-light);
}
.offer-tag {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
}
.price {
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
}
.emi-info {
    font-size: 20px;
    line-height: 28px;
    color: #e0e7ff;
    margin: -12px 0 0 0;
}
.includes-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
}
.includes-section h4 {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 16px 0;
}
.includes-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.includes-section li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
}
.includes-section li img {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 2px;
    width: 12px;
    height: 12px;
}
.btn-light {
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 14px;
    padding: 10px 24px;
}

/* CSS for section section:ApplicationForm */
.application-form-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 141.42%);
    padding: 50px 20px;
}
.form-container {
    max-width: 736px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.form-header {
    text-align: center;
    margin-bottom: 48px;
}
.form-header h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 400;
    margin: 0 0 16px 0;
}
.form-header p {
    font-size: 20px;
    line-height: 28px;
    color: var(--text-medium);
    margin: 0;
}
.form-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 14px;
    line-height: 1;
    color: #0a0a0a;
}
.form-group input {
    background-color: #f3f3f5;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    line-height: 16px;
    height: 48px;
    box-sizing: border-box;
}
.form-group input::placeholder {
    color: #717182;
}
.btn-submit {
    background-color: var(--accent-yellow);
    color: #101828;
    font-size: 14px;
    line-height: 20px;
    height: 48px;
    border: none;
}
.form-footer {
    font-size: 14px;
    line-height: 20px;
    color: #6a7282;
    text-align: center;
    margin: 0;
}

/* CSS for section section:FAQ */
.faq-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 141.42%);
    padding: 50px 20px;
}
.faq-list {
    max-width: 864px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-dark);
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item p {
    padding: 0 24px 16px;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}
.faq-item[open] summary img {
    transform: rotate(45deg);
}
.faq-item summary img {
    transition: transform 0.2s ease-in-out;
}

/* CSS for section section:FinalCTA */
.final-cta-section {
    background: var(--primary-gradient);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--text-light);
}
.cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.cta-container h2 {
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    margin: 0;
    max-width: 682px;
}
.cta-container p {
    font-size: 20px;
    line-height: 28px;
    color: #e0e7ff;
    margin: 0;
    max-width: 672px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.btn-light-cta {
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 10px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
}
.btn-outline-light-cta {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
}
.cta-bg-blur-1 {
    position: absolute;
    width: 256px;
    height: 256px;
    background-color: #c27aff;
    border-radius: 50%;
    filter: blur(128px);
    opacity: 0.2;
    top: 100px;
    left: 64px;
    z-index: 0;
}
.cta-bg-blur-2 {
    position: absolute;
    width: 256px;
    height: 256px;
    background-color: #7c86ff;
    border-radius: 50%;
    filter: blur(128px);
    opacity: 0.2;
    bottom: -100px;
    right: 120px;
    z-index: 0;
}

@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 36px;
		line-height: 46px;
    }
    .cta-container p {
        font-size: 18px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 480px) {
	.header-container {
        padding: 0 10px;
        flex-direction: column;
        gap: 10px;
    }
	    .header-nav .btn {
        flex-grow: 1;
        font-size: 14px;
        padding: 6px 8px;
    }
	.container {
        padding: 0 10px;
    }
	
	.testimonials-grid {       
    gap: 16px; 
	}
	.tools-section {
		padding:20px;
	}
	.mentor-image-container {
    flex-shrink: 0;
    width: 280px;
    height: 280px;    
    overflow: hidden;
	}
	
	.mentor-main-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
	}
	
	.support-mentors-section {   
    padding: 40px 20px;   
	}
	.curriculum-grid {    
    gap: 16px;   
	}
	
	.price {
    font-size: 48px;
    }
	.pricing-card {    
    padding: 20px ;
	}
	.emi-info {
    font-size: 16px;
    line-height: 24px;
    }
	
	.includes-section {  
    padding: 16px;      
	}
	
	.includes-section li {
    gap: 8px;
    font-size: 16px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.9);
	}
	
	.emi-info {    
    text-align: center;
	}
	.application-form-section{
		padding:40px 10px;
	}
	.form-container {
	padding:10px;
	}
}

/** Watsapp code **/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}