* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: white;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 32px;
    font-weight: bold;
}

.letter-r {
    color: #ef4444;
}
.letter-o {
    color: #f97316;
}
.letter-y {
    color: #eab308;
}
.letter-g {
    color: #22c55e;
}
.letter-b {
    color: #3b82f6;
}
.letter-p {
    color: #002649;
}
.letter-pk {
    color: #ec4899;
}

.btn-primary {
    background: #002649;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #043f75;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* Fixed background image path and improved background settings */
    background-image: url("../img/bg-ras.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        /* Fixed background image path and improved background settings */
        background-image: url("../img/bg-ras.jpg");
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Increased overlay opacity for better text contrast */
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 24px;
}

.badge {
    display: inline-block;
    /* Enhanced badge styling for better visibility */
    background: rgba(139, 92, 246, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
    /* Added text shadow for better readability */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    /* Added text shadow for better readability */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-info {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-color: #fbbf24;
        color: #002649;
        gap: 4px;
        font-size: 14px;
        padding: 12px 24px;
        border-radius: 50px;
        width: 50%;
        margin: 0 auto;
        font-weight: 500;
    }
}

.hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fbbf24;
    color: #002649;
    gap: 4px;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.text-purple {
    color: #002649;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Footers */
.section-footer {
    text-align: center;
    margin-top: 64px;
}

.section-footer h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.section-footer p {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width: 768px) {
    .about-features {
        display: none;
        flex-direction: column;
        gap: 32px;
    }
}

.feature {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    background: #002649;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002649;
    margin-bottom: 8px;
    margin-left: 4px;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.value-item {
    text-align: center;
}

.value-icon {
    background: #002649;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon i {
    color: white;
    font-size: 32px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-item p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Curriculum Section */
.curriculum {
    padding: 80px 0;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .curriculum-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.curriculum-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.card-icon {
    background: #002649;
    border-radius: 8px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon i {
    color: white;
    font-size: 24px;
}

.curriculum-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002649;
    margin-bottom: 12px;
    line-height: 1.3;
}

.curriculum-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Problems Section */
.problems {
    padding: 80px 0;
    background: #fef2f2;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ef4444;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    background: #ef4444;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon i {
    color: white;
    font-size: 20px;
}

.problem-item p {
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #002649 0%, #043f75 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-urgency {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.btn-cta {
    background: #fbbf24;
    color: #1f2937;
    font-weight: 700;
    margin: 24px 0;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f59e0b;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}

.cta-footer {
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
}

/* Registration Form Styles */
.registration-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    background: white;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-benefits {
    margin-top: 24px;
    text-align: left;
}

.form-benefits p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.form-benefits i {
    color: #22c55e;
    font-size: 16px;
}

@media (max-width: 640px) {
    .registration-form {
        padding: 24px;
        margin: 24px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-cta {
        font-size: 16px;
        padding: 16px 24px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problem-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 40px 20px;
        margin-top: 40px;
    }
}

/* Animation Enhancements */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* When and Where Section */
.when-where {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.when-where-content {
    display: flex;
    justify-content: center;
}

.when-where-card {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: center;
    border: 2px solid #002649;
    position: relative;
    overflow: hidden;
}

.when-where-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #002649,
        #ec4899,
        #f59e0b,
        #22c55e,
        #3b82f6
    );
}

.when-where-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 40px;
    position: relative;
}

.when-where-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #002649;
    border-radius: 2px;
}

.when-where-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .when-where-details {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    background: #f1f5f9;
}

.detail-icon {
    background: linear-gradient(135deg, #002649, #043f75);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.detail-icon i {
    color: white;
    font-size: 24px;
}

.detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.detail-content p {
    font-size: 18px;
    color: #002649;
    font-weight: 600;
}

.when-where-cta {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}

.when-where-cta .btn-primary {
    font-size: 18px;
    padding: 16px 32px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #002649, #043f75);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transform: scale(1.02);
}

.when-where-cta .btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.availability-note {
    margin-top: 12px;
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    }
    100% {
        box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
    }
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  width: 100%;
  flex-shrink: 0;
  background: white;
  padding: 40px;
  text-align: center;
  opacity: 0.7;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #002649;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 14px;
  color: #6b7280;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  font-style: italic;
  position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .problem-item {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-section {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .when-where-card {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .when-where-header h2 {
    font-size: 2rem;
  }

  .detail-item {
    padding: 20px;
  }

  .detail-content h3 {
    font-size: 18px;
  }

  .detail-content p {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 12px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-text::before,
  .testimonial-text::after {
    font-size: 32px;
  }

  .testimonial-text::before {
    top: -5px;
    left: -10px;
  }

  .testimonial-text::after {
    bottom: -20px;
    right: -10px;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
  }

  .testimonial-navigation {
    gap: 16px;
    margin-top: 24px;
  }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 15px;
    bottom: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 60px;
        right: 15px;
    }
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}