.links-color{
    color: #ffffff;
}
h5{
    font-size: 16px;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0b0d17;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden; /* To prevent horizontal overflow */
}

/* General Header Styling */
header {
    background-color: #0b0d17;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo .highlight {
    color: #6c63ff;
}

.logo .dot {
    color: #6c63ff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #6c63ff;
}

.cta-button {
    background-color: #6c63ff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #5148d0;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Change hamburger to X on toggle */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(40deg) translate(7.5px, 7.5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-40deg) translate(5px, -5px);
}


/* Show the nav menu when clicked */
.nav-links.show {
    display: flex;
}

/* Hero Section */
.hero {
    background-color: #0b0d17;
    padding: 100px 50px;
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: #6c63ff;
}

.hero h1 .dot {
    color: #6c63ff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #bbb;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.client-stats span {
    font-size: 1rem;
    color: #fff;
}

/* Services Section */
.services {
    background-color: #0b0d17;
    padding: 80px 50px;
    text-align: center;
}

.services h2 {
    color: #6c63ff;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.services h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.services p {
    color: #bbbbbb;
    margin-bottom: 60px;
    font-size: 1rem;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #1c1e29;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 16px;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    font-size: 1rem;
    color: #bbbbbb;
    margin-bottom: 30px;
}

.arrow-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #6c63ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.arrow-button:hover {
    background-color: #5148d0;
}


.portfolio {
    padding: 60px 20px;
    background-color: #1b1e36;
}

.portfolio h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.5rem;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.portfolio-item {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.portfolio-item img {
    width: 100%;
    display: block;
}

.pricing {
    padding: 60px 20px;
    background-color: #10121e;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.pricing-options {
    /* display: flex; */
    justify-content: center;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pricing-tier {
    background-color: #1f2235;
    padding: 30px;
    border-radius: 10px;
    /* width: 250px; */
    position: relative;
}

.pricing-tier h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-tier p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pricing-tier ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-tier ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #0b0d17;
    padding: 80px 50px;
    text-align: center;
}

.testimonials h2 {
    color: #6c63ff;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonials h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.testimonials p {
    color: #bbbbbb;
    margin-bottom: 60px;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-card {
    background-color: #1c1e29;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    color: #ffffff;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #bbbbbb;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #ffffff;
}

.client-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.client-details p {
    color: #bbbbbb;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dots .dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #666;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dots .dot.active {
    background-color: #6c63ff;
}

/* Footer Section */
.footer {
    background-color: #111;
    padding: 60px 50px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
}

.footer .logo .highlight {
    color: #6c63ff;
}

.footer .logo .dot {
    color: #6c63ff;
}

.footer-details {
    display: flex;
    gap: 100px;
}

.footer-details h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-details p {
    color: #bbbbbb;
    line-height: 1.6;
}

.footer-details .links ul {
    list-style: none;
    padding: 0;
}

.footer-details .links ul li {
    margin-bottom: 10px;
}

.footer-details .links ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-details .social ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-details .social ul li a img {
    width: 24px;
    height: 24px;
    filter: invert(100%);
}

.footer-details .social ul li a:hover img {
    filter: invert(50%) sepia(1) saturate(5) hue-rotate(210deg);
}



/* Mobile Styles */
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        margin-top: 25px;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #111;
        width: 100%;
        padding: 20px;
        gap: 15px;
    }

    .nav-links li {
        text-align: center;
    }

    .menu-toggle {
        display: flex;
        background-color: #111 !important;
    }

    .nav-links li {
        text-align: center;
    }

    /* Show the nav links when the menu is toggled */
    .nav-links.show {
        display: flex;
    }

    .cta-button {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 60px 20px;
        height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-section {
        flex-direction: column;
    }

    .services {
        padding: 60px 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .client-info img {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-details {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-details .contact,
    .footer-details .links,
    .footer-details .social {
        text-align: center;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 10px 20px;
    }

    .services h2,
    .testimonials h2 {
        font-size: 1rem;
    }

    .services h3,
    .testimonials h3 {
        font-size: 2rem;
    }

    .services p,
    .testimonials p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* .service-grid {
        grid-template-columns: 1fr 1fr;
    } */
    .pricing-options {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonial-card {
        padding: 30px;
    }

    footer {
        padding: 40px 30px;
    }
}
