/* ===========================
   GLASSMORPHISM THEME STYLES
   ===========================*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===========================
   ANIMATED BACKGROUND
   ===========================*/
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

/* ===========================
   LAYOUT & CONTAINER
   ===========================*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   GLASS CARD SYSTEM
   ===========================*/
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ===========================
   HEADER
   ===========================*/
.header {
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
}

/* ===========================
   NAVIGATION
   ===========================*/
.nav-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.nav-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    gap: 0;
}

.nav-link {
    padding: 12px 24px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.05);
}

/* ===========================
   HERO SECTION
   ===========================*/
.hero-section {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 80px;
}

/* ===========================
   HERO ANIMATIONS
   ===========================*/
.slide-left,
.slide-right {
    display: inline-block;
    opacity: 0;
    position: relative;
}

.slide-left {
    transform: translateX(-100px);
    animation: slideInLeft 1.2s ease-out forwards;
}

.slide-right {
    transform: translateX(100px);
    animation: slideInRight 1.2s ease-out 0.8s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scramble effect styling */
.scrambling {
    position: relative;
}

.scramble-char {
    display: inline-block;
    transition: all 0.1s ease;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-highlight {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheading {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-credibility {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 25px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   BUTTONS
   ===========================*/
.cta-button {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

.submit-button {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* ===========================
   SECTIONS
   ===========================*/
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.accelerator-section,
.pain-points-section,
.experience-section,
.results-section,
.testimonials-section,
.services-section,
.blog-section,
.contact-section {
    margin-bottom: 80px;
}

/* ===========================
   PAIN POINTS - SIMPLIFIED
   ===========================*/
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pain-point-card {
    padding: 25px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.pain-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

/* ===========================
   ACCELERATOR SECTION
   ===========================*/
.accelerator-section {
    text-align: center;
}

.accelerator-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.accelerator-body {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.key-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.activity-card {
    padding: 35px 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.activity-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ===========================
   EXPERIENCE SECTION
   ===========================*/
.experience-description {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-credentials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.our-story,
.our-credentials {
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.1);
}

.our-story h3,
.our-credentials h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.our-story p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.our-credentials ul {
    list-style: none;
    padding: 0;
}

.our-credentials li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
}

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

/* ===========================
   RESULTS SECTION
   ===========================*/
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.result-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.result-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   TESTIMONIALS SECTION
   ===========================*/
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* ===========================
   BLOG/VIDEO SECTION
   ===========================*/
.blog-description {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px 20px 0 0;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-meta span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

.blog-actions {
    text-align: center;
}

.watch-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.watch-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

.btn-icon {
    font-size: 1.2rem;
}

/* ===========================
   SERVICES GRID (Legacy - if needed)
   ===========================*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===========================
   FORMS
   ===========================*/
.contact-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

/* ===========================
   RESPONSIVE DESIGN
   ===========================*/
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.2rem;
    }
    
    .hero-credibility {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 5px;
    }
    
    .accelerator-description {
        font-size: 1.2rem;
    }

    .accelerator-body {
        font-size: 1rem;
    }

    .key-activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        padding: 30px 20px;
    }

    .story-credentials-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .our-story,
    .our-credentials {
        padding: 30px 25px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-card {
        padding: 30px 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .pain-points-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .pain-point-card {
        padding: 20px 15px;
    }
    
    .contact-container {
        padding: 30px 20px;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .nav-container {
        margin: 20px 0;
    }
    
    .nav-glass {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 25px;
        padding: 4px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .nav-links {
        flex-direction: row;
        gap: 2px;
    }
    
    .nav-link {
        padding: 8px 16px;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 20px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        transform: none;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .nav-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .nav-glass {
        padding: 3px;
    }
    
    .story-credentials-container {
        gap: 20px;
    }

    .our-story,
    .our-credentials {
        padding: 25px 20px;
    }

    .activity-card {
        padding: 25px 18px;
    }
}