/* Global Styles */
:root {
    --primary-color: #2D3436;
    --secondary-color: #0984E3;
    --accent-color: #00CEC9;
    --text-color: #2D3436;
    --light-bg: #F5F6FA;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #0984E3 0%, #00CEC9 100%);
    --gradient-dark: linear-gradient(135deg, #2D3436 0%, #4A5568 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection Color */
::selection {
    background: var(--secondary-color);
    color: var(--white);
}

/* Global Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease backwards;
}

/* Section Headers Enhancement */
section h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
    width: 100%;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 1001;
}

.soft {
    color: var(--primary-color);
}

.dev {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(9, 132, 227, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--secondary-color);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--secondary-color);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.95;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(255,255,255,0.1)" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    animation: movePattern 30s linear infinite;
}

@keyframes movePattern {
    from { transform: translate(0, 0); }
    to { transform: translate(60px, 60px); }
}

/* Hero Content */
.hero-content {
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.title-highlight {
    color: var(--accent-color);
    position: relative;
}

.title-gradient {
    background: linear-gradient(135deg, #00CEC9 0%, #74B9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 1s backwards;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--light-bg);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-trust {
    animation: fadeInUp 1s ease 1.2s backwards;
}

.trust-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-logo {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.graphic-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s infinite;
}

.graphic-element.primary {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 206, 201, 0.3) 100%);
    top: 10%;
    right: 10%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.graphic-element.secondary {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    top: 40%;
    right: 40%;
    animation-delay: -2s;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.graphic-element.accent {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    top: 70%;
    right: 20%;
    animation-delay: -4s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatIcon 8s infinite;
}

.icon-item:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.icon-item:nth-child(2) {
    top: 35%;
    left: 70%;
    animation-delay: -2s;
}

.icon-item:nth-child(3) {
    top: 65%;
    left: 15%;
    animation-delay: -4s;
}

.icon-item:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: -6s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Services Section */
.services {
    padding: 100px 5%;
    background: var(--white);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Process Section */
.process {
    padding: 100px 5%;
    background: var(--light-bg);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 5%;
    background: var(--light-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.95;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.portfolio-overlay p {
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.case-study-btn {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.case-study-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Technologies Section */
.technologies {
    padding: 100px 5%;
    background: var(--white);
}

.tech-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.tech-category h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.tech-item:hover i {
    transform: translateY(-5px);
}



/* Testimonials Section */
.testimonials {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    min-width: 100%;
    padding: 0 1rem;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 1rem;
}

.testimonial-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.client-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.client-image:hover {
    transform: scale(1.05);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-info h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.client-info p {
    margin: 0 0 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #ffd700;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.rating i:hover {
    transform: scale(1.2);
}

.testimonial-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.prev-testimonial,
.next-testimonial {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.prev-testimonial {
    left: -22px;
}

.next-testimonial {
    right: -22px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.3s ease;
}

.dot:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
/* Hero Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .graphic-element.primary {
        width: 250px;
        height: 250px;
    }
    
    .graphic-element.secondary {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 0 4%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .trust-logos {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .graphic-element.primary {
        width: 200px;
        height: 200px;
        top: 15%;
        right: 15%;
    }
    
    .graphic-element.secondary {
        width: 140px;
        height: 140px;
        top: 45%;
        right: 45%;
    }
    
    .graphic-element.accent {
        width: 100px;
        height: 100px;
    }
    
    .icon-item {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .trust-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-logo {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .testimonials-wrapper {
        max-width: 900px;
        padding: 0 3rem;
    }
    
    .testimonial-item {
        padding: 2.5rem 2rem;
    }
    
    .testimonial-text p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 5%;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-wrapper {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .testimonial-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .testimonial-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .quote-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -17px;
        left: 25px;
    }
    
    .client-details {
        gap: 1rem;
    }
    
    .client-image {
        width: 50px;
        height: 50px;
    }
    
    .prev-testimonial,
    .next-testimonial {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .prev-testimonial {
        left: -20px;
    }
    
    .next-testimonial {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 3%;
    }
    
    .testimonials-wrapper {
        padding: 0 1rem;
    }
    
    .testimonial-item {
        padding: 1.5rem 1.2rem;
    }
    
    .testimonial-text p {
        font-size: 0.95rem;
    }
    
    .quote-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .client-info {
        gap: 1rem;
    }
    
    .client-image {
        width: 45px;
        height: 45px;
    }
    
    .prev-testimonial,
    .next-testimonial {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .prev-testimonial {
        left: -17px;
    }
    
    .next-testimonial {
        right: -17px;
    }
}

/* Team Section */
.team {
    padding: 100px 5%;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member:hover::before {
    opacity: 0.05;
}

.team-member > * {
    position: relative;
    z-index: 2;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 100px 5%;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    position: relative;
}

/* Contact form inputs */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(9, 132, 227, 0.1);
    background: var(--white);
}

/* Unified submit button styles (merged to avoid duplicates) */
.submit-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}


/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .soft {
    color: var(--white);
}

.footer-logo .dev {
    color: var(--accent-color);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-wrapper {
        max-width: 900px;
        padding: 0 3rem;
    }
    
    .testimonial-item {
        padding: 2rem 1.8rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

/* Tablet Navigation */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 3%;
    }
    
    .nav-links a {
        margin-left: 1.5rem;
        font-size: 0.95rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 1rem;
        z-index: 1000;
        padding: 80px 5% calc(env(safe-area-inset-bottom, 24px) + 20px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 0;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-align: left;
        width: 100%;
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links:not(.active) a {
        display: none;
    }
    
    .nav-links.active a {
        display: block;
    }
    
    .nav-links a:hover {
        background: var(--light-bg);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links a::after {
        display: none;
    }
    

    
    .testimonials-wrapper {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .testimonial-item {
        min-width: 300px;
        max-width: 300px;
        padding: 1.8rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .testimonials-slider {
        gap: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .quote-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .client-details {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 1.2rem;
        padding: 0.8rem 0;
    }
    
    .client-details {
        text-align: center;
    }
    
    .client-details h4 {
        font-size: 1.1rem;
    }
    
    .client-details p {
        font-size: 0.9rem;
    }
    
    .prev-testimonial,
    .next-testimonial {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .prev-testimonial {
        left: -20px;
    }
    
    .next-testimonial {
        right: -20px;
    }
    
    .testimonial-controls {
        width: calc(100% - 2rem);
        left: 1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper {
        padding: 0 1rem;
    }
    
    .testimonial-item {
        padding: 1.5rem 1.2rem;
        margin: 0 0.3rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .quote-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .client-info {
        gap: 1rem;
    }
    
    .client-image {
        width: 50px;
        height: 50px;
    }
    
    .prev-testimonial,
    .next-testimonial {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .prev-testimonial {
        left: -17px;
    }
    
    .next-testimonial {
        right: -17px;
    }
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
