/* ==========================================================================
   MONARC SPORT - Main Stylesheet
   ========================================================================== */

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #000000;
}

/* ==========================================================================
   Navigation Styles - Matching Monarc Design
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.33rem 0;
    /* Reduced by 1/3 from 1rem */
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Monarc Logo Styling */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.logo-image {
    height: 60px;
    /* Smaller size */
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Legacy logo styles (keep for fallback) */
.logo-icon {
    margin-right: 0.5rem;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: black;
    font-size: 18px;
    font-weight: bold;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Main Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

/* Ensure navigation is visible on desktop */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        background: transparent !important;
        padding: 0 !important;
        gap: 2.5rem !important;
        z-index: auto !important;
    }

    .nav-right {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        background: transparent !important;
        padding: 0 !important;
        gap: 1.5rem !important;
        z-index: auto !important;
    }
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffa500;
}

.nav-links a.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a.dropdown-toggle i {
    font-size: 0.8rem;
}

/* Right Side Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-link {
    color: white;
    text-decoration: none;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #ffa500;
}

.contact-button {
    background: hsl(53, 100%, 50%);
    color: black;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background: hsl(53, 99%, 35%);
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================================================
   Hero Section - Matching Monarc Design
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f5f5f5" width="1200" height="800"/><rect fill="%23e0e0e0" x="0" y="0" width="800" height="800"/><circle fill="%23333" cx="600" cy="400" r="80"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* If you want to use the actual image from the screenshot, replace the background-image above with: */
/* background-image: url('images/hero-athlete.jpg'); */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 2rem;
}

.hero-headline {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-headline .line-1 {
    display: block;
    margin-bottom: 0.2rem;
}

.hero-headline .line-2 {
    display: block;
}

.hero-headline .accent-text {
    color: #ffa500;
}

.hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Mobile responsive adjustments for hero video */
@media (max-width: 768px) {
    .hero-video {
        object-fit: contain;
        object-position: center;
    }

    .hero {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: #ffa500;
}

/* ==========================================================================
   Technology Section
   ========================================================================== */
.technology {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: normal;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.tech-card {
    background: transparent;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: left;
    min-height: 280px;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.tech-card .highlight {
    color: #ffa500;
    font-weight: normal;
}

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

.learn-more-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.learn-more-btn:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Results Section
   ========================================================================== */
.results {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.results-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.results-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffa500;
    font-weight: bold;
}

.results-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.quote-author {
    margin-top: 2rem;
    color: #333;
}

.quote-author strong {
    color: #333;
    font-size: 1.1rem;
}

.quote-author span {
    color: #666;
    font-size: 0.9rem;
}

.results-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* ==========================================================================
   Customer Stories Section
   ========================================================================== */
.customer-stories {
    padding: 5rem 0;
    background: hsl(0, 0%, 0%);
}

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

.story-card {
    background: rgb(255, 174, 0);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.story-image {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
}

.story-card p {
    color: hsl(0, 20%, 1%);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-author {
    color: hsl(40, 16%, 4%);
    font-weight: bold;
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: #ffa500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffa500;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #ffa500;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background: #ff8c00;
    transform: translateY(-1px);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: white;
}

.footer-logo-image {
    height: 64px;
    /* 2x larger (was 32px) */
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Legacy footer logo styles */
.footer-logo .logo-icon {
    margin-right: 0.5rem;
}

.footer-logo .logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    color: black;
    font-size: 16px;
    font-weight: bold;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffa500;
    font-weight: bold;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffa500;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ffa500;
    text-decoration: none;
}

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

/* ==========================================================================
   Template Page Styles
   ========================================================================== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.main-content {
    padding: 5rem 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.content-placeholder {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.content-placeholder h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.content-placeholder>p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

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

.placeholder-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.placeholder-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.placeholder-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Active navigation link styling */
.nav-links a.active {
    color: #ffa500;
    font-weight: 500;
}

/* ==========================================================================
   Customer Stories Page Styles
   ========================================================================== */
.featured-testimonial {
    padding: 4rem 0;
    background: #ffffff;
}

.featured-quote {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.featured-quote blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.quote-author-large {
    font-size: 1.2rem;
}

.quote-author-large strong {
    color: #333;
    font-size: 1.3rem;
}

.quote-author-large span {
    color: #ffa500;
    font-size: 1rem;
    font-weight: 500;
}

.customer-stories-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

.stories-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.story-card-full {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #ffa500;
}

.story-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-content blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 0;
    border: none;
}

.story-author-info {
    margin-top: 1.5rem;
}

.story-author-info strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.story-author-info span {
    color: #666;
    font-size: 0.95rem;
    display: block;
    line-height: 1.4;
}

.university-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffa500;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #ffa500;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button-large:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

/* Responsive Styles for Customer Stories */
@media (max-width: 768px) {
    .featured-quote blockquote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .story-card-full {
        padding: 2rem;
        margin: 0 1rem;
    }

    .university-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .story-card-full {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .featured-quote blockquote {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .results-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .nav-right {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-headline .line-1,
    .hero-headline .line-2 {
        display: block;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tech-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-image {
        height: 64px;
        /* 2x larger (was 32px) */
    }

    .footer-logo-image {
        height: 48px;
        /* 2x larger (was 24px) */
    }

    .contact-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   The Seeker Hero Section
   ========================================================================== */
.seeker-hero {
    position: relative;
    width: 100%;
    display: block;
    margin-top: 120px;
    /* Account for fixed navbar height */
    padding: 0;
}

.seeker-hero-background {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.seeker-hero-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile responsive adjustments for seeker hero images */
@media (max-width: 768px) {
    .seeker-hero-image {
        object-fit: contain;
        object-position: center;
        max-height: 50vh;
    }

    .seeker-hero {
        height: auto;
        min-height: 40vh;
    }
}

@media (max-width: 480px) {
    .seeker-hero-image {
        max-height: 40vh;
    }

    .seeker-hero {
        min-height: 35vh;
    }
}

.seeker-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.seeker-hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.seeker-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .seeker-hero-title {
        font-size: 2.5rem;
    }

    .seeker-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .seeker-hero {
        height: 50vh;
    }

    .seeker-hero-title {
        font-size: 2rem;
    }

    .seeker-hero-subtitle {
        font-size: 1rem;
    }
}

/* First seeker hero section needs extra top margin for navbar */
.seeker-hero:first-of-type {
    margin-top: 120px;
}

/* Subsequent seeker hero sections can have normal spacing */
.seeker-hero:not(:first-of-type) {
    margin-top: 0;
}

@media (max-width: 768px) {
    .seeker-hero:first-of-type {
        margin-top: 100px;
        /* Smaller navbar on mobile */
    }
}

/* ==========================================================================
   Seeker Subscription Section
   ========================================================================== */
.seeker-subscription {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

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

.subscription-title {
    font-size: 2.5rem;
    font-weight: normal;
    color: white;
    margin-bottom: 1rem;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.subscription-card {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.subscription-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
}

.subscription-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .subscription-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .subscription-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Use Cases Section
   ========================================================================== */
.use-cases {
    padding: 4rem 0;
    background: hsl(0, 0%, 0%);
}

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

.use-cases-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(0, 0%, 100%);
}

.use-cases-header p {
    font-size: 1.1rem;
    color: hsl(0, 0%, 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.use-case-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.use-case-header:hover {
    background: #f8f9fa;
}

.use-case-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #ffa500;
}

.use-case-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.use-case-header i {
    color: #666;
    transition: transform 0.3s ease;
}

.use-case-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.use-case-content.active {
    max-height: 200px;
    padding: 1.5rem;
}

.use-case-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Stats Header Section
   ========================================================================== */
.stats-header {
    padding: 3rem 0;
    background: #ffffff;
    text-align: center;
}

.stats-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.stats-text p {
    font-size: 1.4rem;
    margin: 0.5rem 0;
    color: #333;
}

.stats-text .highlight {
    color: #ffa500;
    font-weight: bold;
    font-size: 1.6rem;
}

/* ==========================================================================
   Results Testimonial Section (Updated)
   ========================================================================== */
.results-testimonial {
    padding: 5rem 0;
    background: #f8f9fa;
}

.results-testimonial .results-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.results-testimonial h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fffefe;
}

.results-testimonial h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffa500;
    font-weight: bold;
}

.results-testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 2rem 0;
    border: none;
    padding: 0;
}

.results-testimonial blockquote p {
    margin-bottom: 1rem;
}

.results-testimonial .quote-author {
    margin-top: 2rem;
    color: #333;
}

.results-testimonial .quote-author strong {
    color: #333;
    font-size: 1.1rem;
}

.results-testimonial .quote-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .stats-text p {
        font-size: 1.2rem;
    }

    .stats-text .highlight {
        font-size: 1.4rem;
    }

    .results-testimonial h2 {
        font-size: 1.8rem;
    }

    .results-testimonial h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   University Carousel Section
   ========================================================================== */
.university-carousel {
    padding: 4rem 0;
    background: #000000;
}

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

.carousel-header h2 {
    font-size: 2.2rem;
    color: #ffb12b;
    font-weight: normal;
}

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

.university-track {
    overflow: hidden;
    position: relative;
    height: 120px;
}

.university-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.university-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.university-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

.university-logos img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.university-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

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

.carousel-btn {
    background: none;
    border: 1px solid #ddd;
    color: #666;
    padding: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: #ffa500;
    color: #ffa500;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffa500;
}

.dot:hover {
    background: #ffa500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .university-logos {
        padding: 0 1rem;
    }

    .university-logos img {
        height: 40px;
    }

    .carousel-controls {
        gap: 1rem;
    }
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.about-monarc {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: bold;
}

.about-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.leadership {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.leadership h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffa500;
    font-weight: bold;
}

.leadership-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.leader-profile {
    text-align: center;
}

.leader-photo {
    margin-bottom: 1.5rem;
}

.leader-photo img {
    width: 100%;
    max-width: 300px;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

.leader-name {
    font-size: 1.8rem;
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.leader-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.leader-info {
    margin-bottom: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.company-logos img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.company-logos img:hover {
    opacity: 1;
}

/* Force three columns on desktop */
@media (min-width: 1025px) {
    .leadership-container {
        grid-template-columns: repeat(3, 1fr) !important;
        display: grid !important;
    }
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .leadership-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .leadership-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .leader-photo img {
        max-width: 250px;
        height: 320px;
    }
}

.testimonial-content blockquote {
    font-size: 1.1rem;
}


/* About Us Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    display: block;
    margin-top: 120px;
    /* Account for fixed navbar height */
    padding: 0;
}

.about-hero-background {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.about-hero-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile responsive adjustments for about hero image */
@media (max-width: 768px) {
    .about-hero-image {
        object-fit: contain;
        object-position: center;
        max-height: 50vh;
    }

    .about-hero {
        height: auto;
        min-height: 40vh;
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .about-hero-image {
        max-height: 40vh;
    }

    .about-hero {
        min-height: 35vh;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 180px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1001;
    list-style: none;
    margin: 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 0;
        margin-top: 0.5rem;
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Interactive Customer Stories Page
   ========================================================================== */
.stories-showcase {
    padding: 5rem 0;
    background: #000000;
    /* Changed from #f8f9fa to black */
}

.stories-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card-interactive {
    background: #1a1a1a;
    /* Changed from white to dark */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    /* Changed shadow color */
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
    /* Changed from center to left */
}

.story-card-interactive:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
    /* Changed shadow color */
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.school-image,
.school-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.school-logo {
    opacity: 0;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
}

.story-card-interactive:hover .school-image {
    opacity: 0;
}

.story-card-interactive:hover .school-logo {
    opacity: 1;
}

.school-name {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    /* Changed from #333 to white */
    margin: 0;
    background: #1a1a1a;
    /* Changed from white to dark */
    text-align: left;
    /* Added explicit left alignment */
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1001;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.modal-school-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-testimonial {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #ffa500;
    border-radius: 6px;
}

.modal-coach-info {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.modal-coach-info strong {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-coach-info span {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Design for Customer Stories */
@media (max-width: 1024px) {
    .stories-grid-interactive {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stories-showcase {
        padding: 3rem 0;
    }

    .stories-grid-interactive {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .card-image-container {
        height: 200px;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-school-info h2 {
        font-size: 1.6rem;
    }

    .modal-testimonial {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .stories-grid-interactive {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-image-container {
        height: 180px;
    }

    .school-name {
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Contact Page Styles (Official Monarc Design Match)
   ========================================================================== */
.contact-page {
    padding: 8rem 0 6rem;
    background: #000000;
    color: white;
    min-height: 100vh;
}

.contact-page .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-page .contact-info h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.contact-page .contact-info p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-page .contact-details {
    margin-bottom: 3rem;
}

.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-page .contact-item i {
    color: #ebebeb;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-page .contact-item strong {
    color: white;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.4;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.demo-button:hover {
    background: white;
    color: black;
}

.demo-button i {
    font-size: 0.9rem;
}

.contact-page .contact-form {
    background: transparent;
}

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

.contact-page .form-group label {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    outline: 2px solid #ffa500;
    outline-offset: 2px;
}

.contact-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.send-button {
    padding: 1rem 2rem;
    background: #ffa500;
    color: black;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.send-button:hover {
    background: #ff8c00;
    transform: translateY(-1px);
}

/* Testimonial Section */
.contact-testimonial {
    padding: 6rem 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.contact-testimonial .testimonial-content h3 {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 2rem;
    font-weight: bold;
}

.contact-testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: white;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    padding: 0;
}

.contact-testimonial .testimonial-author {
    margin-top: 2rem;
}

.contact-testimonial .testimonial-author strong {
    color: white;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-testimonial .testimonial-author span {
    color: #ccc;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-page .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 6rem 0 4rem;
    }

    .contact-page .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-page .contact-content {
        gap: 3rem;
    }

    .contact-testimonial .testimonial-content h3 {
        font-size: 1.6rem;
    }

    .contact-testimonial blockquote {
        font-size: 1.1rem;
    }
}