/* Global Styles */
:root {
    /* Updated color scheme to match logo */
    --primary-color: #1a56db;
    /* Can be adjusted based on logo colors */
    --primary-dark: #0f3d9e;
    /* Darker shade of primary */
    --secondary-color: #ffc107;
    /* Can be adjusted based on logo colors */
    --secondary-dark: #e6a800;
    /* Darker shade of secondary */
    --accent-color: #ff4757;
    /* Accent color for highlights */
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #1f2937;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --btn-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    outline: none !important;
    box-shadow: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

span {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: 1rem;
}

/* Animated Button */
.animated-btn {
    position: relative;
    overflow: hidden;
    transition: var(--btn-transition);
    z-index: 1;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.animated-btn: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: var(--transition);
    z-index: -1;
}

.animated-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.animated-btn:hover:before {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.secondary-btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.tertiary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.tertiary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.plan-btn {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    margin-bottom: 10px;
}

.plan-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.info-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    width: 100%;
}

.info-btn:hover {
    background-color: var(--light-bg);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7ec 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 50%;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

/* Game Interface Styles */
.game-interface-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff6b6b;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.game-interface {
    background-color: #1f2937;
    border-radius: 25px;
    width: 100%;
    padding: 15px;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.game-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4757;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-text {
    font-weight: 700;
    font-size: 14px;
    color: #ff4757;
}

.game-title {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.game-id {
    font-size: 14px;
    color: #ffc107;
    font-weight: 500;
}

.game-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.timer-container {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
}

.timer-container i {
    font-size: 14px;
    color: #ffc107;
}

.timer {
    font-weight: 600;
    font-size: 16px;
}

.number-display {
    width: 40px;
    height: 40px;
    background-color: #ffc107;
    color: #1f2937;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label {
    font-weight: 600;
    font-size: 16px;
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch.active {
    background-color: #10b981;
}

.toggle-indicator {
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: var(--transition);
}

.toggle-switch.active .toggle-indicator {
    transform: translateX(20px);
}

.close-button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.close-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Active Prediction Bar Styles */
#newActivePredictionBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(32, 32, 40, 0.95), rgba(20, 20, 28, 0.98));
    backdrop-filter: blur(12px);
    color: #fff;
    border-radius: 14px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(255, 215, 0, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    width: 100%;
    margin-top: 15px;
    box-sizing: border-box;
}

.pred-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

#newActivePredictionBar .live-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 8px;
    margin-right: 8px;
    border-right: 1px solid rgba(255, 215, 0, 0.15);
    flex-shrink: 0;
    position: relative;
}

#newActivePredictionBar .game-info {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
    line-height: 1.2;
    border-right: 1px solid rgba(255, 215, 0, 0.15);
    margin-right: 8px;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    max-width: 30%;
}

.game-type {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.issue-number {
    font-size: 8px;
    font-weight: 400;
    color: rgba(255, 215, 0, 0.8);
    letter-spacing: 0.5px;
}

#newActivePredictionBar .timer {
    display: flex;
    align-items: center;
    padding: 0 5px;
    margin-right: 8px;
    border-right: 1px solid rgba(255, 215, 0, 0.15);
    gap: 2px;
    position: relative;
    flex-shrink: 0;
    max-width: 65px;
}

.timer-icon {
    width: 9px;
    height: 9px;
    fill: #ffffff;
}

.prediction-details {
    display: flex;
    align-items: center;
    padding-left: 10px;
    gap: 6px;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.prediction-size {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.08));
    border-radius: 10px;
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.25),
        inset 0 1px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.close-pred-bar {
    padding: 3px;
    margin-left: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
    line-height: 0;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px rgba(255, 255, 255, 0.1);
    min-width: 16px;
    min-height: 16px;
    width: 16px;
    height: 16px;
}

.close-pred-bar:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.1));
    transform: scale(1.1);
    box-shadow:
        0 2px 15px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(255, 215, 0, 0.3),
        inset 0 1px rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments for game interface */
@media (max-width: 768px) {
    .game-interface-container {
        max-width: 320px;
    }

    .game-title {
        font-size: 18px;
    }

    .game-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .game-interface-container {
        max-width: 280px;
        padding: 15px;
    }

    .game-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .game-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .toggle-container,
    .timer-container {
        width: 100%;
        justify-content: space-between;
    }

    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    background-color: var(--light-bg);
    padding: 100px 5%;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
}

/* Demo Screenshots */
.demo {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

.screenshot-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

/* Main Slider */
.screenshot-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    background-color: var(--bg-color);
    margin-bottom: 30px;
}

.screenshot-slide {
    display: none;
    animation: fadeEffect 1s;
}

.screenshot-slide:first-child {
    display: flex;
}

@keyframes fadeEffect {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 1;
    }
}

.screenshot-slide {
    display: none;
    flex-direction: column;
}

.screenshot.large {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 800px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin: 0 auto;
}

.screenshot.large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.screenshot-slide:hover .screenshot.large img {
    transform: scale(1.05);
}

.screenshot-info {
    padding: 25px;
    text-align: center;
    background-color: var(--bg-color);
    border-radius: 0 0 15px 15px;
}

.screenshot-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.screenshot-info p {
    color: var(--light-text);
}

/* Small Screenshots / Thumbnails */
.small-screenshots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.screenshot.small {
    width: 80px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.screenshot.small.active {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.screenshot.small:hover {
    opacity: 0.9;
}

.screenshot.small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.slider-btn:active {
    transform: translateY(0);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

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

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.screenshot:hover .overlay {
    transform: translateY(0);
}

/* Responsive adjustments for the slider */
@media (max-width: 768px) {
    .screenshot.large {
        height: 600px;
        max-width: 300px;
    }

    .screenshot.small {
        width: 60px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .screenshot.large {
        height: 500px;
        max-width: 250px;
    }

    .screenshot.small {
        width: 50px;
        height: 100px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5%;
    background-color: var(--light-bg);
}

.about-content {
    flex: 1;
    max-width: 600px;
}

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

.about-image img {
    max-width: 70%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Pricing Section */
.pricing {
    padding: 100px 5%;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
    padding: 80px 5%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.social-link i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-link:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 50px 5% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-column {
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #d1d5db;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary-color);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-color);
    margin: 50px auto;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    animation: modalFadeIn 0.5s;
    position: relative;
}

.payment-modal-content {
    max-width: 800px;
}

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

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-body {
    padding: 20px;
}

/* Payment Modal Specific Styles */
.payment-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.selected-plan-info {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.payment-option {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-code img {
    width: 200px;
    height: 200px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.upi-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.upi-details p {
    font-size: 1.1rem;
}

.payment-form {
    margin-top: 20px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.2);
}

.payment-help {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .hero,
    .about {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .about-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .about-content .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 150px 5% 80px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-content {
        flex-direction: column;
    }

    .payment-option {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

.zoom-in {
    animation: zoomIn 1s ease-in-out;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

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

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

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

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}