/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

#hero-animation {
position: absolute;
opacity: 50%;
left:0;
z-index: -1;
}

/* Header and navigation */
header {
    background-color: rgb(0, 0, 0);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #9EFF00;
}

.logo img {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    border-radius: 12px;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #9EFF00;
}

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

.burger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero section */
#hero {
    background: linear-gradient(to bottom, #000000, #4B0082);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(to right, #9EFF00, #00FFD1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-buttons {
    display:block;
    gap: 1rem;

}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
cursor: pointer;
    background-color: #9EFF00;
    color: #000000;
    margin-right: 30px;
    font-size: large;
    width: 300px;
margin-top: 20px;
z-index: 100;

}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #9EFF00;
    text-align: center;
    margin-top: 20px;
    width: 300px;
    z-index: 100;
}

.btn:hover {
    opacity: 0.8;
}



/* Services section */
#services {
    padding: 80px 0;
    background-color: #0a0a0a;
}

#services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #9EFF00;
}

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

.service-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-20px);
    background-color: #9dff009c;
    color: #000000;
}
.liq{
    position: absolute;
    opacity: 50%;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.service-card i {
    font-size: 3rem;
    color: #9EFF00;
    margin-bottom: 1rem;
}

/* About section */
#about {
    padding: 80px 0;
   
}

.about-content {
    display: flex;
    align-items: center;
    gap: 10rem;
}

.about-image img {
    max-width: 100%;
    border-radius: 5px;
    object-fit: contain;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #9EFF00;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    color: #9EFF00;
}

/* Expertise section */
#expertise {
    padding: 80px 0;
    background-color: #0a0a0a;
}

#expertise h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #9EFF00;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}

.expertise-card h3 {
    color: #9EFF00;
    margin-bottom: 1rem;
}

/* Contact section */
#contact {
    padding: 80px 0;
    background: linear-gradient(to bottom, #000000, #4B0082);
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #9EFF00;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.contact-item h3 {
    color: #9EFF00;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    color: #9EFF00;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: #9EFF00;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #9EFF00;
    color: #000000;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #1a1a1a;
}
@media screen and (min-width:769px ) {
    .liq{
        display: none;
    }
}
/* Responsive design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        flex-direction: column;
        align-items: center;
       
        width: 80%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    h1{
        font-size: 36px !important;
        letter-spacing: 2px;
        width: 300px;
       
    }
  
    .no{
        display: none;
    }
 

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

*{
    font-family: 'Open Sans', sans-serif !important;
  }
 
 