/* Base Styles */
:root {
    /* Brand Colors - Vibrant Electric Theme */
    --primary-color: #7f5af0;
    /* Electric Purple */
    --primary-dark: #5c3ecf;
    /* Deep Royal Purple */
    --primary-light: rgba(127, 90, 240, 0.15);
    /* Soft hover background */

    --secondary-color: #2cb67d;
    /* Bright Mint Green */
    --secondary-dark: #1f8c61;
    /* Deeper green tone */
    --secondary-light: rgba(44, 182, 125, 0.15);
    /* Soft mint glow */

    /* Background / Surface */
    --dark-color: #0f0e17;
    /* Deep Black for main background */
    --darker-color: #0a0913;
    /* For nav/footer */
    --light-color: #1a1a2e;
    /* Panel/Card surface */

    /* Grays / Neutrals */
    --gray-color: #a7a9be;
    /* Neutral cool gray */
    --gray-dark: #5c5f7a;
    /* For muted text or borders */
    --gray-light: #d3d4e0;
    /* For lighter text/subtext */

    /* Typography */
    --text-color: #eaeaea;
    /* Clean light text */
    --heading-color: #ffffff;
    /* Bright white for headings */

    /* Effects */
    --gradient: linear-gradient(90deg, #7f5af0 0%, #2cb67d 100%);
    --box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    --transition: all 0.3s ease;

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-tag {
    margin-bottom: 15px;
}

.section-header .section-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 126, 51, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 126, 51, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 130px;
    padding: 5px;
    border-radius: 5px;

}

.logo img {

    width: 100%;
    height: 100%;

}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    background-color: rgba(255, 126, 51, 0.1);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    margin-left: 35px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-arrow {
    margin-left: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.nav-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background-color: var(--darker-color);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(255, 126, 51, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--gray-color);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-clients {
    border-top: 1px solid var(--gray-light);
    padding-top: 30px;
}

.hero-clients p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.client-logos {
    display: flex;
    gap: 30px;
    align-items: center;
}

.client {
    color: var(--gray-color);
    font-weight: 600;
    opacity: 0.7;
    transition: var(--transition);
}

.client:hover {
    opacity: 1;
    color: var(--primary-color);
}

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 126, 51, 0.1), rgba(255, 46, 99, 0.1));
    top: -100px;
    right: -150px;
    z-index: 1;
}

.hero .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(108, 92, 231, 0.1), rgba(72, 52, 212, 0.1));
    bottom: -50px;
    left: -100px;
    z-index: 1;
}

.hero .shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(255, 126, 51, 0.1), rgba(255, 46, 99, 0.1));
    bottom: 50px;
    right: 50px;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray-color);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gray-color);
    border-bottom: 2px solid var(--gray-color);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrows 2s infinite;
}

.arrow:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--darker-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--gray-dark);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card.featured {
    transform: translateY(-20px);
    border-bottom: 5px solid var(--primary-color);
}

.service-card.featured::before {
    background: linear-gradient(to top, rgba(255, 126, 51, 0.1), transparent);
    height: 100%;
}

.service-icon {
    position: relative;
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
}

.icon-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.2;
    border-radius: 12px;
    transform: rotate(10deg);
    transition: var(--transition);
}

.service-card:hover .icon-shape {
    transform: rotate(0deg);
    opacity: 0.3;
}

.service-icon span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.card-link {
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.card-link span {
    margin-left: 5px;
    transition: var(--transition);
}

.card-link:hover span {
    margin-left: 10px;
}

/* Work Section */
.work {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.work-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--gray-light);
    padding: 10px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-color);
    transition: var(--transition);
    border-radius: 50px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.work-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px;
}

.work-item.large {
    height: 400px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.work-image {
    height: 100%;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 10, 20, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.work-overlay h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.work-overlay p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.work-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.work-link span {
    margin-left: 5px;
    transition: var(--transition);
}

.work-link:hover span {
    margin-left: 10px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--dark-color);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
}

.value-icon {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.value-icon .icon-shape {
    border-radius: 8px;
}

.value-icon span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.value-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.value-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.image-shape {
    position: absolute;
    border-radius: var(--border-radius);
}

.about-image .shape-1 {
    width: 80%;
    height: 80%;
    border: 15px solid var(--primary-color);
    opacity: 0.1;
    top: 40px;
    right: -30px;
    z-index: 1;
}

.about-image .shape-2 {
    width: 60%;
    height: 60%;
    background: linear-gradient(45deg, rgba(255, 126, 51, 0.1), rgba(255, 46, 99, 0.1));
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-track {
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--gray-light);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-items {
    position: relative;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background-color: var(--darker-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid var(--gray-light);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-number {
    display: inline-block;
    background-color: rgba(255, 126, 51, 0.1);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--dark-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    flex: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card.featured {
    background: linear-gradient(to bottom right, rgba(255, 126, 51, 0.1), rgba(255, 46, 99, 0.1));
    border: 1px solid rgba(255, 126, 51, 0.2);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-family: var(--font-heading);
    line-height: 1;
    opacity: 0.1;
    color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-color);
    border: 1px solid var(--gray-light);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(255, 126, 51, 0.1), rgba(255, 46, 99, 0.1));
    border-radius: var(--border-radius);
    padding: 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 126, 51, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--gray-color);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 126, 51, 0.1), rgba(255, 46, 99, 0.1));
    top: -150px;
    right: 10%;
}

.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 126, 51, 0.1), rgba(255, 46, 99, 0.1));
    bottom: -100px;
    left: 10%;
}

.cta-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 126, 51, 0.1), rgba(255, 46, 99, 0.1));
    top: 30%;
    left: 20%;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray-color);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon .icon-shape {
    border-radius: 8px;
}

.contact-icon span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--dark-color);
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background-color: var(--dark-color);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-light);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-light);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--gray-color);
    font-size: 1rem;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group input:focus~label,
.form-group select:focus~label,
.form-group textarea:focus~label,
.form-group input:valid~label,
.form-group select:valid~label,
.form-group textarea:valid~label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.form-group input:focus~.form-border,
.form-group select:focus~.form-border,
.form-group textarea:focus~.form-border {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--darker-color);
    color: var(--text-color);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {

    width: 200px;
    height: 100px;
    padding: 10px;

}

.footer-logo img {

    width: 100%;
    height: 100%;
    object-fit: contain;

}

.footer-nav {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-color);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--gray-color);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--primary-color);
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 126, 51, 0.03), rgba(255, 46, 99, 0.03));
    top: -150px;
    right: 10%;
}

.footer-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 126, 51, 0.03), rgba(255, 46, 99, 0.03));
    bottom: -100px;
    left: 5%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .timeline-content {
        width: 40%;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 60%;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60%;
    }
}

@media (max-width: 480px) {

    .stats-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

}

@media (max-width: 992px) {

    .hero .container,
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-slider {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .timeline-track {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        width: 80%;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        padding: 40px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .client-logos {
        flex-wrap: wrap;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }
}