/* Modern Styles and Animations - Refined Minimalist Design */
:root {
    --primary-color: #225E56;
    --secondary-color: #5D5F5F;
    --accent-color: #F57141;
    --text-color: #5D5F5F;
    --heading-color: #000000;
    --light-bg: #EEF0F0;
    --white: #FFFFFF;
    --subtle-gray: #dfe1e1;
    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'San Francisco', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 72px;
    scroll-behavior: smooth;
    background-color: var(--white);
    line-height: 1.5;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-img {
    width: auto;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.95);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.022em;
    color: var(--heading-color);
}

p {
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* SVG Icons - Apple-like Styling */
.service-icon, .card-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-container:hover .service-icon,
.card:hover .card-icon {
    color: var(--accent-color);
    transform: scale(1.05);
}

.service-icon path, .card-icon path,
.service-icon rect, .card-icon rect {
    stroke: currentColor;
}

.home-section-image{
    position: absolute;
    top: 5%;
    right: 0;
    z-index: 1;
}

/* Hero Section with Parallax */
.hero {
    background: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245,245,247,0.3), rgba(245,245,247,0.1));
}

/* Refined parallax effect */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    transform: translateZ(-1px) scale(1.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-color);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    color: var(--secondary-color);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* Service Cards */
.service-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.8rem;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    border: 1px solid var(--subtle-gray);
}

.service-container.animate {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

/* Buttons */
.btn-orange {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.85rem 1.6rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-size: 0.95rem;
}

.btn-orange:hover {
    background-color: #e05f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 113, 65, 0.25);
    color: var(--white);
}

.btn-outline-light {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.85rem 1.6rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-size: 0.95rem;
}

.btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 40px 0;
    transform: translateY(30px);
    opacity: 0;
    border: 1px solid var(--subtle-gray);
}

.contact-form.animate {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.form-control {
    border: 1px solid var(--subtle-gray);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    font-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.4;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(245, 113, 65, 0.1);
    background-color: white;
    outline: none;
}

/* Footer */
.footer {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-left: 0;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Social media links */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--subtle-gray);
    color: var(--text-color);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Section Spacing */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

section h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    color: var(--heading-color);
    letter-spacing: -0.03em;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.clean-block {
    padding: 100px 0;
}

/* Tech Stack Section */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2.5rem;
    padding: 3rem 0;
}

.tech-item {
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.tech-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.tech-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stats Section */
.stats-section {
    background: var(--light-bg);
    padding: 5.5rem 0;
    position: relative;
    border-top: 1px solid var(--subtle-gray);
    border-bottom: 1px solid var(--subtle-gray);
}

.stat-item {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
}

.stat-item.animate {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
    letter-spacing: -0.03em;
}

.stat-item p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(34, 94, 86, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* About Section */
.clean-block.it-section {
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
}

.about-content h5 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.about-content p {
    color: var(--text-color);
}

.about-content i {
    color: var(--primary-color);
}

/* About content animation */
.about-content {
    opacity: 0;
    transform: translateX(20px);
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-image {
    opacity: 0;
    transform: translateX(-20px);
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Contact section */
.contact-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

/* Responsive adjustments */
img.img-fluid {
    max-width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

/* Responsive adjustments */
img.img-fluid-hero {
    max-width: 100%;
    min-height: 50vh;
    height: auto;
    transition: all 0.5s ease;
}

/* Animated feature lists */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.feature-list.animate li {
    opacity: 1;
    transform: translateX(0);
}

.feature-list.animate li:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-list.animate li:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-list.animate li:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-list.animate li:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-list.animate li:nth-child(5) {
    transition-delay: 0.5s;
}

.feature-list.animate li:nth-child(6) {
    transition-delay: 0.6s;
}

/* Development Section */
.development-section {
    padding: 120px 0;
    background-color: var(--white);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header.centered {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 48px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
}

.section-header h3 {
    font-size: 32px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.overline {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

/* Development Hero */
.development-hero {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.text-wrapper {
    flex: 1;
}

.image-wrapper {
    flex: 1;
}

.text-wrapper h3 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-wrapper p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--secondary-color);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 120px;
}

.tech-category {
    display: flex;
    background-color: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tech-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.tech-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-category:hover .tech-image {
    transform: scale(1.05);
}

.tech-info h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.tech-info p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: auto;
}

.tech-pills span {
    background-color: rgba(34, 94, 86, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 100px;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
}

.arrow {
    transition: transform 0.3s ease;
    margin-left: 6px;
    display: inline-block;
}

.learn-more:hover .arrow {
    transform: translateX(5px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 120px;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--subtle-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: rgba(34, 94, 86, 0.1);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-card p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-container span {
    background-color: rgba(34, 94, 86, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 100px;
}

/* Workflow Section */
.workflow-section {
    background-color: var(--light-bg);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 120px;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-container {
    background-color: var(--primary-color);
    color: white;
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
}

.cta-container h3 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    background-color: white;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .development-section {
        padding: 80px 0;
    }
    
    .development-hero {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 40px;
    }
    
    .text-wrapper h3 {
        font-size: 32px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 80px;
    }
    
    .workflow-section {
        padding: 40px;
        margin-bottom: 80px;
    }
    
    .cta-container {
        padding: 60px 40px;
    }
    
    .cta-container h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .tech-category {
        flex-direction: column;
        height: auto;
    }
    
    .tech-visual {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .text-wrapper h3 {
        font-size: 28px;
    }
    
    .cta-container h3 {
        font-size: 28px;
    }
    
    .cta-container p {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }
    .logo-img {
        height: 32px;
    }
}

@media (max-width: 576px) {
    .development-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .text-wrapper h3 {
        font-size: 24px;
    }
    
    .tech-info {
        padding: 24px;
    }
    
    .tech-info h3 {
        font-size: 24px;
    }
    
    .workflow-section {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 24px;
        width: 30px;
    }
    
    .step-content h4 {
        font-size: 18px;
    }
    
    .cta-container {
        padding: 40px 20px;
    }
    
    .cta-container h3 {
        font-size: 24px;
    }
}

/* Hero Section Enhancements */
.badge {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    letter-spacing: 0.03em;
    border-radius: 20px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.key-points {
    margin: 1.5rem 0 2rem;
}

.key-points p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.key-points i {
    color: var(--primary-color);
    min-width: 20px;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.trust-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: float 3s ease-in-out infinite;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.badge-inner {
    text-align: center;
    padding: 0.5rem;
}

.badge-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    line-height: 1.2;
}

.badge-text span {
    color: var(--text-color);
    font-size: 0.7rem;
}

.badge-text strong {
    color: var(--primary-color);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* IT Support Section Enhancements */
.support-stats {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.8rem;
    box-shadow: var(--box-shadow);
    margin: 2.5rem 0;
    border: 1px solid var(--subtle-gray);
}

.stat-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--subtle-gray);
}

.testimonial-icon {
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--heading-color);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .trust-badge {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: 10px;
    }
    
    .badge-icon {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .stat-highlight {
        font-size: 2rem;
    }
    
    .support-stats {
        padding: 1.8rem;
    }
}

/* Enhanced Development Section */
.gradient-badge {
    background: linear-gradient(135deg, var(--primary-color), #1b8079);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #1b8079);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
    display: inline-block;
}

.dev-hero-container {
    margin-bottom: 5rem;
    position: relative;
}

.dev-hero-content {
    padding: 1rem 0;
}

.dev-approach-cards {
    margin: 2rem 0;
}

.approach-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid var(--subtle-gray);
}

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

.approach-icon {
    margin-right: 1rem;
    background: rgba(34, 94, 86, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.approach-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.dev-hero-art {
    position: relative;
    padding: 1rem;
}

.main-art {
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.art-floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 1px solid var(--subtle-gray);
}

.element-1 {
    top: 10%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.element-2 {
    bottom: 15%;
    right: 5%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.element-3 {
    top: 20%;
    left: 5%;
    animation: float 4.5s ease-in-out infinite 1s;
}

.element-4 {
    bottom: 10%;
    left: 15%;
    animation: float 6s ease-in-out infinite 1.5s;
}

/* Tech Stack Showcase */
.tech-stack-showcase {
    margin-bottom: 5rem;
}

.stack-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--subtle-gray);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stack-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stack-header {
    background: linear-gradient(to right, #f8f9fa, #f1f3f5);
    padding: 1.5rem;
    border-bottom: 1px solid var(--subtle-gray);
    display: flex;
    align-items: center;
}

.stack-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.stack-header h4 {
    margin-bottom: 0;
    font-weight: 600;
}

.stack-content {
    padding: 1.5rem;
}

.stack-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.stack-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.tech-ball {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 0.8rem;
    display: inline-block;
}

.tech-ball.react {
    background: #61dafb;
}

.tech-ball.vue {
    background: #42b883;
}

.tech-ball.next {
    background: #000000;
}

.tech-ball.nuxt {
    background: #00dc82;
}

.tech-ball.typescript {
    background: #3178c6;
}

.tech-ball.tailwind {
    background: #38bdf8;
}

.tech-ball.node {
    background: #68a063;
}

.tech-ball.nest {
    background: #e0234e;
}

.tech-ball.express {
    background: #000000;
}

.tech-ball.mongo {
    background: #47a248;
}

.tech-ball.postgres {
    background: #336791;
}

.tech-ball.redis {
    background: #dc382d;
}

.stack-illustration {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.stack-illustration img {
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.stack-container:hover .stack-illustration img {
    transform: scale(1.05);
}

/* Service Cards */
.dev-services-showcase {
    margin-bottom: 5rem;
}

.service-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    height: 100%;
    border: 1px solid var(--subtle-gray);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.service-art {
    overflow: hidden;
    height: 200px;
}

.service-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-art img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.8rem;
}

.service-content h4 {
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-color);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Development Process */
.dev-workflow {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--subtle-gray);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.process-list {
    list-style-type: none;
    padding-left: 0;
}

.process-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.process-list li:last-child {
    margin-bottom: 0;
}

.process-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1.5rem;
    opacity: 0.2;
    line-height: 1;
}

.process-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-content p {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.process-art {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-art img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dev-workflow:hover .process-art img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .gradient-text {
        font-size: 1.8rem;
    }
    
    .dev-hero-container {
        margin-bottom: 3rem;
    }
    
    .approach-card {
        padding: 1.2rem;
    }
    
    .approach-icon {
        padding: 0.6rem;
    }
    
    .stack-header {
        padding: 1.2rem;
    }
    
    .stack-content {
        padding: 1.2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h4 {
        font-size: 1.2rem;
    }
    
    .art-floating-element {
        width: 50px;
        height: 50px;
    }
    
    .dev-workflow {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 1.6rem;
    }
    
    .approach-content h5 {
        font-size: 1rem;
    }
    
    .service-art {
        height: 180px;
    }
    
    .process-number {
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .art-floating-element {
        width: 40px;
        height: 40px;
    }
    
    .element-1 img, .element-2 img, .element-3 img, .element-4 img {
        width: 20px;
    }
}

@media (max-width: 576px) {
    .approach-card {
        padding: 1rem;
    }
    
    .approach-icon {
        padding: 0.5rem;
        margin-right: 0.8rem;
    }
    
    .service-art {
        height: 160px;
    }
    
    .service-content {
        padding: 1.2rem;
    }
    
    .dev-workflow {
        padding: 1.5rem;
    }
    
    .process-list li {
        margin-bottom: 1.5rem;
    }
}

/* Process Section - New Apple-inspired Timeline */
.process-section {
    background-color: var(--white);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--subtle-gray);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 36px;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(34, 94, 86, 0.2), 
        rgba(34, 94, 86, 0.8), 
        rgba(245, 113, 65, 0.8));
    z-index: 1;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-item:hover {
    transform: translateX(8px);
}

.process-icon {
    width: 72px;
    height: 72px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(34, 94, 86, 0.12);
    border: 1px solid rgba(34, 94, 86, 0.1);
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-item:hover .process-icon {
    color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(34, 94, 86, 0.18);
}

.process-content {
    background-color: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--subtle-gray);
}

.process-item:hover .process-content {
    background-color: rgba(34, 94, 86, 0.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.process-step {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.process-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.process-content p {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive adjustments for process section */
@media (max-width: 991px) {
    .process-section {
        padding: 40px;
        margin-bottom: 80px;
    }
    
    .process-timeline {
        gap: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-content {
        padding: 24px;
    }
    
    .process-step {
        font-size: 32px;
    }
    
    .process-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .process-item {
        gap: 20px;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
    }
    
    .process-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .process-step {
        font-size: 28px;
    }
    
    .process-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 30px 20px;
    }
    
    .process-timeline {
        gap: 24px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-icon {
        width: 40px;
        height: 40px;
    }
    
    .process-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .process-item {
        gap: 15px;
    }
    
    .process-content {
        padding: 16px;
    }
    
    .process-step {
        font-size: 24px;
    }
    
    .process-content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .process-content p {
        font-size: 14px;
    }
}

/* Infrastructure Services Section */
.feature-section {
    padding: 120px 0;
    background-color: var(--white);
    overflow: hidden;
}

.services-hero {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.services-visual {
    flex: 1;
}

.services-intro {
    flex: 1;
}

.services-intro h3 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.infra-card {
    background-color: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    padding: 40px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--subtle-gray);
}

.infra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: rgba(34, 94, 86, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.infra-card:hover .card-icon-wrapper {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--heading-color);
}

.card-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-pills span {
    background-color: rgba(34, 94, 86, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 100px;
}

.infrastructure-highlights {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-color), rgba(245, 113, 65, 0.8));
    border-radius: 24px;
    padding: 60px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-item {
    text-align: center;
    flex: 1;
}

.highlight-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.highlight-text {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive adjustments for infrastructure section */
@media (max-width: 1200px) {
    .infrastructure-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .feature-section {
        padding: 80px 0;
    }

    .services-hero {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 80px;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .infra-card {
        padding: 30px;
    }

    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }

    .infrastructure-highlights {
        padding: 40px 30px;
        flex-direction: column;
        gap: 30px;
    }

    .highlight-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .infra-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-icon-wrapper {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .card-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .feature-section {
        padding: 60px 0;
    }

    .infrastructure-highlights {
        padding: 30px 20px;
    }

    .highlight-number {
        font-size: 32px;
    }

    .highlight-text {
        font-size: 16px;
    }
}

/* New Infrastructure Section Styles */
.infra-section {
    padding: 120px 0;
    background-color: var(--white);
    overflow: hidden;
}

.service-showcase {
    margin-bottom: 80px;
}

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

.hero-illustration {
    width: 480px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-hero:hover .hero-illustration {
    transform: scale(1.02);
}

.service-hero-text {
    flex: 1;
}

.service-hero-text h3 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 32px;
    max-width: 90%;
}

.service-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Dual Cards Style */
.dual-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.infra-dual-card {
    background-color: var(--light-bg);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--subtle-gray);
    height: 100%;
}

.infra-dual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.dual-card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(34, 94, 86, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.infra-dual-card:hover .dual-card-icon {
    background-color: var(--primary-color);
    color: white;
}

.dual-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dual-card-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.dual-card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.feature-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-tags li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--heading-color);
    line-height: 1.5;
}

.feature-tags li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.arrow-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: color 0.3s ease;
}

.arrow-link:hover {
    color: var(--accent-color);
}

.arrow-link .arrow {
    transition: transform 0.3s ease;
    margin-left: 6px;
    display: inline-block;
}

.arrow-link:hover .arrow {
    transform: translateX(5px);
}

/* Service Grid */
.service-grid {
    margin-bottom: 60px;
}

.infra-card.wide {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--subtle-gray);
}

.infra-card.wide:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Service Tabs */
.service-tabs {
    background-color: var(--light-bg);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    border: 1px solid var(--subtle-gray);
}

.tabs-header {
    padding: 30px 40px;
    background: var(--accent-color);
}

.tabs-header h3 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}

.tabs-container {
    padding: 40px;
}

.tabs-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--subtle-gray);
    padding-bottom: 20px;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-button svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.tab-button.active {
    background-color: rgba(34, 94, 86, 0.1);
    color: var(--primary-color);
}

.tab-button.active svg {
    color: var(--primary-color);
}

.tab-button:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.tab-content.active {
    display: grid;
}

.tab-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tab-text h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.tab-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.tab-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tab-features li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: var(--heading-color);
    line-height: 1.5;
}

.tab-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tab-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(34, 94, 86, 0.2);
}

.tab-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 94, 86, 0.3);
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .dual-cards {
        gap: 30px;
    }
    
    .service-hero {
        gap: 40px;
    }
    
    .hero-illustration {
        width: 400px;
    }
}

@media (max-width: 991px) {
    .infra-section {
        padding: 80px 0;
    }
    
    .service-hero {
        flex-direction: column-reverse;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .hero-illustration {
        width: 100%;
        max-width: 480px;
    }
    
    .service-hero-text h3 {
        font-size: 32px;
    }
    
    .dual-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-stats {
        gap: 30px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .infra-card.wide {
        flex-direction: column;
    }
    
    .card-icon-wrapper {
        margin-bottom: 20px;
    }
    
    .tab-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tab-image {
        order: -1;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .service-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .stat-value {
        margin-bottom: 0;
        margin-right: 8px;
    }
    
    .feature-tags, .tab-features {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-button {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .infra-section {
        padding: 60px 0;
    }
    
    .infra-dual-card, .infra-card.wide, .tabs-container {
        padding: 30px 20px;
    }
    
    .tabs-header {
        padding: 20px;
    }
    
    .tabs-header h3 {
        font-size: 24px;
    }
    
    .service-hero-text h3 {
        font-size: 28px;
    }
    
    .service-hero-text p {
        font-size: 16px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .dual-card-icon, .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }
} 

.curved-shape {
    width: 50vw; /* Half the screen width */
    height: 100vh; /* Full screen height */
    background-color: #3498db; /* Blue color for visibility */
    border-top-left-radius: 50% 20%; /* Gentle curve on the top left */
    border-bottom-left-radius: 50% 20%; /* Gentle curve on the bottom left */
    transform: skewX(-10deg); /* Slight skew to create a more dynamic, odd effect */
  }

/* Update stepper form to match website color scheme */
.stepper-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    color: var(--text-color);
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--subtle-gray);
}

.stepper-progress {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.stepper-progress-bar {
    position: absolute;
    top: 24px;
    left: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    z-index: 1;
}

.stepper-steps {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.stepper-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--subtle-gray);
    z-index: 0;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 33.333%;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--subtle-gray);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.step-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.stepper-step.active .step-indicator,
.stepper-step.completed .step-indicator {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.stepper-step.active .step-label,
.stepper-step.completed .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-content.active {
    display: block;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.step-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Service options styling */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-option {
    position: relative;
}

.service-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.service-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background-color: var(--light-bg);
    border: 1px solid var(--subtle-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    height: 100%;
    color: var(--text-color);
}

.service-label svg {
    margin-bottom: 10px;
    color: var(--primary-color);
    stroke: var(--primary-color);
    stroke-width: 1.5;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.service-radio:checked + .service-label {
    background-color: rgba(34, 94, 86, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.service-radio:checked + .service-label svg {
    color: var(--accent-color);
    stroke: var(--accent-color);
    transform: scale(1.05);
}

/* Topic options styling */
.topic-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.topic-option {
    position: relative;
}

.topic-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.topic-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--light-bg);
    border: 1px solid var(--subtle-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    height: 100%;
    color: var(--text-color);
    font-weight: 500;
}

.topic-radio:checked + .topic-label {
    background-color: rgba(34, 94, 86, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    color: var(--primary-color);
}

/* Contact method styling */
.contact-method-tabs {
    margin-bottom: 1.5rem;
}

.contact-method-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--light-bg);
    border: 1px solid var(--subtle-gray);
    border-radius: 20px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-weight: 500;
}

.contact-method svg {
    color: var(--primary-color);
    stroke: var(--primary-color);
    stroke-width: 1.5;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.contact-method.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(34, 94, 86, 0.25);
}

.contact-method.active svg {
    color: var(--white);
    stroke: var(--white);
}

.contact-method-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.contact-method-content.active {
    display: block;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

/* Only center the button if it's the only one in the container */
.step-navigation:has(.next-step:only-child) {
    justify-content: center;
}

.step-navigation .btn-orange {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    padding: 0.85rem 1.6rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-size: 0.95rem;
}

.step-navigation .btn-orange:hover {
    background-color: #e05f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 113, 65, 0.25);
}

.step-navigation .btn-outline-light {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.85rem 1.6rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-size: 0.95rem;
}

.step-navigation .btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--white);
}

.calendly-container {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    min-height: 350px;
    border: 1px solid var(--subtle-gray);
}

.calendly-container p {
    color: var(--text-color);
    margin-top: 1rem;
}

.calendly-inline-widget {
    min-height: 300px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Form controls */
.contact-form .form-control {
    border: 1px solid var(--subtle-gray);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    font-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.4;
    color: var(--text-color);
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(245, 113, 65, 0.1);
    background-color: white;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--secondary-color);
    opacity: 0.7;
}

main.page {
    padding-top: 0;
}