* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6b2fb5;
    --dark-purple: #4a1f7a;
    --light-purple: #8e44ad;
    --accent-purple: #9b59b6;
    --neon-purple: #b388ff;
    --yellow-accent: #FFD700;
    --bright-yellow: #FFEB3B;
    --dark-yellow: #FFC107;
    --brown-accent: #8B4513;
    --light-brown: #A0522D;
    --dark-brown: #654321;
    --warm-brown: #D2691E;
    --cyan-accent: #00CED1;
    --bright-cyan: #00FFFF;
    --dark-cyan: #008B8B;
    --turquoise: #40E0D0;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #1a1a2e;
    --text-light: #ffffff;
    --text-gray: #b8b8c8;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #6b2fb5 0%, #9b59b6 100%);
    --gradient-3: linear-gradient(135deg, #4a1f7a 0%, #6b2fb5 100%);
    --gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    --gradient-brown: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    --gradient-cyan: linear-gradient(135deg, #00CED1 0%, #40E0D0 100%);
    --gradient-mixed: linear-gradient(135deg, #6b2fb5 0%, #FFD700 50%, #9b59b6 100%);
    --gradient-warm: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #FFD700 100%);
    --gradient-cool: linear-gradient(135deg, #00CED1 0%, #6b2fb5 100%);
    --gradient-rainbow: linear-gradient(135deg, #6b2fb5 0%, #00CED1 25%, #FFD700 50%, #D2691E 75%, #9b59b6 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107, 47, 181, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 30px rgba(0, 206, 209, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--yellow-accent);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(107, 47, 181, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 206, 209, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 40% 70%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.8s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeIn 1s ease 1s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-cool);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-purple);
    border: 2px solid var(--neon-purple);
}

.btn-secondary:hover {
    background: var(--neon-purple);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(107, 47, 181, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--yellow-accent);
}

.floating-card.card-2 i {
    color: var(--cyan-accent);
}

.floating-card.card-2 {
    border-color: rgba(0, 206, 209, 0.4);
}

.floating-card.card-2:hover {
    border-color: var(--cyan-accent);
    box-shadow: 0 15px 50px rgba(0, 206, 209, 0.5);
}

.floating-card span {
    font-weight: 600;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--yellow-accent);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--yellow-accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 206, 209, 0.1);
    color: var(--cyan-accent);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 206, 209, 0.3);
}

.services .section-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--yellow-accent);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.about .section-tag {
    background: rgba(139, 69, 19, 0.1);
    color: var(--warm-brown);
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 47, 181, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 50px rgba(107, 47, 181, 0.3);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card.featured {
    border: 2px solid var(--neon-purple);
    background: linear-gradient(135deg, rgba(107, 47, 181, 0.1) 0%, rgba(26, 26, 46, 1) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-yellow);
    color: var(--dark-purple);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-yellow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--dark-purple);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--yellow-accent);
}

/* Portfolio Section */
.portfolio-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.portfolio-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
}

.portfolio-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.portfolio-slide.prev {
    transform: translateX(-100%);
}

.portfolio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-slide:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.portfolio-overlay p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-cyan);
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.4);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 206, 209, 0.6);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 206, 209, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--cyan-accent);
    width: 30px;
    border-radius: 10px;
}

.slider-dot:hover {
    background: var(--cyan-accent);
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-item:nth-child(2) .portfolio-link,
.portfolio-item:nth-child(4) .portfolio-link {
    background: var(--gradient-yellow);
    color: var(--dark-purple);
}

.portfolio-link:hover {
    transform: scale(1.1);
}

/* About Section */
.about {
    background: var(--darker-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.feature-icon i {
    color: var(--dark-purple);
}

.about-feature:nth-child(2) .feature-icon {
    background: var(--gradient-cyan);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.4);
}

.about-feature:nth-child(2) .feature-icon i {
    color: var(--dark-bg);
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.feature-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(107, 47, 181, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan-accent);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.4);
}

.stat-card:nth-child(odd):hover {
    border-color: var(--warm-brown);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card:nth-child(2) .stat-number,
.stat-card:nth-child(4) .stat-number {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.contact-icon i {
    color: var(--dark-purple);
}

.contact-item:nth-child(2) .contact-icon {
    background: var(--gradient-cyan);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.4);
}

.contact-item:nth-child(2) .contact-icon i {
    color: var(--dark-bg);
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
}

.contact-details .email-link {
    color: var(--cyan-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details .email-link:hover {
    color: var(--yellow-accent);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid rgba(107, 47, 181, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-cyan);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.5);
}

.social-links a:nth-child(2):hover,
.social-links a:nth-child(4):hover {
    background: var(--gradient-yellow);
    color: var(--dark-purple);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 47, 181, 0.2);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    background: var(--dark-bg);
    border: 1px solid rgba(107, 47, 181, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow-accent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.contact-form button {
    grid-column: 1 / -1;
    width: 100%;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(107, 47, 181, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--yellow-accent);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: var(--card-bg);
    border: 1px solid rgba(107, 47, 181, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-yellow);
    border: none;
    border-radius: 10px;
    color: var(--dark-purple);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    background: var(--gradient-cyan);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 47, 181, 0.2);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(107, 47, 181, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .portfolio-slider-container {
        padding: 0 50px;
    }

    .portfolio-slider {
        height: 400px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .portfolio-slider-container {
        padding: 0 40px;
    }

    .portfolio-slider {
        height: 300px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }

    .portfolio-overlay p {
        font-size: 0.9rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-cool);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan-accent);
}

/* Selection */
::selection {
    background: var(--neon-purple);
    color: var(--text-light);
}

/* Cyan Accent Elements */
.service-card:nth-child(3) .service-icon,
.service-card:nth-child(5) .service-icon {
    background: var(--gradient-cyan);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.4);
}

.service-card:nth-child(3) .service-icon i,
.service-card:nth-child(5) .service-icon i {
    color: var(--dark-bg);
}

.service-card:nth-child(3):hover,
.service-card:nth-child(5):hover {
    border-color: var(--cyan-accent);
    box-shadow: 0 20px 50px rgba(0, 206, 209, 0.4);
}

.portfolio-item:nth-child(3) .portfolio-overlay {
    background: rgba(0, 206, 209, 0.95);
}

.about-feature:nth-child(2) {
    background: rgba(0, 206, 209, 0.05);
    border-color: rgba(0, 206, 209, 0.2);
}

.about-feature:nth-child(2):hover {
    background: rgba(0, 206, 209, 0.1);
    border-color: var(--cyan-accent);
}

.contact-item:nth-child(2) .contact-icon {
    background: var(--gradient-cyan);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.4);
}

.contact-item:nth-child(2) .contact-icon i {
    color: var(--dark-bg);
}

.floating-card.card-2 i {
    color: var(--cyan-accent);
}

.floating-card.card-2 {
    border-color: rgba(0, 206, 209, 0.4);
}

.floating-card.card-2:hover {
    border-color: var(--cyan-accent);
    box-shadow: 0 15px 50px rgba(0, 206, 209, 0.5);
}

.portfolio-item:nth-child(1) .portfolio-link,
.portfolio-item:nth-child(3) .portfolio-link {
    background: var(--gradient-cyan);
    color: var(--dark-bg);
}

.stat-card:nth-child(2) .stat-number,
.stat-card:nth-child(4) .stat-number {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid rgba(0, 206, 209, 0.3);
    border-radius: 25px;
    color: var(--text-gray);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--cyan-accent);
    color: var(--cyan-accent);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--gradient-cyan);
    border-color: var(--cyan-accent);
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .navbar .container {
    flex-direction: row-reverse;
}

body.rtl .nav-menu {
    flex-direction: row-reverse;
}

body.rtl .hero .container {
    direction: rtl;
    text-align: right;
}

body.rtl .hero-content {
    text-align: right;
}

body.rtl .hero-buttons {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

body.rtl .service-features,
body.rtl .footer-col ul {
    text-align: right;
}

body.rtl .service-features li {
    flex-direction: row-reverse;
}

body.rtl .about-feature {
    flex-direction: row-reverse;
    text-align: right;
}

body.rtl .contact-content {
    direction: rtl;
}

body.rtl .contact-form {
    direction: rtl;
}

body.rtl .floating-card {
    flex-direction: row-reverse;
}

body.rtl .logo {
    flex-direction: row-reverse;
}

body.rtl .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

body.rtl .about-feature:hover {
    transform: translateX(-10px);
}

body.rtl .prev-btn {
    left: auto;
    right: 0;
}

body.rtl .next-btn {
    right: auto;
    left: 0;
}

body.rtl .prev-btn i {
    transform: rotate(180deg);
}

body.rtl .next-btn i {
    transform: rotate(180deg);
}

body.rtl .section-header {
    text-align: center;
}

body.rtl .footer-content {
    direction: rtl;
}

body.rtl .footer-col {
    text-align: right;
}

body.rtl .newsletter-form {
    flex-direction: row-reverse;
}

body.rtl .social-links {
    flex-direction: row-reverse;
}

body.rtl .about-stats {
    direction: rtl;
}

body.rtl .stat-card {
    text-align: center;
}

body.rtl .about-content {
    direction: rtl;
}

body.rtl .portfolio-overlay {
    text-align: center;
}

body.rtl .language-switcher {
    flex-direction: row-reverse;
}

@media (max-width: 968px) {
    .language-switcher {
        position: absolute;
        top: 20px;
        left: 20px;
    }
    
    body.rtl .language-switcher {
        left: auto;
        right: 20px;
    }

    body.rtl .hero-buttons {
        justify-content: center;
    }

    body.rtl .hero-content {
        text-align: center;
    }
}
