/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a0e9e;
    --secondary-color: #3a0b7e;
    --accent-color: #6b21d4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    gap: 15px;
    align-items: center;
}

.loader-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loader-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-circle:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Sleek Minimal Design */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1400px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Full-Screen Background Images Container */
.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out, transform 10s ease-out;
}

.hero-bg.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.05);
}

/* Fallback gradient for when images aren't loaded */
.hero-backgrounds::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-slider {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 2rem;
    opacity: 0;
    visibility: hidden;
    transition: none;
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: none;
    animation: slideZoomIn 0.8s ease-out forwards;
}

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

.slide .hero-title,
.slide .hero-subtitle,
.slide .btn {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide.active .hero-title {
    opacity: 1;
    transition: opacity 0.5s ease 0.2s;
}

.slide.active .hero-subtitle {
    opacity: 0.95;
    transition: opacity 0.5s ease 0.3s;
}

.slide.active .btn {
    opacity: 1;
    transition: opacity 0.5s ease 0.4s;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    min-height: 4.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.prev-slide:hover,
.next-slide:hover {
    background: white;
    color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Effects */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-light {
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Services Section */
.services-section,
.why-choose-section,
.process-section,
.project-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Floating Particles Animation */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    opacity: 0.08;
}

/* Particle 1 - Large organic blob */
.particle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 8%;
    left: 12%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: floatBlob1 18s ease-in-out infinite;
}

/* Particle 2 - Medium rounded blob */
.particle:nth-child(2) {
    width: 70px;
    height: 70px;
    top: 55%;
    right: 18%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    animation: floatBlob2 22s ease-in-out infinite;
}

/* Particle 3 - Large rounded blob */
.particle:nth-child(3) {
    width: 90px;
    height: 90px;
    bottom: 25%;
    left: 25%;
    background: radial-gradient(circle, var(--primary-color), var(--secondary-color));
    border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
    animation: floatBlob3 20s ease-in-out infinite;
}

/* Particle 4 - Small circle blob */
.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 25%;
    right: 35%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 48% 52% 68% 32% / 42% 54% 46% 58%;
    animation: floatBlob4 16s ease-in-out infinite;
}

/* Particle 5 - Medium organic blob */
.particle:nth-child(5) {
    width: 80px;
    height: 80px;
    bottom: 35%;
    right: 8%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 71% 29% 48% 52% / 44% 65% 35% 56%;
    animation: floatBlob5 24s ease-in-out infinite;
}

/* Particle 6 - Rounded blob */
.particle:nth-child(6) {
    width: 65px;
    height: 65px;
    top: 45%;
    left: 5%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 45% 55% 60% 40% / 58% 49% 51% 42%;
    animation: floatBlob6 19s ease-in-out infinite;
}

/* Particle 7 - Soft rounded blob */
.particle:nth-child(7) {
    width: 75px;
    height: 75px;
    top: 70%;
    right: 45%;
    background: linear-gradient(225deg, var(--secondary-color), var(--accent-color));
    border-radius: 56% 44% 47% 53% / 68% 39% 61% 32%;
    animation: floatBlob7 21s ease-in-out infinite;
}

/* Blob 1 - Organic morph and float */
@keyframes floatBlob1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
        opacity: 0.08;
    }
    33% {
        transform: translate(25px, -35px) scale(1.1);
        border-radius: 36% 64% 64% 36% / 64% 48% 52% 36%;
        opacity: 0.12;
    }
    66% {
        transform: translate(-15px, -60px) scale(0.95);
        border-radius: 49% 51% 48% 52% / 62% 34% 66% 38%;
        opacity: 0.06;
    }
}

/* Blob 2 - Gentle wave motion */
@keyframes floatBlob2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
        opacity: 0.08;
    }
    33% {
        transform: translate(-20px, 30px) scale(1.05);
        border-radius: 58% 42% 35% 65% / 48% 59% 41% 52%;
        opacity: 0.11;
    }
    66% {
        transform: translate(15px, 55px) scale(0.98);
        border-radius: 44% 56% 62% 38% / 55% 46% 54% 45%;
        opacity: 0.07;
    }
}

/* Blob 3 - Large organic float */
@keyframes floatBlob3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
        opacity: 0.08;
    }
    33% {
        transform: translate(30px, -40px) scale(1.12);
        border-radius: 55% 45% 39% 61% / 43% 68% 32% 57%;
        opacity: 0.13;
    }
    66% {
        transform: translate(-10px, -65px) scale(0.92);
        border-radius: 47% 53% 56% 44% / 59% 42% 58% 41%;
        opacity: 0.06;
    }
}

/* Blob 4 - Smooth drift */
@keyframes floatBlob4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 48% 52% 68% 32% / 42% 54% 46% 58%;
        opacity: 0.09;
    }
    33% {
        transform: translate(18px, -28px) scale(1.08);
        border-radius: 61% 39% 44% 56% / 58% 37% 63% 42%;
        opacity: 0.14;
    }
    66% {
        transform: translate(-12px, -48px) scale(0.96);
        border-radius: 52% 48% 59% 41% / 48% 62% 38% 52%;
        opacity: 0.07;
    }
}

/* Blob 5 - Flowing motion */
@keyframes floatBlob5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 71% 29% 48% 52% / 44% 65% 35% 56%;
        opacity: 0.07;
    }
    33% {
        transform: translate(-28px, 38px) scale(1.06);
        border-radius: 42% 58% 63% 37% / 51% 46% 54% 49%;
        opacity: 0.11;
    }
    66% {
        transform: translate(20px, 65px) scale(0.94);
        border-radius: 58% 42% 37% 63% / 66% 39% 61% 34%;
        opacity: 0.05;
    }
}

/* Blob 6 - Pulsing drift */
@keyframes floatBlob6 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 45% 55% 60% 40% / 58% 49% 51% 42%;
        opacity: 0.08;
    }
    33% {
        transform: translate(22px, -32px) scale(1.15);
        border-radius: 67% 33% 42% 58% / 45% 72% 28% 55%;
        opacity: 0.12;
    }
    66% {
        transform: translate(-18px, -52px) scale(0.90);
        border-radius: 39% 61% 54% 46% / 62% 35% 65% 38%;
        opacity: 0.06;
    }
}

/* Blob 7 - Soft wave */
@keyframes floatBlob7 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 56% 44% 47% 53% / 68% 39% 61% 32%;
        opacity: 0.08;
    }
    33% {
        transform: translate(32px, -25px) scale(1.04);
        border-radius: 43% 57% 68% 32% / 39% 58% 42% 61%;
        opacity: 0.10;
    }
    66% {
        transform: translate(-22px, -58px) scale(0.97);
        border-radius: 64% 36% 38% 62% / 53% 67% 33% 47%;
        opacity: 0.07;
    }
}

/* Pulse animation for variety */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.08;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.12;
    }
}

/* Section-specific particle variations */

/* Why Choose section - alternate gradients for variety */
.why-choose-section .particle:nth-child(2) {
    background: linear-gradient(225deg, var(--accent-color), var(--primary-color)) !important;
}

.why-choose-section .particle:nth-child(4) {
    background: linear-gradient(315deg, var(--primary-color), var(--accent-color)) !important;
}

.why-choose-section .particle:nth-child(6) {
    background: linear-gradient(270deg, var(--accent-color), var(--secondary-color)) !important;
}

/* Process section - add pulse to some blobs for emphasis */
.process-section .particle {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.25)) !important;
    opacity: 1 !important;
}

.process-section .particle:nth-child(1) {
    animation: floatBlob1 18s ease-in-out infinite, pulse 8s ease-in-out infinite !important;
}

.process-section .particle:nth-child(3) {
    animation: floatBlob3 20s ease-in-out infinite, pulse 10s ease-in-out infinite !important;
}

.process-section .particle:nth-child(5) {
    animation: floatBlob5 24s ease-in-out infinite, pulse 9s ease-in-out infinite !important;
}

/* Project section - slightly faster animations for energy */
.project-section .particle:nth-child(1) {
    animation: floatBlob1 15s ease-in-out infinite !important;
}

.project-section .particle:nth-child(2) {
    animation: floatBlob2 17s ease-in-out infinite !important;
}

.project-section .particle:nth-child(4) {
    animation: floatBlob4 14s ease-in-out infinite, pulse 7s ease-in-out infinite !important;
}

.services-section .container,
.why-choose-section .container,
.process-section .container,
.project-section .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card,
.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 14, 158, 0.15);
    border-color: var(--primary-color);
}

.feature-card {
    padding: 2.5rem 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3,
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p,
.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.feature-card h3 {
    font-size: 1.25rem;
}

.feature-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    margin: 0;
    opacity: 0.3;
}

/* Project Section */

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.project-form,
.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-info-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-info-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info-item a:hover {
    color: white;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

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

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Footer Contact Form */
.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.footer-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-contact-form .btn-footer {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.footer-contact-form .btn-footer:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-contact-form .btn-footer:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.footer-contact-form .form-message {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.footer-contact-form .form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
    display: block;
}

.footer-contact-form .form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}


.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.feature-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    stroke-width: 2;
}


/* Our Process Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.process-section .section-header h2,
.process-section .section-header p {
    color: white;
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 2px;
}

.process-step {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

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

.process-number {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.process-content {
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.process-content:hover {
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.3);
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    html {
        scroll-padding-top: 90px;
    }

    /* Reduce particle animations on mobile */
    .particle {
        opacity: 0.05 !important;
    }

    .particle:nth-child(1) {
        width: 60px !important;
        height: 60px !important;
    }

    .particle:nth-child(3) {
        width: 50px !important;
        height: 50px !important;
    }

    /* Hide most particles on mobile for performance */
    .particle:nth-child(2),
    .particle:nth-child(4),
    .particle:nth-child(5),
    .particle:nth-child(6),
    .particle:nth-child(7) {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        padding: 1.5rem 0;
        gap: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        max-height: calc(100vh - 73px);
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(74, 14, 158, 0.05);
        color: var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .navbar .container {
        padding: 1rem 20px;
    }

    .logo-img {
        height: 40px;
    }

    .footer-logo {
        height: 55px;
    }

    .hero-title {
        font-size: 2.5rem;
        min-height: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

    .process-timeline::before {
        left: 30px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step {
        padding-left: 90px;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 85px;
    }

    .navbar .container {
        padding: 0.5rem 15px;
    }

    .logo-img {
        height: 50px;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        min-height: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .slider-controls {
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .process-timeline::before {
        left: 20px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        left: -5px;
    }

    .process-step {
        padding-left: 70px;
        margin-bottom: 2rem;
    }

    .process-content {
        padding: 1.5rem 1.25rem;
    }

    .process-content h3 {
        font-size: 1.25rem;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
