:root {
    --bg-color: black;
    --card-bg: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent-glass: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.btn-glass {
    background: var(--accent-glass);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.btn-glass-sm {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    color: white;
}

.btn-outline {
    background: rgb(14, 14, 14);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 14px;
    border: 1.4px solid rgb(154, 154, 154);
    box-shadow: rgba(255, 255, 255, 0) 0px 1px 9px 0px;
    will-change: auto;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.btn-white {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid transparent;
    position: relative;
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 20px;
}

.pill-label::before {
    content: '';
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 1px;
    width: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px 0 0 20px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgb(255, 255, 255), 0 0 16px rgba(255, 255, 255, 0.4);
    animation: dot-glow 1.8s ease-in-out infinite alternate;
}

@keyframes dot-glow {
    0% {
        box-shadow: 0 0 6px rgb(255, 255, 255), 0 0 12px rgb(255, 255, 255);
        opacity: 0.8;
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgb(255, 255, 255);
        opacity: 1;
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #aaa;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 60px 20px 40px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;

}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
}

.scroll-indicator::before,
.scroll-indicator::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    flex: 1;
    max-width: 200px;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 2px;
    height: 6px;
    background-color: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* Logo Marquee */
.logo-marquee {
    padding: 40px 0;
    overflow: hidden;
    opacity: 0.5;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 80px;
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    animation: scroll-logo-marquee 70s linear infinite;
    width: fit-content;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes scroll-logo-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

/* Services Section */
.services {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-container {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.services-text {
    flex: 1;
}

.services-text h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ccc;
}

.service-buttons {
    display: flex;
    gap: 20px;
}

.services-image {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.service-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.service-pills-row {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.service-pills-row::before,
.service-pills-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 2;
}

.service-pills-row::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.service-pills-row::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.service-pills-scroll {
    display: flex;
    gap: 15px;
    animation: scroll-service-pills 30s linear infinite;
    width: fit-content;
}

.service-pills-scroll-right {
    animation: scroll-service-pills-right 30s linear infinite;
}

.pill {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes scroll-service-pills {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 7.5px));
    }
}

@keyframes scroll-service-pills-right {
    0% {
        transform: translateX(calc(-50% - 7.5px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Projects Section */
.projects {
    padding: 120px 60px;
    max-width: 1700px;
    margin: 0 auto;
}

.project-feature {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
    height: 700px;
    background: #111;
    display: none;
}

.project-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-feature .center-pill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    padding: 14px 36px;
}

.project-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.project-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.column-center {
    margin-top: -60px;
}

.column-right {
    margin-top: 40px;
}

.project-card {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    height: 520px;
    background: #111;
}

.project-card.tall {
    height: 720px;
}

.project-card.hero-card {
    height: 820px;
}

/* Adjusting grid based on screenshots: 3 cols */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.center-pill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 24px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.projects-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.link-underline {
    text-decoration: underline;
    color: white;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 120px 60px;
    max-width: 1700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text h2 {
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.4rem;
    color: #d7d7d7;
    line-height: 1.6;
}

.slider-track {
    margin: 20px 0;
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.slider-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    background: rgba(255, 255, 255, 0.4);
}

.slider-dot {
    position: absolute;
    right: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    transform: translate(40px, -50%);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
}

.about-tags .tag {
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 0;
}

.experience-list {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.exp-item {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.exp-item h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.exp-item span {
    color: #b9b9b9;
    font-size: 1rem;
}

.exp-company {
    text-align: right;
}

.about-visual {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 720px;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual .floating-edit-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

/* Contact Section */
.contact-section {
    padding: 120px 60px;
    max-width: 1500px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    gap: 60px;
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 12, 0.7);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(22px);
}

.contact-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-intro h2 {
    font-size: 3.5rem;
    font-weight: 400;
}

.contact-intro p {
    color: #bdbdbd;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0;
}

.contact-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f4f4f4;
    font-size: 1rem;
}

.contact-link i {
    font-size: 1.2rem;
}

.contact-socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-pill {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.contact-form {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    color: #cfcfcf;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group select:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 12px;
    border: none;
}

.form-group select option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group select option:checked {
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

.send-btn {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 16px 24px;
}

/* Testimonials */
.testimonials {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.testimonial-header-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 0;
}

.testimonial-image-placeholder {
    flex: 0 0 50%;
    width: auto;
    height: 500px;
    background: #0f0f0f;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image-placeholder img {
    width: 150%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.testimonial-header {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 20px;
}

.testimonial-header .pill-label {
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
}

.testimonial-header .pill-label .dot {
    background-color: #fff;
    width: 5px;
    height: 5px;
}

.testimonial-header h2 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.testimonial-header p {
    color: #aaaaaa;
    margin-bottom: 48px;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 520px;
    font-weight: 400;
}

.testimonial-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-header .btn-outline {
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.testimonial-header .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.testimonial-grid {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}

.testimonial-grid::before,
.testimonial-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.testimonial-grid::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.testimonial-grid::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.testimonial-scroll {
    display: flex;
    gap: 30px;
    animation: scroll-testimonials 30s linear infinite;
    width: fit-content;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--text-main);
}

.client-info span {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.testimonial-card p {
    color: #ccc;
    font-size: 1.18rem;
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.star-rating {
    display: flex;
    gap: 2px;
    color: #ffd700;
}

.star-rating i {
    font-size: 1.2rem;
    color: #ffd700;
}

.rating-number {
    color: #ffd700;
    font-weight: 500;
    font-size: 1.2rem;
}

/* Floating Button */
.floating-edit-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .services-container {
        flex-direction: column;
    }

    .services-image {
        width: 100%;
        height: 300px;
    }

    .project-grid {
        flex-direction: column;
    }

    .project-column,
    .column-center,
    .column-right {
        margin-top: 0;
    }

    .project-card,
    .project-card.tall,
    .project-card.hero-card {
        height: 360px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 4rem;
    }

    .about-visual {
        height: 520px;
    }

    .testimonials {
        flex-direction: column;
    }

    .testimonial-header-container {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-image-placeholder {
        flex: 1;
        width: 100%;
        height: 400px;
    }

    .testimonial-header {
        flex: 1;
        width: 100%;
    }

    .testimonial-header h2 {
        font-size: 3.5rem;
        font-weight: 600;
    }

    .testimonial-header-container {
        gap: 40px;
    }

    .testimonial-image-placeholder {
        height: 450px;
    }

    .testimonial-card {
        width: 300px;
        height: 300px;
    }

    .contact-card {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .send-btn {
        width: 100%;
    }

    .stats-card {
        padding: 50px 60px;
        gap: 30px;
        align-self: center;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

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

    .project-grid {
        gap: 24px;
    }

    .project-card,
    .project-card.tall,
    .project-card.hero-card {
        height: 280px;
    }

    .project-feature {
        height: 320px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    .project-feature .center-pill {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .about-section {
        padding: 80px 24px;
    }

    .about-text h2 {
        font-size: 3rem;
    }

    .about-tags .tag {
        width: 100%;
        text-align: center;
    }

    .exp-item {
        flex-direction: column;
        gap: 12px;
    }

    .exp-company {
        text-align: left;
    }

    .about-visual {
        height: 360px;
    }

    .service-cards {
        flex-direction: column;
    }

    .testimonial-header-container {
        gap: 30px;
    }

    .testimonial-image-placeholder {
        height: 300px;
    }

    .testimonial-header h2 {
        font-size: 2.5rem;
        font-weight: 600;
    }

    .testimonial-header-container {
        gap: 30px;
    }

    .testimonial-image-placeholder {
        height: 300px;
    }

    .testimonial-header {
        padding-left: 0;
    }

    .testimonial-header p {
        font-size: 1rem;
    }

    .testimonial-buttons {
        flex-direction: column;
        width: 100%;
    }

    .testimonial-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }

    .testimonial-card {
        width: 280px;
        height: 280px;
        padding: 25px;
    }

    .contact-section {
        padding: 80px 24px;
    }

    .contact-card {
        padding: 30px;
        gap: 30px;
    }

    .contact-intro h2 {
        font-size: 2.5rem;
    }

    .testimonial-grid::before,
    .testimonial-grid::after {
        width: 80px;
    }
}

/* Stats Section */
.stats {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.stats-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}


/* CTA Section */
.cta-section {
    padding: 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero-bg.png') center/cover no-repeat;
    opacity: 0.75;
    filter: blur(2px);
    transform: scale(1.05);
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.65), rgba(5, 5, 5, 0.9));
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin: 30px 0 50px;
    line-height: 1.2;
}

.cta-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* FAQ Section */
.faq {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    gap: 60px;
}

.faq-text {
    flex: 0.4;
}

.faq-text h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.faq-text p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.faq-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.faq-list {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-tags {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

.faq-tag {
    padding: 7px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.faq-tag-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 25px;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    font-size: 1rem;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-content {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.underline {
    text-decoration: underline;
    color: white;
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Enhanced Hover Effects */
.project-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    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(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
}

/* Button Enhancements */
.btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-glass {
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

/* Navbar Animation */
.navbar {
    transition: all 0.3s ease;
}

.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Text Animation */
.hero-content h1 {
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease-out;
}

/* Stats Counter Animation */
.stat-number {
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Tag Hover Effects */
.tag,
.pill {
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover,
.pill:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Animation Helpers */
body:not(.aos-ready) .service-card,
body:not(.aos-ready) .project-card,
body:not(.aos-ready) .testimonial-card,
body:not(.aos-ready) .about-text,
body:not(.aos-ready) .stats-card,
body:not(.aos-ready) .faq-item,
body:not(.aos-ready) .exp-item {
    opacity: 0;
    transform: translateY(40px);
}

.aos-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.aos-animate.aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Reveal Animation */
.project-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Parallax Effect */
.hero-bg {
    will-change: transform;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Text Reveal Animation */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealText 0.8s ease-out forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cursor Effect (Optional - can be enabled via JS) */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    display: none;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    z-index: 10000;
    transform-origin: left;
    transition: transform 0.1s ease;
}

@media (max-width: 768px) {
    .stats-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .faq-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader.fade-out {
    transform: translateY(-100%);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 300px;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 0.2s;
}

.loader-progress-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s linear;
}

.loader-percentage {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: monospace;
    margin-top: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Project Info Overlay - Hidden by default, shown when active */
.project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 10;
}

.project-card.active .project-info {
    opacity: 1;
    visibility: visible;
}

.project-card.active img {
    filter: blur(8px);
    transform: scale(1.1);
}

.project-card.active .project-overlay {
    opacity: 0;
    pointer-events: none;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.project-description {
    font-size: 1.1rem;
    color: #d0d0d0;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
}

/* Close button for project info */
.close-project-info {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.close-project-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Enhanced 3D Tilt & Glare */
.project-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0) 80%);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    mix-blend-mode: overlay;
}

/* CTA Social Icons */
.cta-social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cta-social-icons .social-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.cta-social-icons .social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

.icon-separator {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}