body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.8;
    overflow-x: hidden;
    background: #121212;
    color: #e0e0e0;
    scroll-behavior: smooth;
    transition: background 0.5s, color 0.5s;
}

header {
    background: #1f1f1f;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.5s;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2em;
    font-weight: 800;
    animation: slideInLeft 1.5s ease-out;
    color: #61dafb;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    font-size: 1.2em;
    font-weight: 500;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #61dafb;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #61dafb;
    transform: scale(1.1);
}

.hero-section {
    padding: 150px 20px;
    background: linear-gradient(135deg, #333333, #444444);
    color: #ffffff;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    animation: rotateBackground 10s linear infinite;
}

.hero-section h1 {
    font-size: 4em;
    animation: zoomIn 1.5s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.6em;
    animation: zoomIn 1.5s ease-in-out;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    margin-top: 40px;
    padding: 20px 50px;
    background: #ff79c6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    font-size: 1.3em;
    font-weight: 600;
    cursor: pointer;
}

.btn:hover {
    background: #ff92d0;
    transform: translateY(-5px) scale(1.1);
}

.about-section, .services-section, .faq-section, .contact-section, .verified-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 80px auto;
    text-align: center;
    animation: fadeInUp 2s ease-in-out;
    background: #1e1e1e;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
    transition: background 0.5s, box-shadow 0.5s;
}

.about-section {
    margin-top: -50px;
}

.about-section p, .services-section p, .faq-section p, .contact-section p, .verified-section p {
    font-size: 1.3em;
    line-height: 1.9;
    max-width: 900px;
    margin: 30px auto;
}

.faq-item {
    margin-bottom: 30px;
    text-align: left;
    animation: fadeInUp 1.5s ease-in-out;
    transition: transform 0.3s;
    background: #252525;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.faq-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.contact-section a {
    color: #bb86fc;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
    font-size: 1.2em;
}

.contact-section a:hover {
    color: #ff79c6;
    text-decoration: underline;
}

footer {
    padding: 40px;
    background: #1f1f1f;
    color: #ffffff;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    box-shadow: 0 -6px 10px rgba(0, 0, 0, 0.4);
    transition: background 0.5s;
    font-size: 1.1em;
}

.footer-love {
    color: #e25555;
    animation: pulse 1.5s infinite;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* New Modern Additions */
.parallax {
    background: url('https://source.unsplash.com/random/1920x1080') no-repeat center center fixed;
    background-size: cover;
    height: 500px;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.testimonials {
    background: #1e1e1e;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
    max-width: 1100px;
    margin: 60px auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.testimonial-item {
    margin-bottom: 50px;
    background: #252525;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.testimonial-item:hover {
    transform: scale(1.05);
}

.testimonial-item p {
    font-size: 1.3em;
    line-height: 1.8;
}

.testimonial-item h3 {
    margin-top: 15px;
    font-size: 1.5em;
    color: #61dafb;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}