:root {
    --primary-color: #ffffff;
    --secondary-color: #e0e0e0;
    --accent-color: #ffffff;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f5f5f5;
    --gray-color: #9e9e9e;
    --text-color: #e0e0e0;
    --card-bg: #1a1a1a;
    --card-hover-bg: #2a2a2a;
    --card-hover-glow: 0 0 20px rgba(255, 255, 255, 0.2);
    --border-radius: 8px;
    --transition-speed: 0.1s;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--body-font);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}


.header {
    position: sticky;
    top: 0;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.logo h1 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 2px;
}

.logo h1 a {
    color: var(--light-color);
    text-decoration: none;
    display: block;
}

.logo h1:hover {
    transform: scale(1.1) rotate(-3deg);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    color: white;
}

.logo h1:hover a {
    color: white;
}

.nav {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    justify-content: center;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    color: var(--text-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--secondary-color);
}


.get-started-btn {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-cta {
    position: relative;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.05s linear;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    border: 2px solid #ffffff;
}

.nav-cta:hover {
    transform: scaleX(1.03);
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
    background: var(--dark-color);
    color: var(--light-color);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
}

.nav-cta:hover::before {
    opacity: 1;
}


.button-common {
    position: relative;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    background: #ffffff;
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.05s linear;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: 2px solid #ffffff;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-common:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
    background: var(--dark-color);
    color: var(--light-color);
}

.button-common::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
}

.button-common:hover::before {
    opacity: 1;
}


.button-dark {
    background: var(--dark-color);
    color: var(--light-color);
    border-color: #ffffff;
}

.button-dark:hover {
    background: var(--light-color);
    color: var(--dark-color);
    border-color: #ffffff;
}

.button-dark::before {
    background: var(--light-color);
}


.primary-cta {
    position: relative;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    margin: 20px auto;
    border-radius: 50px;
    overflow: hidden;
    background: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.05s linear;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    color: var(--light-color);
    border: 2px solid #ffffff;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-cta i {
    font-size: 1.2rem;
    transition: transform 0.05s linear, color 0.05s linear;
    color: var(--light-color);
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
    background: #ffffff;
    color: var(--dark-color);
}

.primary-cta:hover i {
    transform: rotate(15deg) scale(1.2);
    color: var(--dark-color);
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
}

.primary-cta:hover::before {
    opacity: 1;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}


.delay-1 {
    transition-delay: 0.05s;
}

.delay-2 {
    transition-delay: 0.1s;
}

.delay-3 {
    transition-delay: 0.15s;
}

.delay-4 {
    transition-delay: 0.2s;
}

.delay-5 {
    transition-delay: 0.25s;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--light-color);
    cursor: pointer;
    padding: 5px;
    transition: color 0.05s linear, transform 0.05s linear;
}

.mobile-menu-toggle:hover {
    color: white;
    transform: scale(1.1);
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 80px 20px;
    background-color: var(--dark-color);
    background-image: url('https://images.unsplash.com/photo-1591405351990-4726e331f141?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(18, 18, 18, 0.9));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
    width: 100%;
    text-align: center;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 800px;
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
    width: 100%;
}


.typewriter {
    display: none;
}


.services {
    padding: 100px 0 70px; /* Adjusted bottom padding */
    background-color: var(--darker-color);
    position: relative;
}

.services .container {
    padding-bottom: 30px; /* Added padding to the container */
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.02) 0%, transparent 20%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    margin-bottom: 30px; /* Added margin-bottom */
}


@media (min-width: 992px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.service-card:nth-last-child(2),
.service-card:nth-last-child(1) {
    grid-column: auto;
    margin-top: 0;
}

@media (min-width: 992px) {
    .service-card:nth-last-child(2),
    .service-card:nth-last-child(1) {
        min-height: auto;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .service-card:nth-last-child(2) .service-card-content,
    .service-card:nth-last-child(1) .service-card-content {
        padding: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .service-card:nth-last-child(2) .service-title,
    .service-card:nth-last-child(1) .service-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .service-card:nth-last-child(2) .service-description,
    .service-card:nth-last-child(1) .service-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .service-card:nth-last-child(2) .service-price,
    .service-card:nth-last-child(1) .service-price {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .service-card:nth-last-child(2) .more-info-button,
    .service-card:nth-last-child(1) .more-info-button {
        padding: 12px 0;
        width: 100%;
    }
    
    .service-card:nth-last-child(2) .service-details,
    .service-card:nth-last-child(1) .service-details {
        padding: 0 30px;
    }
    
    .service-card:nth-last-child(2) .service-details.active,
    .service-card:nth-last-child(1) .service-details.active {
        padding-bottom: 30px;
    }
}


/* Fix service card background */
.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden; /* Keep content within the border radius */
    transition: all 0.05s linear;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    will-change: transform, box-shadow, border-color, background-color;
    height: auto;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    cursor: pointer;
    margin-bottom: 0;
}

.service-card:hover {
    transform: scale(1.02);
    background-color: var(--card-hover-bg);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: var(--card-hover-glow);
}

.service-card-content {
    padding: 25px;
    border-radius: var(--border-radius);
    background-color: var(--card-bg);
    transition: all 0.05s linear;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    height: 100%;
    justify-content: space-between;
    flex: 1;
    border-bottom: none; /* Ensure no border at bottom */
}

.service-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--light-color);
    letter-spacing: 0.5px;
    height: 60px;
    display: flex;
    align-items: center;
    transition: color 0.05s linear;
    line-height: 1.3;
}

.service-description {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1rem;
    flex-grow: 1;
    height: auto;
    min-height: 60px;
    overflow: visible;
    line-height: 1.5;
}

/* Fix the excess space below the price tag */
.service-price {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.05s linear;
    height: auto; /* Changed from fixed height */
    display: flex;
    align-items: center;
}

.service-details {
    display: none;
}

.service-details.hidden {
    display: none;
    height: 0;
    opacity: 0;
}


.service-card:nth-child(n) .service-card-content,
.service-card:nth-child(n) .service-details {
    padding: 25px;
}

.service-card:nth-child(n) .service-title {
    font-size: 1.3rem;
}

.service-card:nth-child(n) .service-price {
    font-size: 1.5rem;
}

.more-info-button {
    font-family: var(--heading-font);
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: #ffffff;
    color: var(--dark-color);
    font-weight: 500;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.05s linear;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.more-info-button:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.service-details {
    height: 0;
    overflow: hidden;
    padding: 0;
    
    background-color: rgba(6, 6, 6, 0.98);
    background-image: linear-gradient(to bottom, rgba(8, 8, 8, 0.98), rgba(15, 15, 15, 0.95));
    position: absolute;
    z-index: 10;
    opacity: 0;
    display: none;
    flex-direction: column;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
    left: 0;
    right: 0;
    top: 100%;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.service-details.active {
    height: auto;
    padding: 25px;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7), inset 0 -15px 15px -15px rgba(255, 255, 255, 0.1);
}


.service-details h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-details ul {
    margin-bottom: 20px;
    list-style-position: inside;
    padding-left: 5px;
}

.service-details li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.service-details li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: -2px;
    text-shadow: 0 0 5px rgba(156, 39, 176, 0.5);
}


.service-card.active {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    z-index: 10;
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card.active .service-card-content {
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.4);
    background-color: #1e1e1e;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.service-card.active .service-title {
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.service-card.active .service-price {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(156, 39, 176, 0.6);
}

.service-card.active .more-info-button {
    background-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}


.service-details::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.service-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.6));
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.7;
}

.service-details .button-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.buy-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ffffff;
    color: var(--dark-color);
    font-family: var(--heading-font);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    transition: all 0.05s linear;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
}

.buy-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    opacity: 0;
    transition: opacity 0.05s linear;
    z-index: -1;
}

.buy-button:hover:before {
    opacity: 1;
}

.buy-button:hover {
    transform: scaleX(1.05);
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
    background: var(--dark-color);
    color: var(--light-color);
    border-color: #ffffff;
}


[data-service="windows"] .service-details .button-container,
[data-service="ultimate"] .service-details .button-container,
[data-service="full"] .service-details .button-container {
    padding: 0 15px;
}

[data-service="windows"] .service-details ul,
[data-service="ultimate"] .service-details ul,
[data-service="full"] .service-details ul {
    padding-left: 15px;
    margin-bottom: 15px;
}

[data-service="windows"] .service-details li,
[data-service="ultimate"] .service-details li,
[data-service="full"] .service-details li {
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .service-details {
        padding: 0 15px;
    }
    
    .service-details ul {
        padding-left: 10px;
    }
    
    .service-details li {
        font-size: 0.95rem;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .buy-button {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 100px;
        border-radius: 6px;
    }
}


.about {
    padding: 100px 0;
    background-color: var(--dark-color);
    background-image: linear-gradient(to bottom, var(--darker-color), var(--dark-color));
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 20%, rgba(156, 39, 176, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.about .container {
    max-width: 800px;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.7;
}


.contact {
    padding: 100px 0;
    position: relative;
    background-color: var(--dark-color);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(98, 0, 234, 0.05) 0%, rgba(0, 0, 0, 0) 50%),
                radial-gradient(circle at 30% 70%, rgba(156, 39, 176, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    scroll-margin-top: 100px;
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(156, 39, 176, 0.1);
    transition: all 0.05s linear;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: scale(1.02);
    background-color: rgba(40, 40, 40, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}


.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.05s linear;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}


.contact-card-icon .fa-discord {
    color: #7289da;
}


.contact-card-icon .fa-envelope {
    color: #4285f4;
}

.contact-card-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-card-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 10px;
}

.contact-card-description {
    color: var(--text-color);
    margin-bottom: 25px;
    opacity: 0.9;
}

.contact-card-button {
    display: inline-block;
    padding: 8px 18px;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.05s linear;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--dark-color);
    background: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}


.contact-card:nth-child(1) .contact-card-button {
    background: var(--dark-color);
    color: var(--light-color);
    border-color: #ffffff;
}


.contact-card:nth-child(1) .contact-card-button:hover {
    background: var(--light-color);
    color: #000000; /* Ensuring text color is black on hover */
    border-color: #ffffff;
    transform: scaleX(1.05); /* Only scale horizontally, removed translateY */
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
}

/* Email button - white background with black text by default */
.contact-card:nth-child(2) .contact-card-button {
    background: var(--light-color);
    color: var(--dark-color);
    border-color: #ffffff;
}

/* Email button - black background with white text on hover */
.contact-card:nth-child(2) .contact-card-button:hover {
    background: var(--dark-color);
    color: var(--light-color);
    border-color: #ffffff;
    transform: scaleX(1.05); /* Only scale horizontally, removed translateY */
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
}

.contact-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.05s linear;
}

/* Different before background for each button */
.contact-card:nth-child(1) .contact-card-button::before {
    background: var(--light-color);
}

.contact-card:nth-child(2) .contact-card-button::before {
    background: var(--dark-color);
}

.contact-card-button:hover::before {
    opacity: 1;
}

.contact-card-button:hover {
    transform: scaleX(1.05); /* Only scale horizontally, removed translateY */
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
}

/* Help Section */
.help-section {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    border: 1px solid rgba(156, 39, 176, 0.1);
    box-shadow: var(--box-shadow);
}

.help-section h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.help-section p {
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.help-button {
    display: inline-block;
    padding: 8px 18px;
    margin: 0 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.05s linear;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.help-button.primary {
    color: var(--dark-color);
    background: var(--light-color);
    border-color: #ffffff;
}

.help-button.secondary {
    color: var(--light-color);
    background: var(--dark-color);
    border-color: #ffffff;
}

.help-button:hover {
    transform: scaleX(1.05); /* Only scale horizontally, removed translateY */
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
}

.help-button.primary:hover {
    background: #ffffff;
    color: var(--dark-color);
    border-color: #ffffff;
}

.help-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.05s linear;
}

.help-button.primary:hover::before {
    opacity: 1;
}

.help-button.secondary:hover {
    background: var(--light-color);
    color: var(--dark-color);
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .help-section {
        padding: 30px 20px;
    }
    
    .help-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: var(--darker-color);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 25%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer .fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.footer-logo h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-logo p {
    color: var(--secondary-color) !important;
    font-size: 1.05rem;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(179, 136, 255, 0.7);
    letter-spacing: 0.5px;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
    font-size: 1.05rem;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.05s linear;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo,
.footer-links,
.footer-social,
.footer-bottom {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}


@media (max-width: 992px) {
    .hero-content {
        padding: 20px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 3.5rem;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.95);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        z-index: 1000;
    }
    
    .logo {
        margin-right: auto;
    }
    
    .logo .slogan {
        display: none;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-item {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        text-align: center;
    }
 
    .get-started-btn {
        margin-right: 15px;
    }
 
    .nav-cta {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        width: 100%;
    }
    
    .hero-description {
        font-size: 1.3rem;
        width: 100%;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .help-section {
        padding: 30px 20px;
    }
    
    .help-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        width: 100%;
        padding: 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
        width: 100%;
        padding: 0;
    }
    
    .hero-content {
        padding: 20px;
        width: 100%;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .buy-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
} 


/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
    top: var(--top);
    left: var(--left);
    animation: float var(--speed) infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(10deg);
    }
    75% {
        transform: translateY(20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}


.typewriter {
    position: relative;
    display: inline-block;
    color: var(--light-color);
    border-right: 2px solid white;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

.typewriter-done {
    animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}


.cta-button {
    font-family: var(--heading-font);
    background-color: var(--card-bg);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all var(--transition-speed);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid #ffffff;
    outline: none;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.cta-button:hover {
    background-color: var(--light-color);
    box-shadow: var(--card-hover-glow);
    transform: scale(1.05);
    color: var(--dark-color);
    border-color: #ffffff;
} 



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    background-color: var(--dark-color);
    margin: 5% auto;
    max-width: 700px;
    width: 90%;
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.05s linear;
}

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

.modal-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin: 0 0 10px;
    color: var(--light-color);
}

/* Move price from header to footer */
.modal-header p {
    display: none; /* Hide the price in header */
}

.modal-body {
    padding: 20px 25px;
    overflow-y: auto;
    flex-grow: 1;
}

#modal-description {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

#modal-details h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin: 0 0 15px;
    color: var(--secondary-color);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

#modal-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
}

#modal-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
}

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

/* Add price above button in footer */
.modal-footer .modal-price {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: var(--secondary-color);
    display: block;
}

.modal-button {
    display: inline-block;
    padding: 8px 25px;
    background-color: var(--light-color);
    color: var(--dark-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.05s linear;
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.modal-button:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 25px rgba(255, 255, 255, 0.3);
    color: var(--light-color);
    border-color: #ffffff;
}

.modal-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.05s linear;
}

.modal-button:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-header p {
        font-size: 1.8rem;
    }
} 

/* Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
} 

/* Terms of Service Styles */
.tos {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
}

.tos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.02) 0%, transparent 20%);
    pointer-events: none;
}

.tos-content {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tos-section {
    margin-bottom: 30px;
}

.tos-section:last-child {
    margin-bottom: 0;
}

.tos-section h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tos-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tos-section ul ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 0;
}

.tos-section li {
    margin-bottom: 10px;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tos-content {
        padding: 20px;
    }
    
    .tos-section h3 {
        font-size: 1.3rem;
    }
}
/* End Terms of Service Styles */

/* FAQ Styles with Dropdowns */
.faq {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
}

.faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.02) 0%, transparent 20%);
    pointer-events: none;
}

.faq-content {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Dropdown Styles */
.faq-dropdown {
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(30, 30, 30, 0.6);
    transition: all 0.3s ease;
}

.faq-dropdown:last-child {
    margin-bottom: 0;
}

.faq-dropdown.active {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(40, 40, 40, 0.8);
}

.faq-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(26, 26, 26, 0.8);
}

.faq-dropdown-header:hover {
    background-color: rgba(40, 40, 40, 0.8);
}

.faq-dropdown.active .faq-dropdown-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(40, 40, 40, 0.8);
}

.faq-dropdown-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--light-color);
    margin: 0;
    letter-spacing: 0.5px;
}

.faq-dropdown-header i {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-dropdown.active .faq-dropdown-header i {
    transform: rotate(180deg);
}

.faq-dropdown-content {
    padding: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-dropdown.active .faq-dropdown-content {
    padding: 18px;
    height: auto;
    opacity: 1;
}

.faq-dropdown-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-dropdown-content ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.faq-dropdown-content ul:last-child {
    margin-bottom: 0;
}

.faq-dropdown-content li {
    margin-bottom: 10px;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-dropdown-content li:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .faq-content {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .faq-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .faq-dropdown-header {
        padding: 12px 15px;
    }
    
    .faq-dropdown-header h3 {
        font-size: 1.1rem;
    }
    
    .faq-dropdown.active .faq-dropdown-content {
        padding: 15px;
    }
}
/* End FAQ Styles */ 