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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    transform: translateZ(50px);
    animation: contentFloat 20s infinite linear;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes contentFloat {
    0%, 100% {
        transform: translateZ(50px) translateY(0);
    }
    50% {
        transform: translateZ(50px) translateY(-5px);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
    letter-spacing: 2px;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.5), transparent);
    animation: glowLine 2s infinite;
}

@keyframes glowLine {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-holder {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
    background: linear-gradient(45deg, #0072ff, #00c6ff);
}

/* Remove the ribbon styles */
.cta-button::before {
    display: none;
}

/* Sections */
section {
    padding: 5rem 5%;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #ffffff;
}

.services-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services-grid > div:first-child {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid > div:first-child .service-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid > div:last-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.service-card {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Remove the 50% OFF ribbon from services */
.service-card::before {
    display: none;
}

.service-card.free-consultation::before {
    display: none;
}

.service-price {
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    color: #00c6ff;
    font-size: 1.2rem;
    font-weight: bold;
}

.discounted-price {
    color: #00c6ff;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-description, .service-benefits, .service-example {
    color: #555;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.service-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.badge {
    background: rgba(0, 198, 255, 0.1);
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge i {
    font-size: 0.9rem;
    color: #00c6ff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #00c6ff;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.service-card .learn-more-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.service-card .learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
    background: linear-gradient(45deg, #0072ff, #00c6ff);
}

@media (max-width: 1024px) {
    .services-grid > div:last-child {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid > div:last-child {
        grid-template-columns: 1fr;
    }
    
    .services-grid > div:first-child .service-card {
        max-width: 100%;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
}

/* Contact Section Flex Layout */
.contact-flex {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1 1 350px;
    max-width: 600px;
}

.the-team {
    flex: 1 1 300px;
    background: rgba(255,255,255,0.07);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0,198,255,0.05);
    min-width: 260px;
}

.the-team h3 {
    color: #00c6ff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,198,255,0.07);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    transition: background 0.2s;
}

.team-member:hover {
    background: rgba(0,198,255,0.15);
}

.team-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00c6ff;
    box-shadow: 0 2px 8px rgba(0,198,255,0.08);
}

.team-name {
    font-weight: bold;
    color: #222;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .the-team {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 5% 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li i {
    color: #00c6ff;
    font-size: 1.1rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

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

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

    .hamburger {
        display: block;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 5%;
    }
}

/* Futuristic Elements */
.futuristic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.2) 0%, rgba(0, 195, 255, 0) 70%);
    animation: floatGlow 10s infinite ease-in-out;
}

.glow-circle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.glow-circle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: -3s;
}

.glow-circle:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: -6s;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.3;
    }
}

/* Bundles Section Styles */
.bundles-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
}

.bundles-intro {
    text-align: center;
    color: #00c6ff;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.bundle-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bundle-card::before {
    content: "50% OFF";
    position: absolute;
    top: 10px;
    right: -25px;
    background: #ff4d4d;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bundle-card.featured::before {
    background: #00c6ff;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.2);
}

.bundle-card.featured {
    border: 2px solid #00c6ff;
    transform: scale(1.05);
}

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

.bundle-card h3 {
    color: #00c6ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.bundle-price {
    text-align: center;
    margin-bottom: 2rem;
}

.bundle-price .one-time {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.bundle-price .monthly {
    display: block;
    font-size: 1.2rem;
    color: #00c6ff;
}

.bundle-includes {
    margin-bottom: 2rem;
}

.bundle-includes h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.bundle-includes ul {
    list-style: none;
    padding: 0;
}

.bundle-includes li {
    color: #fff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bundle-includes li i {
    color: #00c6ff;
}

.bundle-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bundle-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.4);
}

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

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

    .bundle-card.featured:hover {
        transform: translateY(-5px);
    }
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
}

.contact-label {
    font-weight: 500;
    color: #222;
    margin-bottom: 0.2rem;
    margin-top: 0.5rem;
}

.contact-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255,255,255,0.7);
    margin-bottom: 0.2rem;
}

.contact-textarea {
    width: 100%;
    min-height: 120px;
    max-width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255,255,255,0.7);
    resize: vertical;
    margin-bottom: 0.2rem;
}

.submit-button {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8fafc;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
}

.testimonials-section h2 {
    color: #00c6ff;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 16px rgba(0,198,255,0.08);
    padding: 2rem 1.5rem;
    max-width: 350px;
    min-width: 260px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.testimonial-label {
    font-size: 0.95rem;
    color: #00c6ff;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.testimonial-text {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 1.2rem;
    font-style: italic;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    margin-top: auto;
    align-self: flex-end;
}

.testimonials-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-rating {
    font-size: 1.5rem;
    color: #ffc107;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.star {
    color: #ffc107;
    font-size: 1.7rem;
    vertical-align: middle;
}

.testimonials-based {
    color: #888;
    font-size: 1rem;
}

.testimonials-link {
    color: #00c6ff;
    font-weight: 600;
    text-decoration: underline;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.testimonials-link:hover {
    color: #0072ff;
}

@media (max-width: 900px) {
    .testimonials-list {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Tesla-style Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav i {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav i {
        font-size: 1.2rem;
    }
} 