/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.gradient-text {
    background: linear-gradient(to right, #2563eb, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: none;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1f2937;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    background: linear-gradient(to right, #2563eb, #059669);
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
}

.nav-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-cta {
    background: linear-gradient(to right, #2563eb, #059669);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.nav-cta:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-toggle {
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #2563eb;
}

.mobile-menu {
    background: white;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #2563eb;
    background-color: #f9fafb;
}

.mobile-nav-cta {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    background: linear-gradient(to right, #2563eb, #059669);
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    margin-top: 1rem;
    cursor: pointer;
}

/* Page Header */
.page-header {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #dcfce7 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-header-content h1 {
        font-size: 3rem;
    }
}

.page-header-content p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding-top: 4rem;
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #dcfce7 100%);
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .hero {
        padding-bottom: 5rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    gap: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background: linear-gradient(to right, #2563eb, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-card {
    position: relative;
}

.feature-card {
    background: linear-gradient(135deg, #2563eb, #059669);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    width: 2rem;
    height: 2rem;
}

.feature-item h3 {
    font-weight: 600;
    font-size: 1.125rem;
}

.feature-item p {
    color: #bfdbfe;
}


/* Testimonail Section*/
/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.testimonials-carousel {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .testimonials-carousel {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    color: #fbbf24;
    width: 1rem;
    height: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, #2563eb, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-avatar.green {
    background: linear-gradient(to right, #059669, #2563eb);
}

.author-avatar.purple {
    background: linear-gradient(to right, #7c3aed, #ec4899);
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #9ca3af;
    font-size: 0.75rem;
}

.testimonials-cta {
    text-align: center;
}

/* Featured Testimonials */
.featured-testimonials {
    padding: 5rem 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-card.featured {
    border: 2px solid #2563eb;
    position: relative;
}

.testimonial-card.featured::before {
    content: "Featured";
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to right, #2563eb, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.testimonial-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.detail-item i {
    width: 1rem;
    height: 1rem;
    color: #2563eb;
}

/* More Testimonials */
.more-testimonials {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.more-testimonials h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

.testimonials-list {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-list {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    color: #2563eb;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-style: italic;
    color: #6b7280;
    line-height: 1.6;
}

.author-avatar.orange {
    background: linear-gradient(to right, #ea580c, #f59e0b);
}

.author-avatar.teal {
    background: linear-gradient(to right, #0d9488, #06b6d4);
}

.author-avatar.red {
    background: linear-gradient(to right, #dc2626, #f59e0b);
}

.author-avatar.blue {
    background: linear-gradient(to right, #2563eb, #059669);
}

.author-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}
/* Overview Section */
.overview {
    padding: 5rem 0;
    background-color: white;
}

.overview-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.overview-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.overview-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.overview-icon.blue {
    background-color: #dbeafe;
}

.overview-icon.green {
    background-color: #dcfce7;
}

.overview-icon.purple {
    background-color: #f3e8ff;
}

.overview-icon i {
    width: 2rem;
    height: 2rem;
}

.overview-icon.blue i {
    color: #2563eb;
}

.overview-icon.green i {
    color: #059669;
}

.overview-icon.purple i {
    color: #7c3aed;
}

.overview-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.overview-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.overview-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.overview-link:hover {
    color: #1d4ed8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* About Content */
.about-content {
    padding: 5rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.about-text p {
    color: #6b7280;
    line-height: 1.5;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature i {
    color: #059669;
    margin-top: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
}

.feature h4 {
    font-weight: 600;
    color: #1f2937;
}

.feature p {
    color: #6b7280;
}

.about-cards {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.about-card {
    padding: 1.5rem;
    border-radius: 1rem;
}

.about-card.blue {
    background-color: #dbeafe;
}

.about-card.green {
    background-color: #dcfce7;
}

.about-card.purple {
    background-color: #f3e8ff;
}

.about-card.orange {
    background-color: #fed7aa;
}

.about-card i {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
}

.about-card.blue i {
    color: #2563eb;
}

.about-card.green i {
    color: #059669;
}

.about-card.purple i {
    color: #7c3aed;
}

.about-card.orange i {
    color: #ea580c;
}

.about-card h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.mission-vision-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mission-card,
.vision-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-icon,
.vision-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to right, #2563eb, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i,
.vision-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
}

.stats-content {
    text-align: center;
}

.stats-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: #bfdbfe;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon.blue {
    background-color: #dbeafe;
}

.service-icon.green {
    background-color: #dcfce7;
}

.service-icon.purple {
    background-color: #f3e8ff;
}

.service-icon.orange {
    background-color: #fed7aa;
}

.service-icon.red {
    background-color: #fee2e2;
}

.service-icon.teal {
    background-color: #ccfbf1;
}

.service-icon i {
    width: 2rem;
    height: 2rem;
}

.service-icon.blue i {
    color: #2563eb;
}

.service-icon.green i {
    color: #059669;
}

.service-icon.purple i {
    color: #7c3aed;
}

.service-icon.orange i {
    color: #ea580c;
}

.service-icon.red i {
    color: #dc2626;
}

.service-icon.teal i {
    color: #0d9488;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    gap: 0.5rem;
}

.service-features i {
    color: #10b981;
    width: 1rem;
    height: 1rem;
}

.service-details {
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}

.service-details h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-details li {
    font-size: 0.875rem;
    color: #6b7280;
    padding-left: 1rem;
    position: relative;
}

.service-details li::before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.pricing-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #2563eb;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #2563eb, #059669);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.pricing-features i {
    color: #10b981;
    width: 1rem;
    height: 1rem;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(to right, #2563eb, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: box-shadow 0.3s ease;
    display: block;
}

.pricing-btn:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note p {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: white;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
         justify-content: center; /* Center the grid */
    }
}

.team-card {
    background: linear-gradient(135deg, #dbeafe, white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.team-avatar.blue-gradient {
    background: linear-gradient(to right, #2563eb, #059669);
}

.team-avatar.green-gradient {
    background: linear-gradient(to right, #059669, #2563eb);
}

.team-avatar.purple-gradient {
    background: linear-gradient(to right, #7c3aed, #ec4899);
}

.team-avatar.orange-gradient {
    background: linear-gradient(to right, #ea580c, #f59e0b);
}

.team-avatar.teal-gradient {
    background: linear-gradient(to right, #0d9488, #06b6d4);
}

.team-avatar.red-gradient {
    background: linear-gradient(to right, #dc2626, #f59e0b);
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.team-role {
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-role.blue {
    color: #2563eb;
}

.team-role.green {
    color: #059669;
}

.team-role.purple {
    color: #7c3aed;
}

.team-role.orange {
    color: #ea580c;
}

.team-role.teal {
    color: #0d9488;
}

.team-role.red {
    color: #dc2626;
}

.team-bio {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: left;
}

.team-details {
    text-align: left;
    margin-bottom: 1rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}

.team-details h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.team-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.team-details li {
    font-size: 0.75rem;
    color: #6b7280;
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.team-details li::before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
}

.team-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag.blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.tag.green {
    background-color: #dcfce7;
    color: #166534;
}

.tag.purple {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.tag.pink {
    background-color: #fce7f3;
    color: #be185d;
}

.tag.orange {
    background-color: #fed7aa;
    color: #c2410c;
}

.tag.teal {
    background-color: #ccfbf1;
    color: #0f766e;
}

.team-stats {
    text-align: center;
}

.stats-card {
    background: linear-gradient(to right, #dbeafe, #dcfce7);
    padding: 2rem;
    border-radius: 1rem;
}

.stats-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-number.blue {
    color: #2563eb;
}

.stat-number.green {
    color: #059669;
}

.stat-number.purple {
    color: #7c3aed;
}

.stat-number.orange {
    color: #ea580c;
}

.stat-text {
    color: #6b7280;
}

/* Mentor Matching */
.mentor-matching {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.matching-content {
    text-align: center;
}

.matching-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.matching-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.matching-process {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .matching-process {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.process-step {
    text-align: center;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, #2563eb, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 50%;
}

.contact-icon.blue {
    background-color: #dbeafe;
}

.contact-icon.green {
    background-color: #dcfce7;
}

.contact-icon.purple {
    background-color: #f3e8ff;
}

.contact-icon.orange {
    background-color: #fed7aa;
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-icon.blue i {
    color: #2563eb;
}

.contact-icon.green i {
    color: #059669;
}

.contact-icon.purple i {
    color: #7c3aed;
}

.contact-icon.orange i {
    color: #ea580c;
}

.contact-method h4 {
    font-weight: 600;
    color: #1f2937;
}

.contact-method p {
    color: #6b7280;
}

.contact-method span {
    font-size: 0.875rem;
    color: #9ca3af;
}

.consultation-card {
    background: linear-gradient(to right, #2563eb, #059669);
    padding: 1.5rem;
    border-radius: 1rem;
    color: white;
}

.consultation-card h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.consultation-card p {
    color: #bfdbfe;
    margin-bottom: 1rem;
}

.consultation-btn {
    background: white;
    color: #2563eb;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.consultation-btn:hover {
    background-color: #dbeafe;
}

.contact-social {
    margin-top: 1rem;
}

.contact-social h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2563eb;
}

.social-link i {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #2563eb;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.terms-link {
    color: #2563eb;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: linear-gradient(to right, #2563eb, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.form-submit:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question h4 {
    font-weight: 600;
    color: #1f2937;
}

.faq-question i {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-buttons .btn-primary {
    background: white;
    color: #2563eb;
}

.cta-buttons .btn-primary:hover {
    background-color: #f3f4f6;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    background: linear-gradient(to right, #2563eb, #059669);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.footer-logo-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.5;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-services li,
.footer-contact li {
    color: #9ca3af;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}

.footer-left,
.footer-right {
  margin: 5px 0;
}

.footer-bottom p {
    color: #9ca3af;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    font-size: 1.25rem;
    color: #9ca3af;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    color: white;
    transform: scale(1.1);
}

.social-link.facebook:hover {
    color: #1877f2;
}
.social-link.linkedin:hover {
    color: #0077b5;
}
.social-link.instagram:hover {
    color: #e1306c;
}
.social-link.tiktok:hover {
    color: #000000;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.phone-link {
color: inherit;
text-decoration: none;
}

/* Dropdown Menu Container for dropdown */
.nav-dropdown {
  position: relative;
}

/* Hide dropdown by default */
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  z-index: 1000;
}

/* Show on hover */
.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* Individual items */
.dropdown-item {
  padding: 0.75rem 1rem;
  display: block;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: #f3f3f3;
}

/* Modal Popup */
/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  padding-top: 60px;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.modal-content button {
  width: 100%;
  padding: 0.9rem;
  background-color: #2563eb;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #1d4ed8;
}

.open-modal-btn {
  padding: 0.7rem 1.2rem;
  background-color: #10b981;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.open-modal-btn:hover {
  background-color: #059669;
}

/* Course Overview */
.course-overview {
    padding: 5rem 0;
    background-color: white;
}

.course-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .course-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.course-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.course-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.course-highlights {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .course-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
}

.highlight-item i {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.highlight-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.course-stats .stats-card {
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.course-stats .stats-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #bfdbfe;
}

/* Image Slider */
.slider-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.image-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1200px;
}

.slider-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 600px;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-style: preserve-3d;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.slide-content p {
    color: #e5e7eb;
    font-size: 1rem;
}

/* Active slide (center) */
.slide.active {
    z-index: 3;
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide.active:hover img {
    transform: scale(1.05);
}

/* Previous slide (left) */
.slide.prev {
    z-index: 2;
    transform: translateX(-200px) scale(0.8) rotateY(25deg);
    opacity: 0.7;
}

/* Next slide (right) */
.slide.next {
    z-index: 2;
    transform: translateX(200px) scale(0.8) rotateY(-25deg);
    opacity: 0.7;
}

/* Hidden slides */
.slide.hidden {
    z-index: 1;
    transform: scale(0.6);
    opacity: 0.3;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(to right, #2563eb, #059669);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.slider-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(to right, #2563eb, #059669);
    transform: scale(1.2);
}

.dot:hover {
    background-color: #9ca3af;
}


/* Study Strategy */
.study-strategy {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.strategy-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .strategy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.strategy-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.strategy-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #2563eb, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.strategy-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.strategy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.strategy-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.strategy-card ul {
    list-style: none;
}

.strategy-card li {
    color: #6b7280;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.strategy-card li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

