:root {
    --primary: #FF5E14; /* Vibrant orange */
    --secondary: #2D5BFF; /* Klein blue */
    --accent1: #FF0D86; /* Hot pink */
    --accent2: #00F0A8; /* Fluorescent green */
    --dark: #1A1A2E;
    --light: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
a{
    color: var(--dark);
    text-decoration: none;
}

/* Geometric background elements */
.bg-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.15;
}

.shape-1 {
    top: 10%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(45deg);
}

.shape-2 {
    bottom: 5%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    top: 40%;
    right: 20%;
    width: 100px;
    height: 100px;
    background: var(--accent2);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Header styles */
header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: none;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #e05512;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #1a4aff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 91, 255, 0.3);
}

/* Hero section */
.hero {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    position: relative;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent2);
    border-radius: 15px;
    top: -15px;
    left: -15px;
    z-index: -1;
}

h1 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
}

h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
    padding: 0 10px;
}

/* Features section */
.features {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,94,20,0.05) 0%, rgba(45,91,255,0.05) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

h2 span {
    color: var(--primary);
}

.section-title p {
    max-width: 100%;
    margin: 0 auto;
    color: #666;
    padding: 0 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent1));
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--accent1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* About section */
.about {
    padding: 60px 0;
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    width: 100%;
    padding: 0 15px;
    order: 2;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    position: relative;
    margin: 0 auto 30px;
    order: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--accent2);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    z-index: -1;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,240,168,0.05) 0%, rgba(45,91,255,0.05) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 50px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -25px;
    left: -5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 13px;
    color: #777;
}

/* CTA section */
.cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent1));
    color: white;
    position: relative;
}

.cta h2 {
    color: white;
    margin-bottom: 15px;
    padding: 0 15px;
}

.cta p {
    max-width: 100%;
    margin: 0 auto 25px;
    font-size: 16px;
    padding: 0 15px;
}

.cta-buttons-center {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 25px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 13px;
    padding: 25px 15px 0;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 4s ease-in-out infinite;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 24px;
    cursor: pointer;
}

/* Responsive styles */
@media (min-width: 576px) {
    .features-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons-center {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 20px;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    h1 {
        font-size: 38px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .features, .about, .testimonials {
        padding: 80px 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-content, .about-content {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-text, .about-text {
        padding: 0;
        text-align: left;
    }
    
    .hero-text {
        margin-bottom: 0;
        padding-right: 30px;
    }
    
    .about-text {
        order: 1;
        padding-left: 30px;
    }
    
    .about-image {
        order: 2;
        margin-bottom: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 42px;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 18px;
    }
}
.social-links a{
    color: #fff;
    text-decoration: none;
}