@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Assistant:wght@300;400;500;600;700;800&display=swap');

html {
    overflow-x: hidden;
    width: 100%;
}

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

:root {
    --primary: #0F172A;
    --secondary: #1E40AF;
    --accent: #3B82F6;
    --light: #ffffff;
    --light-gray: #F8FAFC;
    --text: #0F172A;
    --text-gray: #475569;
    --gradient: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #60A5FA 100%);
    --shadow: 0 20px 60px rgba(30, 64, 175, 0.12);
}

body {
    font-family: 'Heebo', 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
    font-weight: 400;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 15px 40px;
    min-height: 100px;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .container {
    padding: 12px 40px;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px !important;
    max-width: 230px !important;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link i {
    font-size: 10px;
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 25px;
    width: 750px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    z-index: 1000;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mega-menu-item:hover {
    background: #F8FAFC;
    border-color: #1E40AF;
}

.mega-menu-item i {
    font-size: 28px;
    color: #1E40AF;
    min-width: 40px;
}

.mega-menu-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 5px 0;
    font-family: 'Heebo', sans-serif;
}

.mega-menu-item p {
    font-size: 13px;
    color: #475569;
    margin: 0;
    font-family: 'Assistant', sans-serif;
}

.nav-link {
    color: #0F172A;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #1E40AF;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-contact-icons {
    display: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0F172A;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 8s infinite ease-in-out;
}

.hero-particles::before {
    background: rgba(99, 102, 241, 0.2);
    top: 10%;
    left: 10%;
}

.hero-particles::after {
    background: rgba(236, 72, 153, 0.2);
    bottom: 10%;
    right: 10%;
    animation-delay: -4s;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    word-wrap: break-word;
    font-family: 'Heebo', sans-serif;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s infinite;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Heebo', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-gray);
    font-size: 14px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
    animation: float 6s infinite ease-in-out;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.floating-card i {
    font-size: 32px;
    color: var(--primary);
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 30%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 15%;
    right: 5%;
    animation-delay: -4s;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

.circle-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

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

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 64, 175, 0.08);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Heebo', sans-serif;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Heebo', sans-serif;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.08);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
    border-color: var(--secondary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.service-features i {
    color: var(--accent);
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.service-link:hover {
    color: var(--accent);
    gap: 12px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-3px);
}

.service-hover-effect {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: bottom 0.4s ease;
}

.service-card:hover .service-hover-effect {
    bottom: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 64, 175, 0.05);
}

.feature-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.08);
    border-color: var(--secondary);
}

.feature-item i {
    font-size: 32px;
    color: var(--primary);
}

.feature-item h4 {
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 14px;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tech-item {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 64, 175, 0.08);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.tech-item:hover {
    transform: translateY(-10px) rotate(5deg);
    background: var(--gradient);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
}

.tech-item i {
    color: var(--primary);
    transition: all 0.3s ease;
}

.tech-item:hover i {
    color: white;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.08);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
}

.portfolio-image {
    height: 250px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
}

.portfolio-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85), rgba(236, 72, 153, 0.85));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay i {
    font-size: 80px;
    color: white;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay i {
    transform: scale(1);
}

.portfolio-placeholder i {
    font-size: 80px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.portfolio-info {
    padding: 30px;
}

.portfolio-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: 5px 15px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.08);
    min-width: 400px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
    border-color: var(--secondary);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 64, 175, 0.15);
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(30, 64, 175, 0.08);
    width: 100%;
    max-width: 100%;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.08);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: var(--light-gray);
    border: 2px solid rgba(30, 64, 175, 0.15);
    border-radius: 8px;
    color: var(--text);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Assistant', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.08);
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(30, 64, 175, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Assistant', sans-serif;
}

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

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

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
        box-shadow: 0 2px 15px rgba(15, 23, 42, 0.08);
    }
    
    .navbar .container {
        padding: 0 15px;
    }

    .logo {
        height: 65px;
        max-width: 210px;
    }
    
    .mobile-contact-icons {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    .mobile-contact-icons a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        transition: all 0.3s;
    }
    
    .whatsapp-icon {
        background: #25D366;
        color: white;
    }
    
    .whatsapp-icon:hover {
        background: #20BA5A;
        transform: scale(1.1);
    }
    
    .phone-icon {
        background: var(--primary);
        color: white;
    }
    
    .phone-icon:hover {
        background: var(--secondary);
        transform: scale(1.1);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-contact-icons {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        max-width: 100vw;
        padding: 30px;
        transition: right 0.3s ease;
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    }

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

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 30px;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }
    
    .stat-item {
        flex: 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px;
        border-radius: 12px;
    }

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

    .tech-stack {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .tech-item {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

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

    .testimonials-slider {
        overflow-x: auto;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 60px 0;
    }
    
    .contact .container {
        padding: 0 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 40px 12px 15px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group i {
        left: 12px;
        font-size: 16px;
    }
    
    .contact-item {
        flex-direction: row;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .client-logo {
        width: 120px;
        height: 60px;
    }

    .section-title {
        font-size: 32px;
        font-weight: 700;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}
/* Clients Slider Styling */
.clients-slider {
    padding: 60px 0;
    background-color: white;
    overflow: hidden;
}

.logos-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logos-track {
    display: flex;
    width: calc(250px * 12); /* רוחב הלוגו כפול מספר התמונות */
    animation: scroll 30s linear infinite;
}

.logos-track img {
    width: 150px; /* שנה לפי הגודל המתאים לך */
    height: auto;
    margin: 0 40px;
    filter: grayscale(100%); /* הופך את הלוגואים לאפורים למראה נקי */
    opacity: 0.6;
    transition: 0.3s;
}

.logos-track img:hover {
    filter: grayscale(0%); /* הלוגו חוזר לצבע בhover */
    opacity: 1;
}

/* אנימציית הגלילה */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* זז בדיוק חצי מהרוחב הכולל */
    }
}

/* התאמה למובייל */
@media (max-width: 768px) {
    .logos-track img {
        width: 100px;
        margin: 0 20px;
    }
}
