/* Base Styles */
:root {
    --primary-dark: #1a2530;
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light-square: #f0d9b5;
    --dark-square: #b58863;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --success: #2ecc71;
    --warning: #f39c12;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-square), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-square), #8b5a3c);
    color: white;
    box-shadow: 0 4px 15px rgba(181, 136, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 136, 99, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-square);
    border: 2px solid var(--light-square);
}

.btn-secondary:hover {
    background: var(--light-square);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-course {
    background: transparent;
    color: var(--light-square);
    border: 2px solid var(--light-square);
    width: 100%;
    margin-top: auto;
}

.btn-course:hover {
    background: var(--light-square);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--light-square);
    border: 2px solid var(--light-square);
    padding: 10px 25px;
}

.btn-outline:hover {
    background: var(--light-square);
    color: var(--primary-dark);
}

.btn-nav {
    background: var(--light-square);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav:hover {
    background: #e6c9a0;
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 37, 48, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    color: var(--light-square);
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--light-square), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-accent {
    color: var(--light-square);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-square);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-square);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.chess-piece-anim {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: floatPiece 20s infinite linear;
}

.piece-1 { top: 10%; left: 5%; animation-delay: 0s; }
.piece-2 { top: 20%; right: 10%; animation-delay: 5s; }
.piece-3 { top: 60%; left: 15%; animation-delay: 10s; }
.piece-4 { bottom: 20%; right: 5%; animation-delay: 15s; }
.piece-5 { bottom: 10%; left: 20%; animation-delay: 20s; }

.floating-pawns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-pawns span {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.05;
    animation: floatPawn 15s infinite linear;
}

.floating-pawns span:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.floating-pawns span:nth-child(2) { top: 30%; right: 25%; animation-delay: 3s; }
.floating-pawns span:nth-child(3) { top: 70%; left: 30%; animation-delay: 6s; }
.floating-pawns span:nth-child(4) { bottom: 25%; right: 15%; animation-delay: 9s; }
.floating-pawns span:nth-child(5) { bottom: 15%; left: 25%; animation-delay: 12s; }

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relattoive;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--light-square), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-square);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.floating-chessboard {
    position: relative;
    z-index: 2;
}

.chessboard {
    width: 350px;
    height: 350px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    border: 12px solid var(--primary);
    box-shadow: var(--shadow);
    transform: rotate(5deg);
    animation: floatBoard 6s ease-in-out infinite;
}

.square {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transition: var(--transition);
}

.light {
    background-color: var(--light-square);
}

.dark {
    background-color: var(--dark-square);
}

.hero-pieces {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-piece {
    position: absolute;
    font-size: 70px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    z-index: 1;
    animation: pulseGlow 4s infinite;
}

.hero-piece.king {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.hero-piece.queen {
    bottom: 15%;
    left: 10%;
    animation-delay: 1.3s;
}

.hero-piece.bishop {
    top: 50%;
    right: 10%;
    animation-delay: 2.6s;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--light-square);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--light-square);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

.feature-anim {
    margin-top: 20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analysis-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-square);
    margin: 0 5px;
    animation: bounce 1.5s infinite;
}

.analysis-dots span:nth-child(2) { animation-delay: 0.2s; }
.analysis-dots span:nth-child(3) { animation-delay: 0.4s; }

.progress-ring {
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-top: 3px solid var(--light-square);
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.trophy-glow {
    width: 30px;
    height: 30px;
    background: var(--light-square);
    border-radius: 50%;
    filter: blur(8px);
    animation: pulse 2s infinite;
}

/* Courses Preview */
.courses-preview {
    padding: 100px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--light-square);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--dark-square), #8b5a3c);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-icon {
    font-size: 3rem;
    color: var(--light-square);
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.course-card > p {
    color: #ccc;
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-features li {
    color: #ccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.course-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-square);
    font-weight: bold;
}

.section-cta {
    text-align: center;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark-square), #8b5a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.benefit-text p {
    color: #ccc;
    line-height: 1.6;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
    text-align: center;
}

.stat-bar {
    margin-bottom: 20px;
}

.stat-label {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.stat-progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 10px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-square), var(--light-square));
    border-radius: 10px;
    width: 0;
    transition: width 2s ease-in-out;
}

.stat-percent {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-square);
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light-square), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--light-square);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--light-square);
    padding-left: 5px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--light-square);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
@keyframes floatPiece {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 150px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 100px) rotate(270deg);
    }
}

@keyframes floatPawn {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes floatBoard {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px var(--light-square), 3px 3px 6px rgba(0, 0, 0, 0.5);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}


@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .chessboard {
        width: 280px;
        height: 280px;
    }
    
    .hero-piece {
        font-size: 50px;
    }
    
    .container {
        padding: 0 15px;
    }
}
/* Demo Page Specific Styles */
.demo-hero {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.demo-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light-square), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.demo-hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.demo-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-feature i {
    color: var(--light-square);
}

.demo-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.demo-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light-square);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--light-square);
    box-shadow: 0 0 0 2px rgba(240, 217, 181, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code {
    flex: 0 0 140px;
}

.phone-number {
    flex: 1;
}

.phone-preview {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-preview small {
    color: var(--light-square);
}

.interests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.interest-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    color: white;
    cursor: pointer;
}

.interest-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.btn-loading {
    display: none;
}

.form-note {
    text-align: center;
    margin-top: 15px;
}

.form-note small {
    color: #ccc;
    font-size: 0.85rem;
}

/* Demo Benefits */
.demo-benefits {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.demo-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--light-square), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--light-square);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--light-square);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Responsive Demo Page */
@media (max-width: 968px) {
    .demo-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-hero-text {
        text-align: center;
    }
    
    .demo-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .country-code {
        flex: none;
    }
}


/* Desktop Styles (default) */
.nav-toggle {
    display: none; /* Hide the hamburger icon on desktop */
}
.nav-links ul {
    list-style: none;
    display: flex; /* Display links horizontally */
}
/* ... other styling for your links and layout ... */










/* Enhanced Dropdown Styles for Demo Page */
.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

/* Style for all select dropdowns */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f0d9b5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
    cursor: pointer;
}

/* Dropdown options styling */
select.form-control option {
    background: var(--primary-dark);
    color: var(--light-square);
    padding: 12px 15px;
    font-size: 16px;
    border: none;
}

/* Focus state */
select.form-control:focus {
    outline: none;
    border-color: var(--light-square);
    box-shadow: 0 0 0 2px rgba(240, 217, 181, 0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f0d9b5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Hover state for options */
select.form-control option:hover {
    background: var(--dark-square) !important;
    color: white !important;
}

/* Selected option styling */
select.form-control option:checked {
    background: linear-gradient(135deg, var(--dark-square), #8b5a3c);
    color: white;
}

/* For Firefox */
select.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--light-square);
}

/* Remove default arrow in IE */
select.form-control::-ms-expand {
    display: none;
}

/* IE11 specific styles */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    select.form-control {
        padding-right: 15px;
        background-image: none;
    }
}

/* Country Code Dropdown Specific Styling */
.country-code {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-square);
}

.country-code option {
    background: var(--primary-dark);
    color: var(--light-square);
    padding: 12px;
    font-size: 14px;
}

.country-code option:hover {
    background: var(--dark-square) !important;
    color: white !important;
}

.country-code option:checked {
    background: linear-gradient(135deg, var(--dark-square), #8b5a3c);
    color: white;
}

/* Skill Level Dropdown */
#skillLevel option {
    background: var(--primary-dark);
    color: var(--light-square);
}

#skillLevel option:checked {
    background: linear-gradient(135deg, var(--dark-square), #8b5a3c);
    color: white;
}

/* Preferred Time Dropdown */
#preferredTime option {
    background: var(--primary-dark);
    color: var(--light-square);
}

#preferredTime option:checked {
    background: linear-gradient(135deg, var(--dark-square), #8b5a3c);
    color: white;
}

/* Enhanced Dropdown States */
select.form-control:hover {
    border-color: rgba(240, 217, 181, 0.4);
}

select.form-control:active {
    border-color: var(--light-square);
}

/* Dropdown Container Enhancement */
.form-group select.form-control {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Mobile-specific dropdown improvements */
@media (max-width: 700px) {
    select.form-control {
        width: 320%;    
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 14px 15px;
    }
    
    .country-code {
        font-size: 14px;
    }
}

/* Dark theme scrollbar for dropdowns */
select.form-control::-webkit-scrollbar {
    width: 8px;
}

select.form-control::-webkit-scrollbar-track {
    background: var(--primary-dark);
    border-radius: 4px;
}

select.form-control::-webkit-scrollbar-thumb {
    background: var(--dark-square);
    border-radius: 4px;
}

select.form-control::-webkit-scrollbar-thumb:hover {
    background: var(--light-square);
}











:root {
    --dark-bg: #0f172a;
    --darker-bg: #0a0f1c;
    --primary: #1e293b;
    --accent: #8b5a3c;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.navbar {
    
    padding: 0.8rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
}

.nav-item a:hover {
    color: var(--accent);
    background-color: rgba(59, 130, 246, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #8b5a3c;
    color: #8b5a3c;
    background: transparent;
}

.btn-outline:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-square), #8b5a3c);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #8b5a3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: var(--darker-bg);
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(231, 4, 4, 0.1);
        gap: 1.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}















