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

/* CSS Custom Properties (Design System) */
:root {
    /* Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 30%, 20%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 30%, 20%);
    --primary: hsl(220, 100%, 20%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(220, 20%, 95%);
    --secondary-foreground: hsl(220, 30%, 20%);
    --muted: hsl(220, 20%, 95%);
    --muted-foreground: hsl(220, 20%, 50%);
    --accent: hsl(220, 100%, 20%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(220, 20%, 90%);
    --ring: hsl(220, 100%, 20%);

    /* Custom design tokens */
    --navy: hsl(220, 100%, 20%);
    --navy-foreground: hsl(0, 0%, 100%);
    --blue-light: hsl(220, 80%, 96%);
    --blue-light-foreground: hsl(220, 30%, 20%);
    --blue-soft: hsl(220, 60%, 92%);
    --blue-soft-foreground: hsl(220, 30%, 20%);
    --blue-accent: hsl(220, 100%, 60%);
    --blue-accent-foreground: hsl(0, 0%, 100%);

    /* Shadows */
    --shadow-soft: 0 4px 6px -1px hsl(220, 100%, 20%, 0.1);
    --shadow-medium: 0 10px 15px -3px hsl(220, 100%, 20%, 0.15);
    --shadow-large: 0 25px 50px -12px hsl(220, 100%, 20%, 0.25);
    --shadow-blue: 0 10px 30px -10px hsl(220, 100%, 60%, 0.3);

    /* Typography */
    --font-sora: 'Sora', sans-serif;
    
    /* Spacing */
    --radius: 0.5rem;
}

/* Base typography */
body {
    font-family: var(--font-sora);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsla(220, 20%, 90%, 0.5);
    animation: slideUp 0.8s ease-out;
}

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

.nav-brand .nav-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .showcase-image img {
          height: 64vw !important;
}
}

/* Main content */
.main {
    /* padding-top: 5rem; */
}

/* Hero Section */
.hero {
    padding-top: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy), hsl(220, 100%, 30%));
    color: white;
    position: relative;
    overflow: hidden;
}

.floating-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: hsla(0, 0%, 100%, 0.1);
}

.circle-1 {
    width: 8rem;
    height: 8rem;
    top: 25%;
    left: 25%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 6rem;
    height: 6rem;
    top: 33%;
    right: 33%;
    background-color: hsla(0, 0%, 100%, 0.05);
    animation: float 6s ease-in-out infinite 2s;
}

.circle-3 {
    width: 10rem;
    height: 10rem;
    bottom: 25%;
    left: 33%;
    background-color: hsla(0, 0%, 100%, 0.08);
    animation: float 8s ease-in-out infinite 4s;
}

.circle-4 {
    width: 5rem;
    height: 5rem;
    top: 50%;
    right: 25%;
    background-color: hsla(0, 0%, 100%, 0.12);
    animation: pulseSlow 4s ease-in-out infinite;
}

.circle-5 {
    width: 7rem;
    height: 7rem;
    bottom: 33%;
    right: 50%;
    background-color: hsla(0, 0%, 100%, 0.06);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    animation: slideUp 0.8s ease-out;
}

.hero-title {
    padding-top:1vw;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    /* margin-bottom: 2rem; */
    color: hsla(0, 0%, 100%, 0.8);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 1s ease-out;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
    animation: pulseSlow 4s ease-in-out infinite;
}

.hero-btn {
    background-color: white;
    color: var(--navy);
    border: none;
    margin-top: 1vw;
    padding: 0.7rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-large);
    animation: scaleIn 0.6s ease-out 0.6s both;
}

.hero-btn:hover {
    background-color: hsla(0, 0%, 100%, 0.9);
    transform: scale(1.05);
    box-shadow: var(--shadow-blue);
}

.hero-image {
    animation: slideLeft 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
    animation: float 6s ease-in-out infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsla(220, 30%, 20%, 0.7);
    max-width: 48rem;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.2s both;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--blue-light), var(--blue-soft));
    animation: fadeIn 1s ease-out;
}

@media (min-width: 1024px) {
    .services {
        padding: 5rem 0;
    }
}

.services-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

@media (min-width: 1024px) {
    .services-hero {
        grid-template-columns: 1fr 1fr;
    }
}

.services-text {
    animation: slideUp 0.8s ease-out;
}

.services-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .services-title {
        font-size: 1.875rem;
    }
}

.services-description {
    font-size: 1.125rem;
    color: hsla(220, 30%, 20%, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 1s ease-out;
}

.service-feature:nth-child(2) { animation-delay: 0.1s; }
.service-feature:nth-child(3) { animation-delay: 0.2s; }
.service-feature:nth-child(4) { animation-delay: 0.3s; }

.service-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--navy);
    border-radius: 50%;
    animation: pulseSlow 4s ease-in-out infinite;
}

.service-feature span {
    color: hsla(220, 30%, 20%, 0.8);
    font-weight: 500;
}

.services-image {
    animation: slideLeft 0.8s ease-out;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-blue);
    animation: float 6s ease-in-out infinite;
}

.section-content {
    margin-bottom: 8rem;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease-out;
}

@media (min-width: 1024px) {
    .content-title {
        font-size: 1.875rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.4rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    border-left: 4px solid hsla(220, 100%, 60%, 0.2);
    text-align: center;
    transition: all 0.5s ease;
    animation: scaleIn 0.6s ease-out;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-0.5rem) scale(1.05);
    box-shadow: var(--shadow-blue);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: hsla(220, 100%, 20%, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: hsla(220, 100%, 20%, 0.2);
}

.service-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    color: hsla(220, 30%, 20%, 0.7);
    line-height: 1.6;
}

.specialized-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .specialized-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

.specialized-card {
    background-color: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    border-left: 4px solid hsla(220, 100%, 60%, 0.3);
    transition: all 0.5s ease;
}

.specialized-card:hover {
    box-shadow: var(--shadow-blue);
}

.specialized-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.specialized-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: hsla(220, 100%, 20%, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.specialized-card:hover .specialized-icon {
    background-color: hsla(220, 100%, 20%, 0.2);
}

.specialized-icon .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent);
}

.specialized-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.3s ease;
}

.specialized-card:hover .specialized-title {
    color: var(--primary);
}

.specialized-description {
    color: hsla(220, 30%, 20%, 0.7);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-soft));
    animation: fadeIn 1s ease-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    animation: scaleIn 0.6s ease-out;
}

.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-card:nth-child(4) { animation-delay: 0.3s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: hsla(220, 30%, 20%, 0.7);
    font-weight: 500;
    font-size: 1.125rem;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

@media (min-width: 1024px) {
    .portfolio-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

.showcase-image {
    animation: slideUp 0.8s ease-out;
}

.showcase-image img {
    width: 100%;
    height: 35vw;
    border-radius: 1rem;
    box-shadow: var(--shadow-blue);
    animation: float 6s ease-in-out infinite;
}

.showcase-content {
    animation: slideLeft 0.8s ease-out;
}

.showcase-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .showcase-title {
        font-size: 1.875rem;
    }
}

.showcase-description {
    color: hsla(220, 30%, 20%, 0.7);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.showcase-features {
    display: grid;
    gap: 1rem;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: hsla(220, 100%, 20%, 0.05);
    border-radius: 0.5rem;
    animation: fadeIn 1s ease-out;
}

.showcase-feature:nth-child(2) { animation-delay: 0.1s; }
.showcase-feature:nth-child(3) { animation-delay: 0.2s; }
.showcase-feature:nth-child(4) { animation-delay: 0.3s; }

.showcase-feature .feature-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--navy);
    border-radius: 50%;
    animation: pulseSlow 4s ease-in-out infinite;
}

.showcase-feature span {
    color: hsla(220, 30%, 20%, 0.8);
    font-weight: 500;
}

.gallery-section {
    margin-bottom: 6rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out;
}

@media (min-width: 1024px) {
    .gallery-title {
        font-size: 1.875rem;
    }
}

.gallery-subtitle {
    color: hsla(220, 30%, 20%, 0.7);
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.2s both;
}

.gallery-image {
    animation: scaleIn 0.6s ease-out;
}

.gallery-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
    max-width: 60rem;
    margin: 0 auto;
    display: block;
    animation: float 6s ease-in-out infinite;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    background-color: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    border-left: 4px solid hsla(220, 100%, 60%, 0.2);
    transition: all 0.5s ease;
    animation: scaleIn 0.6s ease-out;
}

.project-card:nth-child(2) { animation-delay: 0.1s; }
.project-card:nth-child(3) { animation-delay: 0.2s; }
.project-card:nth-child(4) { animation-delay: 0.3s; }

.project-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-blue);
}

.project-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--primary);
}

.project-category {
    background-color: hsla(220, 100%, 20%, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-card:hover .project-category {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.project-description {
    color: hsla(220, 30%, 20%, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    border: 1px solid hsla(220, 100%, 20%, 0.3);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background-color: hsla(220, 100%, 20%, 0.1);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--blue-soft), var(--blue-light));
    animation: fadeIn 1s ease-out;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantage-card {
    background-color: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    border-left: 4px solid hsla(220, 100%, 60%, 0.25);
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out;
}

.advantage-card:nth-child(2) { animation-delay: 0.1s; }
.advantage-card:nth-child(3) { animation-delay: 0.2s; }
.advantage-card:nth-child(4) { animation-delay: 0.3s; }
.advantage-card:nth-child(5) { animation-delay: 0.4s; }
.advantage-card:nth-child(6) { animation-delay: 0.5s; }

.advantage-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-blue);
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.advantage-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsla(220, 100%, 20%, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.advantage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.advantage-highlight {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.advantage-description {
    color: hsla(220, 30%, 20%, 0.7);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    position: relative;
    background: linear-gradient(to right, hsla(220, 100%, 60%, 0.05), transparent);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .process-section {
        padding: 3rem;
    }
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideUp 0.8s ease-out;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, hsla(220, 100%, 60%, 0.1), hsla(220, 100%, 20%, 0.1));
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.badge-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: linear-gradient(to right, var(--blue-accent), var(--primary));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.process-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-accent);
}

.process-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .process-title {
        font-size: 3rem;
    }
}

.process-subtitle {
    font-size: 1.25rem;
    color: hsla(220, 30%, 20%, 0.7);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

.process-timeline {
    position: relative;
    max-width: 64rem;
    margin: 0 auto 5rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary), var(--blue-accent), var(--primary));
    transform: translateX(-50%);
    opacity: 0.2;
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.process-step:nth-child(2) { animation-delay: 0.15s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.45s; }
.process-step:nth-child(5) { animation-delay: 0.6s; }
.process-step:nth-child(6) { animation-delay: 0.75s; }
.process-step:nth-child(7) { animation-delay: 0.9s; }

.step-left {
    flex-direction: row;
}

.step-right {
    flex-direction: row-reverse;
}

.step-card {
    width: 38%;
    display: flex;
    gap: 1rem;
    background: linear-gradient(to bottom right, var(--background), hsla(220, 80%, 96%, 0.3));
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid hsla(220, 100%, 60%, 0.2);
    transition: all 0.5s ease;
}

.step-left .step-card {
    margin-right: 2rem;
}

.step-right .step-card {
    margin-left: 2rem;
}

.step-card:hover {
    box-shadow: var(--shadow-blue);
    transform: scale(1.05);
}

.step-card:hover .step-number {
    transform: rotate(12deg);
}

.step-number {
    /* width: 3.4rem !important; */
   height: 3rem;
    padding:0 20px ;
    background: linear-gradient(to bottom right, var(--primary), var(--blue-accent));
    color: var(--primary-foreground);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.step-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: var(--primary);
}

.step-accent {
    color: var(--blue-accent);
}

.step-phase {
    font-size: 0.875rem;
    color: hsla(220, 30%, 20%, 0.6);
}

.step-connector {
    width: 16.67%;
    display: flex;
    justify-content: center;
    position: relative;
}

.connector-dot {
    width: 1.5rem;
    
    height: 1.5rem;
    background: linear-gradient(to bottom right, var(--primary), var(--blue-accent));
    border-radius: 50%;
    border: 4px solid var(--background);
    box-shadow: var(--shadow-medium);
    z-index: 10;
    transition: transform 0.3s ease;
}

.process-step:hover .connector-dot {
    transform: scale(1.25);
}

.process-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: scaleIn 0.6s ease-out;
}

@media (min-width: 1024px) {
    .process-metrics {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to bottom right, var(--blue-light), var(--blue-soft));
    border-radius: 1rem;
    border: 1px solid hsla(220, 100%, 60%, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover {
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

.metric-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: hsla(220, 30%, 20%, 0.7);
    margin-bottom: 0.75rem;
}

.metric-bar {
    width: 2rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--primary), var(--blue-accent));
    border-radius: 0.125rem;
    margin: 0 auto;
}

.process-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.4s; }

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, hsla(220, 100%, 20%, 0.1), hsla(220, 100%, 60%, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.benefit-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.benefit-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: hsla(220, 30%, 20%, 0.7);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-container {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px hsla(220, 100%, 20%, 0.2);
}

.form-submit {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: hsl(220, 100%, 25%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsla(220, 100%, 20%, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-content-text h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-detail {
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--navy-foreground);
    padding: 3rem 0;
    animation: fadeIn 1s ease-out;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section {
    animation: slideUp 0.8s ease-out;
}

.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.4s; }

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-note {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--navy-foreground);
    transform: scale(1.05);
}

.footer-separator {
    height: 1px;
    background-color: hsla(0, 0%, 100%, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--navy-foreground);
    transform: scale(1.05);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulseSlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes slideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideLeft {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes scaleIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-btn{
        margin-top: 4vw;

    }
    .hero-title {
        margin-top: 6vw;
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-title,
    .showcase-title,
    .gallery-title,
    .content-title {
        font-size: 1.25rem;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .process-timeline {
        display: none;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .specialized-services {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Process Steps - Alternative Layout */
@media (max-width: 768px) {
    .process-timeline {
        display: block;
        position: static;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .step-card {
        width: 100%;
        margin: 0;
    }
    
    .step-connector {
        display: none;
    }
}
  