/* Base Styles */
p{
    color:#aaa;
    margin-bottom: 1.5rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation with Glow Effect */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.nav-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(64, 224, 208, 0),
            rgba(64, 224, 208, 0.3),
            rgba(64, 224, 208, 0.6),
            rgba(64, 224, 208, 0.3),
            rgba(64, 224, 208, 0));
    background-size: 400% 100%;
    animation: glowMove 8s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes glowMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    }
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(64, 224, 208, 0.1);
}

.navbar.scrolled .nav-glow {
    opacity: 0.3;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-img {
    height: 160px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 35px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #40e0d0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #40e0d0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links #get-started:hover {
    color: #fcffff;
}

#get-started {
    background: linear-gradient(135deg, #40e0d0, #20b2aa);
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
    padding: 4px;
    color: #060606;
    font-size: 1rem;
    border-color: #40e0d0;

}

.cta-button {
    background: linear-gradient(135deg, #40e0d0, #20b2aa);
    color: #000;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* About Section */
.about-section {
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 15px;
}

.about-image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-color), #00f0ff);
    z-index: -1;
    filter: blur(20px);
}

/* Glow Button */
.glow-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #40e0d0, #20b2aa);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 0 0 15px var(--primary-color);
}

.glow-button:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Core Values */
.core-values {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.section-heading span {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background:  rgba(20, 20, 20, 0.8);
    padding: 2.5rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(64, 224, 208, 0.1);
   
}

.value-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #40e0d0;
   
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.1);
    border-color: rgba(64, 224, 208, 0.3);
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: 0.4s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.1);
    border-color: rgba(64, 224, 208, 0.3);
}

.team-img {
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-img img {
    width: 100%;
    border-radius: 50%;
    transition: transform 0.4s;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-card p {
    color: #ccc;
    font-size: 0.9rem;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(circle at 70% 30%, rgba(30, 30, 30, 0.8) 0%, rgba(0, 0, 0, 1) 50%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: #40e0d0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.secondary-button {
    border: 2px solid #40e0d0;
    color: #40e0d0;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(64, 224, 208, 0.1);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #40e0d0;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-title p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.1);
    border-color: rgba(64, 224, 208, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(64, 224, 208, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: #40e0d0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-link {
    color: #40e0d0;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Stats */
.stats {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(10, 25, 47, 0.9));
    padding: 5rem 0;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #40e0d0;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #40e0d0;
}

.portfolio-overlay p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    text-align: center;
    padding: 2rem;
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-author {
    font-weight: 600;
    color: #40e0d0;
}

.testimonial-role {
    color: #8892b0;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #40e0d0;
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    color: white;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #0a192f;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-link {
    color: #ccd6f6;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #40e0d0;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #40e0d0;
    transform: translateY(-3px);
}

.social-link i {
    color: #ccd6f6;
}

.copyright {
    color: #8892b0;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #000;
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: all 0.5s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 2rem;
    }
}