:root {
  --accent-color: #111827;
  --dark-color: #111827;
  --light-dark-color: #6b7280;
  --light-color: #fff;
  --grey-color: #9ca3af;
  --light-grey-color: #f9fafb;
  --primary-color: #111827;
  --light-primary-color: #f3f4f6;
  --body-font: 'Inter', sans-serif;
  --heading-font: 'Inter', sans-serif;
  --secondary-font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-color);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    letter-spacing: 0.01625rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    font-weight: 600;
    text-transform: capitalize;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
}

.navbar.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(79, 70, 229, 0.05);
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
    color: #374151;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-link:hover {
    background: rgba(241, 189, 3, 0.05);
    transform: translateY(-1px);
}

.brand-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: #111827;
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--accent-color);
    background: rgba(241, 189, 3, 0.05);
}

.nav-links.active {
    display: flex;
}

/* Grain effect */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSBiYXNlRnJlcXVlbmN5PSIwLjkiIG51bU9jdGF2ZXM9IjQiIHNlZWQ9IjIiLz48L2ZpbHRlcj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 189, 3, 0.2);
    background: linear-gradient(135deg, rgba(241, 189, 3, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
}

.badge i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.badge:hover i {
    transform: rotate(10deg) scale(1.1);
}

.features-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.feature-item:hover {
    transform: translateX(8px);
    color: rgba(255, 255, 255, 1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    color: var(--accent-color);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta {
    margin-top: 2rem;
}

.availability {
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.status-icon {
    width: 18px;
    height: 18px;
}

.store-badges {
    display: flex;
    gap: 16px;
    margin-top: 1rem;
}

.store-badge {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0.8;
    position: relative;
}

.store-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

/* .store-badge:hover {
    transform: translateY(-4px) scale(1.05);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
} */

.store-badge:hover::before {
    left: 100%;
}

.store-badge img {
    display: block;
    height: auto;
}

.app-store img {
    width: 140px;
    height: 42px;
    object-fit: contain;
}

.play-store img {
    width: 140px;
    height: 42px;

    object-fit: contain;
}

.store-badge:nth-child(2) img {
    padding: 20px;
    box-sizing: border-box;
    transform: translateY(-28px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('img/hero.webp') center/cover;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 60%;
    animation-delay: 4s;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
    max-width: 600px;
    font-family: 'Inter', sans-serif;
}

.hero-text h1 .highlight {
    color: #000000;
    position: relative;
}

.tagline {
    font-size: 1.3rem;
    color: var(--light-dark-color);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.description {
    font-size: 1.125rem;
    color: var(--grey-color);
    margin-bottom: 2rem;
    line-height: 1.7;
    letter-spacing: -0.015em;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
    background: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    text-transform: none;
}

.btn-primary::after {
    content: '\2192';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

.btn-primary:hover {
    background: #374151;
    transform: translateY(-1px);
}

.btn-secondary {
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    text-transform: none;
}

.btn-secondary::after {
    content: '\2192';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover::after {
    transform: translateX(4px);
}

.btn-secondary:hover {
    color: white;
    background: var(--accent-color);
}

/* App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatFormula {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.phone-frame {
    width: 280px;
    height: 560px;
    border-radius: 32px;
    padding: 3px;
    background: #000000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}



.phone-inner {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 29px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 30px 20px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quiz-preview h3 {
    color: #4f46e5;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.question {
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
    line-height: 1.5;
}

.option {
    padding: 14px 16px;
    margin: 10px 0;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: #374151;
}

.option.selected {
    border-color: #4f46e5;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    color: #4f46e5;
    font-weight: 500;
}

.phone-nav {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 2;
}

.nav-button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.home-btn {
    width: 12px;
    height: 12px;
    background: #333;
}

.nav-button:hover {
    background: #4f46e5;
    transform: scale(1.2);
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Partner Page Styles */
.partner-hero {
    padding: 120px 0 80px;
    background: url('img/partners_bg.jpg') center/cover no-repeat;
    background-color: white;
    text-align: center;
    position: relative;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.partner-header {
    position: relative;
    z-index: 2;
}

.partner-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Jost', sans-serif;
    color: #1f2937;
}

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

.partner-value {
    padding: 80px 0;
    background: white;
}

.partner-value h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    font-family: 'Jost', sans-serif;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.02);
}

@media (prefers-reduced-motion: reduce) {
    .value-item {
        transition: none;
    }
    .value-item:hover {
        transform: none;
    }
}

.value-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.value-icon i {
    width: 20px;
    height: 20px;
}

.value-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-family: 'Jost', sans-serif;
}

.value-item p {
    color: #6b7280;
    line-height: 1.4;
    font-size: 0.85rem;
}

.partner-form-section {
    padding: 80px 0;
    background: var(--light-grey-color);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: 'Jost', sans-serif;
}

.form-container p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.partner-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-family: 'Jost', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}

.partner-testimonials {
    padding: 80px 0;
    background: white;
}

.partner-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    font-family: 'Jost', sans-serif;
}

.pilot-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

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

.pilot-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    font-family: 'Jost', sans-serif;
}

.pilot-stats .stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partner-header h1 {
        font-size: 2.5rem;
    }
    
    .partner-value h2,
    .form-container h2,
    .partner-testimonials h2 {
        font-size: 2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-form {
        padding: 2rem 1.5rem;
    }
    
    .pilot-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pilot-stats .stat-number {
        font-size: 2rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background: #f3f4f6;
}

.ai-quotes {
    padding: 20px 0;
    background: #f9fafb;
}

.quotes-container {
    width: 100vw;
    margin: 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 2rem;
    box-sizing: border-box;
}

.quotes-container::before,
.quotes-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.quotes-container::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}

.quotes-container::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.carousel-arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-arrow-left {
    left: 1rem;
}

.carousel-arrow-right {
    right: 1rem;
}

.carousel-arrow i {
    width: 20px;
    height: 20px;
    color: #374151;
}

.quotes-scroll {
    display: flex;
    gap: 2rem;
    transition: transform 0.8s ease;
    width: max-content;
}

.quote-card {
    width: 450px;
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: none;
    white-space: normal;
}

.quote-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f3f4f6;
    display: block;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #1f2937;
    font-style: italic;
    margin: 0;
    font-family: 'Georgia', serif;
    font-weight: 500;
}

.author-name {
    color: #2563eb;
    font-weight: 700;
    font-style: normal;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 0;
    background: transparent;
    cursor: default;
    border-radius: 0;
    box-shadow: none;
    border: none;
}



.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2563eb;
    margin-bottom: 0.25rem;
    font-family: 'Georgia', serif;
}

.stat-label {
    color: var(--grey-color);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title.left {
    text-align: left;
}

.section-title.right {
    text-align: left;
}

.section-title.center {
    text-align: center;
}

.section-title h2 {
    font-size: 12px;
    font-weight: 400;
    padding: 0;
    line-height: 1;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    position: relative;
}



.section-title p {
    color: #000000;
    margin: 0 0 1rem 0;
    font-size: 3.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    line-height: 1.05;
    max-width: 500px;
}

.section-summary {
    color: var(--grey-color);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 400px;
}

.section-title.right .section-summary {
    margin-left: 0;
}

.section-desc {
    text-align: center;
    margin-bottom: 2rem;
}

.section-desc p {
    font-size: 1.2rem;
    color: var(--grey-color);
    letter-spacing: -0.025em;
    font-family: var(--secondary-font);
    font-style: italic;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
    transition: all 0.4s ease;
    border-radius: 8px;
    cursor: default;
    opacity: 0;
    transform: translateY(30px);
}

.step:hover {
    transform: translateY(-6px) rotate(1deg);
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
}

.step:hover .step-icon::before {
    opacity: 1;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover .step-icon {
    background: #8b5cf6;
    color: white;
    transform: scale(1.1);
}

.step:hover .step-icon::before {
    opacity: 1;
}

.step-icon i {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
}

.step:hover .step-icon i {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-transform: capitalize;
}

.step-content p {
    color: var(--grey-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDUpIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
    opacity: 0.3;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #000000;
    font-family: 'Inter', sans-serif;
    max-width: 450px;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1.1rem;
}

.company-link a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
    position: relative;
    overflow: hidden;
}

.company-link a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.company-link a:hover {
    border-color: transparent;
    transform: translateY(-1px);
}

.company-link a:hover::before {
    width: 100%;
}

.about-details {
    display: grid;
    gap: 2rem;
}

.detail {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
}

.detail:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Students Section */
.students {
    padding: 80px 0;
    background: white;
}

.students-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.students-text {
    text-align: left;
    order: 2;
}

.students-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: var(--light-grey-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.8;
}



.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: default;
    border: 1px solid transparent;
}

.benefit:hover {
    transform: translateY(-4px);
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--light-grey-color);
    color: var(--accent-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.students .benefit:nth-child(1) .benefit-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-color: rgba(34, 197, 94, 0.2);
}

.students .benefit:nth-child(2) .benefit-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-color: rgba(59, 130, 246, 0.2);
}

.students .benefit:nth-child(3) .benefit-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.2);
}

.students .benefit:nth-child(4) .benefit-icon {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
    border-color: rgba(168, 85, 247, 0.2);
}

.students .benefit:hover .benefit-icon {
    transform: scale(1.1);
}

.students .benefit:nth-child(1):hover .benefit-icon {
    background: #16a34a;
    color: white;
}

.students .benefit:nth-child(2):hover .benefit-icon {
    background: #2563eb;
    color: white;
}

.students .benefit:nth-child(3):hover .benefit-icon {
    background: #d97706;
    color: white;
}

.students .benefit:nth-child(4):hover .benefit-icon {
    background: #9333ea;
    color: white;
}

.benefit h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: none;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Schools Section */
.schools {
    padding: 80px 0;
    background: var(--light-grey-color);
}

.schools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.schools-text {
    text-align: right;
    order: 2;
}

.schools-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.dashboard-mockup {
    width: 100%;
    max-width: 350px;
    height: 280px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.mockup-header {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.mockup-chart {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
}

.mockup-stats {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.stat-item {
    flex: 1;
    padding: 0.75rem;
    background: var(--light-grey-color);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}



.school-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.school-benefit {
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: default;
    border: 1px solid #f3f4f6;
}

.school-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.02);
}

.school-benefit .benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid;
}

.schools .school-benefit:nth-child(1) .benefit-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.schools .school-benefit:nth-child(2) .benefit-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.2);
}

.schools .school-benefit:nth-child(3) .benefit-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.2);
}

.schools .school-benefit:nth-child(4) .benefit-icon {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.2);
}

.schools .school-benefit:hover .benefit-icon {
    transform: scale(1.1);
}

.schools .school-benefit:nth-child(1):hover .benefit-icon {
    background: #dc2626;
    color: white;
}

.schools .school-benefit:nth-child(2):hover .benefit-icon {
    background: #059669;
    color: white;
}

.schools .school-benefit:nth-child(3):hover .benefit-icon {
    background: #d97706;
    color: white;
}

.schools .school-benefit:nth-child(4):hover .benefit-icon {
    background: #6366f1;
    color: white;
}

.school-benefit h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1rem;
    text-transform: none;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background: var(--light-grey-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ffd700 100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(241, 189, 3, 0.15);
}

.blog-card-header {
    padding: 1.5rem 1.5rem 0;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-date {
    color: var(--grey-color);
    font-size: 0.9rem;
}

.blog-topic {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-topic.physics {
    background: #e0e7ff;
    color: #3730a3;
}

.blog-topic.mathematics {
    background: #dbeafe;
    color: #1e40af;
}

.blog-topic.chemistry {
    background: #fce7f3;
    color: #be185d;
}

.blog-card-content {
    padding: 0 1.5rem 1.5rem;
}

.blog-card-content h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-transform: none;
}

.blog-card-content p {
    color: var(--grey-color);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--dark-color);
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #e5e7eb;
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

.testimonial:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6b7280;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial:hover .testimonial-avatar {
    border-color: #9ca3af;
    background: #e5e7eb;
}

.testimonial-info {
    flex: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    color: var(--light-dark-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--grey-color);
    font-size: 0.85rem;
    font-weight: 400;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-grey-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.1);
}

.faq-item h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    color: var(--grey-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.cta-text {
    text-align: left;
}

.cta-section h2 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    max-width: 400px;
}

.cta-section p {
    color: var(--grey-color);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    letter-spacing: -0.015em;
}

.section-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    height: 600px;
}

.section-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.section-left h2 {
    font-size: 4rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
}

.section-left p {
    color: var(--grey-color);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 300px;
}

.process .section-left p {
    max-width: 500px;
}

.section-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-image {
    margin-bottom: 3rem;
    flex-shrink: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: block;
}

.feature-img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 8px;
    display: block !important;
    max-width: none !important;
    min-height: 300px !important;
}

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

.bullet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bullet-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process .bullet-icon {
    color: #8b5cf6;
}

.students .bullet-icon {
    color: #16a34a;
}

.schools .bullet-icon {
    color: #dc2626;
}

.bullet-item span {
    font-size: 1rem;
    color: #374151;
    line-height: 1.4;
    font-weight: 500;
}

.feature-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 1/1;
    max-width: 200px;
}

.section-image .image-placeholder {
    height: 250px;
}

.section-layout.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-layout.reverse .section-left {
    order: 2;
    text-align: right;
}

.section-layout.reverse .section-right {
    order: 1;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 4rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
}

.section-left p {
    max-width: none;
}

.section-layout.reverse .section-left {
    order: 2;
    text-align: right;
}

.section-layout.reverse .section-right {
    order: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.section-layout.reverse .section-right h2 {
    font-size: 4rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
}

.section-layout.reverse .section-right p {
    color: var(--grey-color);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 300px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
}

.section-header p {
    color: var(--grey-color);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}



.step-card, .benefit-card, .school-benefit-card {
    background: transparent;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: default;
    text-align: center;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}



.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

.benefit-card:hover, .school-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

.students .benefit-card:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.schools .school-benefit-card:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.process-steps, .benefits-grid, .school-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
    height: 350px;
}

.step-card .step-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: #8b5cf6;
    color: white;
}

.benefit-card .benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #16a34a;
    color: white;
}

.school-benefit-card .benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.school-benefit-card:hover .benefit-icon {
    background: #dc2626;
    color: white;
}



.hero-card {
    background-image: url('img/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    z-index: 1;
}

.hero-card .step-icon,
.hero-card h3 {
    position: relative;
    z-index: 2;
}

.step-card h3, .benefit-card h3, .school-benefit-card h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.cta-section .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.cta-section .section-title h2 {
    font-size: 12px;
    font-weight: 400;
    padding: 0;
    line-height: 1;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
}

.cta-section .section-title p {
    color: #000000;
    margin: 0 0 1rem 0;
    font-size: 3.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.05;
    max-width: 500px;
}

.cta-section .section-summary {
    color: var(--grey-color);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 400px;
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-mockup {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(241, 189, 3, 0.2);
    border: 2px solid var(--accent-color);
    max-width: 300px;
}

.notification-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.notification-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.notification-desc {
    color: var(--grey-color);
    font-size: 0.9rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}





.notify-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.email-input:hover {
    border-color: #d1d5db;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(241, 189, 3, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(245, 101, 101, 0.1);
    color: #e53e3e;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-brand span {
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(79, 70, 229, 0.8);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll Animations */
.benefit, .school-benefit, .testimonial, .faq-item, .blog-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.benefit.animate-in, .school-benefit.animate-in, .testimonial.animate-in, .faq-item.animate-in, .blog-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit:nth-child(even).animate-in {
    transform: translateX(20px) translateY(0);
}

.benefit:nth-child(odd).animate-in {
    transform: translateX(-20px) translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes trailFade {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(0.2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulse-glow {
    animation: pulse 3s ease-in-out infinite;
}

/* Study Scene Animations */
.study-bg .head {
    animation: gentleNod 4s ease-in-out infinite;
}

.study-bg .light-rays {
    animation: lightFlicker 3s ease-in-out infinite;
}

.study-bg .knowledge-symbols .formula1 {
    animation: floatKnowledge 6s ease-in-out infinite;
}

.study-bg .knowledge-symbols .formula2 {
    animation: floatKnowledge 7s ease-in-out infinite 1s;
}

.study-bg .knowledge-symbols .formula3 {
    animation: floatKnowledge 5s ease-in-out infinite 2s;
}

.study-bg .knowledge-symbols .formula4 {
    animation: floatKnowledge 8s ease-in-out infinite 3s;
}

.study-bg .thought1 {
    animation: thoughtBubble 3s ease-in-out infinite;
}

.study-bg .thought2 {
    animation: thoughtBubble 3s ease-in-out infinite 0.5s;
}

.study-bg .thought3 {
    animation: thoughtBubble 3s ease-in-out infinite 1s;
}

.study-bg .bulb {
    animation: lightbulbGlow 2s ease-in-out infinite;
}

@keyframes gentleNod {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes lightFlicker {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

@keyframes floatKnowledge {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-8px) rotate(2deg); opacity: 0.7; }
}

@keyframes thoughtBubble {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes lightbulbGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes gentleNod {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes rotateFormula {
    0% { transform: rotate(0deg) scale(1); opacity: 0.6; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.9; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.6; }
}

@keyframes lightbulbGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes partyPop {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.5) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

@keyframes popupSlideIn {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(80px) rotate(360deg); opacity: 0; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

@media (prefers-reduced-motion: reduce) {
    .floating,
    .pulse-glow {
        animation: none !important;
    }
}

/* Blog Styles */
.blog-main {
    padding: 70px 0 80px;
    min-height: 80vh;
    background: linear-gradient(135deg, #fafbff 0%, #f8faff 50%, #faf9ff 100%);
    width: 100%;
    overflow-x: hidden;
}

.blog-header {
    text-align: center;
    margin: 0 0 4rem 0;
    padding: 140px 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 0;
    box-sizing: border-box;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==');
    opacity: 0.2;
}

.blog-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.blog-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
}

.section-title {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) 1;
    padding-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

#latest-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

#popular-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.post-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/2;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}

#popular-posts .post-card {
    aspect-ratio: 4/3;
}

.post-card-header {
    height: 55%;
    background: #f8fafc;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    overflow: hidden;
}

#popular-posts .post-card-header {
    height: 60%;
    padding: 0.75rem;
}

.post-card-header.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.post-card-header.has-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.post-card-content {
    padding: 0.75rem 1rem 1rem;
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
}

#popular-posts .post-card-content {
    padding: 0.5rem 0.75rem 0.75rem;
    height: 40%;
}

.post-card[data-topic="physics"] .post-card-header:not(.has-image) {
    background: #e0e7ff;
}

.post-card[data-topic="chemistry"] .post-card-header:not(.has-image) {
    background: #fce7f3;
}

.post-card[data-topic="mathematics"] .post-card-header:not(.has-image) {
    background: #dbeafe;
}

.post-card[data-topic="biology"] .post-card-header:not(.has-image) {
    background: #d1fae5;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.post-meta time {
    color: #6b7280;
    font-size: 0.7rem;
}

#popular-posts .post-meta time {
    font-size: 0.6rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.post-board {
    border: 1.5px solid #10b981;
    color: #10b981;
    background: transparent;
    padding: 2px 3px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#popular-posts .post-board {
    padding: 1px 2px;
    font-size: 0.55rem;
}

.post-board:hover {
    background: #10b981;
    color: white;
}

.post-topic {
    border: 1.5px solid #000000;
    color: white;
    background: #000000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.2s ease;
}

#popular-posts .post-topic {
    padding: 1px 4px;
    font-size: 0.65rem;
}

.post-topic:hover {
    background: #333333;
    border-color: #333333;
}

.post-meta time {
    color: #6b7280;
    font-size: 0.9rem;
}

.post-title {
    color: #111827;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

#popular-posts .post-title {
    font-size: 0.95rem;
}

.post-card-header.has-image .post-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.post-header-tags {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.post-card-title {
    color: #111827;
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.3s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: auto;
    min-height: 2.4em;
}

#popular-posts .post-card-title {
    font-size: 1rem;
    margin: 0.25rem 0 0;
    -webkit-line-clamp: 2;
    min-height: 2.4em;
}

.post-card:hover .post-card-title {
    color: #4f46e5;
}

.post-excerpt {
    color: #6b7280;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#popular-posts .post-excerpt {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
    min-height: 0;
}

#popular-posts .post-footer {
    padding-top: 0.25rem;
}

.post-views {
    color: #9ca3af;
    font-size: 0.7rem;
    white-space: nowrap;
}

#popular-posts .post-views {
    font-size: 0.6rem;
}

.topics-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.topic-btn {
    padding: 8px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.topic-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
}

.topic-btn.active {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-color: transparent;
}

.blog-post p, .post-content {
    line-height: 1.7;
    color: #374151;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.post-content h3 {
    color: #4f46e5;
    margin: 1.5rem 0 0.5rem;
}

.post-content ul, .post-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.bounce {
    animation: bounce 2s infinite;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.add-post-form {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.add-post-form input, .add-post-form textarea, .add-post-form select {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
}

.add-post-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Quill Editor Styling */
.ql-editor {
    min-height: 200px;
    font-family: Inter, sans-serif;
}

.ql-toolbar {
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-radius: 8px 8px 0 0;
}

.ql-container {
    border-bottom: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-radius: 0 0 8px 8px;
}

.add-post-form button {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.add-post-form button:hover {
    background: #4338ca;
}

.delete-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.delete-btn:hover {
    background: #dc2626;
}

.edit-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.edit-btn:hover {
    background: #ea580c;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    margin: 2rem;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.close:hover {
    color: #4f46e5;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-content h1 {
    font-size: 2rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Individual Post Page */
.post-main {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #7c3aed;
}

.full-post {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.full-post h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.full-post .post-content {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #374151;
}

.post-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.post-content h1, .post-content h2, .post-content h3 {
    color: #111827;
    margin: 1.5rem 0 1rem;
    line-height: 1.3;
}

.post-content * {
    max-width: 100%;
}

.full-post .post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Admin Posts Management */
.admin-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.admin-posts h2 {
    color: #4f46e5;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.admin-post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.admin-post-info h4 {
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.admin-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.admin-post-meta .post-topic {
    font-size: 0.8rem;
    padding: 2px 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        z-index: 1001;
    }
    
    .blog-header h1 {
        font-size: 2rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .modal-content h1 {
        font-size: 1.5rem !important;
    }
    
    .full-post h1 {
        font-size: 1.8rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
        text-align: left !important;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-section h4 {
        text-align: left !important;
    }
    
    .footer-links {
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .footer-links a {
        text-align: left !important;
    }
    
    .footer-section {
        text-align: left !important;
    }
    .navbar {
        padding: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-links {
        z-index: 1001;
    }
    
    /* Mobile quotes fixes */
    .quotes-container {
        width: 100vw;
        padding: 0 1rem;
        overflow: visible;
    }
    
    .quotes-container::before,
    .quotes-container::after {
        display: none;
    }
    
    .quotes-scroll {
        width: 100vw;
        justify-content: flex-start;
    }
    
    .quote-card {
        width: calc(100vw - 2rem);
        min-width: calc(100vw - 2rem);
        flex-shrink: 0;
        padding: 1.5rem 1rem;
        margin: 0;
        flex-direction: column;
        text-align: center;
    }
    
    .quote-avatar {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem auto;
        order: -1;
    }
    
    .quote-text {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content, .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .notify-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-details {
        gap: 1rem;
    }
    
    .features-preview {
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .section-title p {
        font-size: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .section-left h2 {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }
    
    .section-right h2 {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }
    
    .students .section-right h2 {
        font-size: 1.5rem !important;
    }
    
    .schools .section-left h2 {
        font-size: 1.5rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header-center h2 {
        font-size: 1.8rem;
    }
    
    .section-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        min-height: auto;
        height: auto;
    }
    
    .section-left {
        order: 2;
        text-align: center;
    }
    
    .section-right {
        order: 1;
        min-height: auto;
    }
    
    .section-image {
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .feature-img {
        height: 200px !important;
    }
    
    .bullet-list {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .students-content, .schools-content, .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .students-text, .schools-text, .cta-text {
        text-align: center;
        order: unset;
    }
    
    .section-title.left, .section-title.right {
        text-align: center;
    }
    
    .section-summary {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .benefits-grid, .school-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-section h4 {
        text-align: left;
    }
    
    .footer-links {
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .footer-links a {
        text-align: left !important;
    }
    
    .footer-section {
        text-align: left !important;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
}