:root {
    --primary: #0adb8d;
    --general: #00f5ff;
    --dark: #121212;
    --light: #f8f9fa;
    --success: #ff00f5;
    --hover: linear-gradient(180deg, #00f5ff, #0000ff);
    --bg-primary: linear-gradient(135deg, var(--primary) 50%, var(--light) 125%);
    --bg-general: linear-gradient(135deg, var(--general) 50%, var(--light) 125%);
    --bg-success: linear-gradient(135deg, var(--success) 50%, var(--light) 125%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animated background particles */
.bg-particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}

.particle {
position: absolute;
width: 2px;
height: 2px;
background: linear-gradient(45deg, #00f5ff, #ff00f5);
border-radius: 50%;
animation: float 6s ease-in-out infinite;
}

/* Header */
header {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--light);
    border-radius: 25px;
    margin: 10px;
    border: 2px solid var(--secondary);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    direction: ltr !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoIcon{
    height: 50px;
    width: 50px;
}

.logo {
    font-size: 1.8rem;
    display: flex;  
    background: var(--hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo-highlight {
    color: var(--secondary);
    font-weight: 500;
}

nav ul {
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--general);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #00f5ff, #ff00f5);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
}

.scrolling {
    background: rgba(10, 10, 10, 0.500);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.555);
}

/* Floating geometric shapes */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--hover);
    border-radius: 20px;
    animation-delay: 1s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--bg-success);
    border-radius: 50%;
    animation-delay: -5s;
}

.shape-3 {
    bottom: 10%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    transform: rotate(45deg);
    animation-delay: -10s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative; 
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--hover);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--light);
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    background: var(--hover);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-9px);
}

/* Services Section */
.services {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: var(--hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--bg-general);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 5%;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--bg-general);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    position: relative;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}


/* social-links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-radius: 15px;
    align-content: center;
    backdrop-filter: blur(15px);
    transition: 0.5s;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--general);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--light);
    animation: ease-out 5s;
    background: var(--bg-linear);
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.750);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 1em;
}

.footer-column h3 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--general);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* animaction*/
@keyframes rotate {
    from {
        transform: rotate(0deg); 
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg); opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg); opacity: 1;
    }
}

@keyframes mymove {
    100% {
        rotate: 360deg;
    }
  }


    /* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}
      
  
/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-radius: 15px;
        background: rgba(10, 10, 10, 0.500);
        box-shadow: 0 5px 20px rgba(0, 245, 255, 0.555);
        flex-direction: column;
        padding: 1rem 0;
        justify-content: center;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    

    .nav-links a:hover {
    color: var(--general);
    transform: translateY(-9px);
    }
    
    .hamburger {
        display: block;
    }

    .nav-links {
    display: none;
    }

    .hero h1 {
    font-size: 3rem;
    }

    .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

    .stats {
    grid-template-columns: 1fr;
    }

    .services-grid {
    grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #00f5ff, #ff00f5);
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #ff00f5, #00f5ff);
}