@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* Synlogica Solutions - Professional IT Solutions Website */
:root {
    --primary-color: #0a1f44;
    --primary-dark: #06152a;
    --primary-light: #1a3a6e;
    --accent-color: #00d4ff;
    --accent-secondary: #00a8cc;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --success: #28a745;
    --gradient-primary: linear-gradient(135deg, #0a1f44 0%, #1a3a6e 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 31, 68, 0.7) 0%, rgba(26, 58, 110, 0.6) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px var(--accent-glow);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-left a {
    color: var(--white);
    opacity: 0.9;
}

.top-bar-left a:hover {
    color: var(--accent-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-right a {
    color: var(--white);
    opacity: 0.9;
}

.top-bar-right a:hover {
    color: var(--accent-color);
}

.top-social-links {
    display: flex;
    gap: 12px;
}

.top-social-link {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.top-social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 12px 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text span {
    color: var(--accent-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

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

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

.nav-close {
    display: none;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 40px 45px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

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

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero-arrows {
    position: absolute;
    bottom: 28px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.hero-arrow:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

/* Floating particles animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Features Section */
.features {
    background: var(--off-white);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* About Section */
.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content h2 span {
    color: var(--accent-color);
}

.about-content > p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Services Section */
.services {
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    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: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
}

/* Products Section */
.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card:hover .product-content h3,
.product-card:hover .product-content p {
    color: var(--white);
}

.product-card:hover .product-content {
    background: var(--primary-color);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.product-price .new-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.product-price .old-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

/* Stats Section */
.stats {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

/* CTA Section */
.cta {
    background: var(--off-white);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Section */
.contact {
    background: var(--white);
}

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

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-items {
    margin-bottom: 35px;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

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

.contact-form {
    background: var(--off-white);
    padding: 45px;
    border-radius: var(--border-radius-lg);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Map Section */
.map {
    height: 400px;
    background: var(--light-gray);
}

/* Footer */
.footer {
    background: var(--primary-color);
    padding: 60px 0 25px;
    color: var(--white);
}

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

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

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

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

/* Page Banner */
.page-banner {
    background: var(--gradient-hero);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/developerwithAi.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.page-banner h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Team Section */
.team {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-card:hover .team-content {
    background: var(--primary-color);
}

.team-card:hover .team-content h3,
.team-card:hover .team-content p {
    color: var(--white);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-content p {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--off-white);
    padding: 40px 35px;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: var(--transition);
    }
    
.nav.active {
        right: 0;
    }

    .nav.active .nav-close {
        display: block;
    }

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

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

    .nav-close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: var(--white);
        cursor: pointer;
        z-index: 1002;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
}

/* Synlogica 2026 visual system */
:root {
    --primary-color: #10245b;
    --primary-dark: #08173d;
    --primary-light: #1d3f98;
    --accent-color: #4169e1;
    --accent-secondary: #214bc4;
    --accent-glow: rgba(65, 105, 225, .28);
    --off-white: #f5f7fd;
    --gradient-primary: linear-gradient(135deg, #08173d 0%, #173b91 100%);
    --gradient-accent: linear-gradient(135deg, #5c7ff0 0%, #315bd5 100%);
    --border-radius: 14px;
    --border-radius-lg: 28px;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-weight: 500;
    letter-spacing: -.01em;
}
h1, h2, h3, h4, h5, h6,
.nav-link, .btn, .section-title h2 {
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}
.container { max-width: 1240px; }
.top-bar { background: #08173d; border-bottom: 1px solid rgba(255,255,255,.08); }
.header { backdrop-filter: blur(18px); }
.logo { display: inline-flex; align-items: center; min-width: 190px; }
.logo img { display: block; width: auto; height: 58px; object-fit: contain; }
.footer .logo {
    width: fit-content;
    min-width: 0;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.footer .logo img { height: 58px; }
.nav { gap: 26px; }
.nav-link { font-size: .92rem; font-weight: 650; }
.nav-link::after { height: 3px; border-radius: 3px; }
.nav-link.nav-quote {
    margin-left: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    color: #fff;
    background: var(--gradient-accent);
    box-shadow: 0 9px 24px rgba(65,105,225,.25);
}
.nav-link.nav-quote::after { display: none; }
.nav-link.nav-quote:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 13px 30px rgba(65,105,225,.36);
}

.hero { min-height: 720px; height: calc(100vh - 42px); max-height: 900px; }
.slide-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(8,23,61,.82) 0%, rgba(8,23,61,.52) 48%, rgba(8,23,61,.08) 78%);
}
.hero-content { max-width: 760px; }
.hero-card {
    position: relative; padding: 0; border: 0;
    background: transparent; backdrop-filter: none; border-radius: 0;
    box-shadow: none; overflow: visible;
}
.hero-card::before {
    display: none;
}
.hero-subtitle, .banner-eyebrow {
    display: inline-flex; align-items: center; gap: 9px; font-size: .76rem; font-weight: 800;
    letter-spacing: 2.2px; text-transform: uppercase; color: #89a7ff;
}
.hero-subtitle::before, .banner-eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero-title { font-size: clamp(3rem, 5.5vw, 5.25rem); line-height: .98; letter-spacing: -3px; margin: 20px 0 24px; }
.hero-description { max-width: 650px; font-size: 1.12rem; color: rgba(255,255,255,.82); }
.btn { border-radius: 999px; padding: 15px 28px; }
.btn-primary { color: #fff; }

.page-banner {
    min-height: 500px; padding: 150px 0 90px; display: flex; align-items: flex-end;
    position: relative; isolation: isolate; background-size: cover !important; background-position: center !important;
}
.page-banner::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(90deg, rgba(8,23,61,.78), rgba(8,23,61,.25) 62%, rgba(8,23,61,.03));
}
.page-banner::after {
    content: ""; position: absolute; inset: auto 0 0; height: 150px; z-index: -1;
    background: linear-gradient(transparent, rgba(7,26,44,.48));
}
.page-banner .container { width: 100%; }
.page-banner h1 { max-width: 800px; font-size: clamp(3.2rem, 7vw, 6.3rem); line-height: .95; letter-spacing: -4px; margin: 16px 0; }
.page-banner p { max-width: 680px; font-size: 1.18rem; color: rgba(255,255,255,.85); }
.page-about .page-banner { background-image: url("../images/team-celebration.jpg") !important; }
.page-services .page-banner { background-image: url("../images/developerwithAi.jpg") !important; }
.page-products .page-banner { background-image: url("../images/developer1.jpg") !important; }
.page-contact .page-banner { background-image: url("../images/team-meeting.jpg") !important; }
.page-staff-augmentation .page-banner { background-image: url("../images/staff-goals.jpg") !important; }

.feature-card, .service-card, .product-card, .vm-card, .culture-card, .testimonial-card,
.more-service-card, .process-step, .contact-item, .faq-item {
    border: 1px solid rgba(16,42,67,.08); border-radius: 22px !important;
    box-shadow: 0 12px 40px rgba(16,42,67,.07); transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease !important;
}
.feature-card:hover, .service-card:hover, .product-card:hover, .vm-card:hover, .culture-card:hover,
.more-service-card:hover, .process-step:hover {
    transform: translateY(-10px) !important; border-color: rgba(65,105,225,.6);
    box-shadow: 0 24px 60px rgba(16,42,67,.14), 0 0 0 5px rgba(65,105,225,.06);
}
.about-image img, .culture-card img { border-radius: 26px; }
.section-title h2 { letter-spacing: -1.5px; }

/* Contemporary card language */
.feature-card,
.service-card,
.more-service-card,
.vm-card,
.culture-card,
.product-card,
.process-step {
    position: relative;
    isolation: isolate;
}
.feature-card,
.more-service-card,
.vm-card,
.process-step {
    background: linear-gradient(145deg, #ffffff 0%, #f9faff 100%);
}
.feature-card::after,
.more-service-card::after,
.vm-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 110px;
    height: 110px;
    top: -56px;
    right: -48px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65,105,225,.12), transparent 68%);
    opacity: 0;
    transform: scale(.7);
    transition: opacity .4s ease, transform .4s ease;
}
.feature-card:hover::after,
.more-service-card:hover::after,
.vm-card:hover::after {
    opacity: 1;
    transform: scale(1);
}
.feature-card h3,
.service-card h3,
.more-service-card h3,
.vm-card h3,
.process-step h3 {
    letter-spacing: -.035em;
}
.feature-card p,
.service-card p,
.more-service-card p,
.process-step p {
    line-height: 1.75;
}
.section-title p {
    font-size: 1.05rem;
    line-height: 1.8;
}
.section-title h2 {
    font-weight: 800;
    letter-spacing: -.045em;
}
.hero-title,
.page-banner h1 {
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -.055em;
}
.btn,
.nav-quote {
    font-weight: 700;
    letter-spacing: -.015em;
}

@keyframes heroReveal { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
.hero-card, .page-banner .container { animation: heroReveal .9s cubic-bezier(.2,.8,.2,1) both; }

.service-icon, .more-service-icon, .about-feature-icon, .contact-item-icon {
    background: transparent !important;
}

.feature-icon {
    width: auto !important;
    height: auto !important;
    min-width: 0;
    margin-bottom: 22px;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 4rem !important;
    line-height: 1;
}
.service-icon {
    width: auto !important;
    height: auto !important;
    justify-content: flex-start !important;
    border-radius: 0 !important;
    font-size: 3.25rem !important;
}
.more-service-icon {
    width: auto !important;
    height: auto !important;
    font-size: 2.7rem !important;
}

/* Staff augmentation layout */
.page-staff-augmentation .services-overview .services-grid {
    grid-template-columns: repeat(3, minmax(300px, 370px));
    justify-content: center;
    gap: 36px;
}
.page-staff-augmentation .services-overview .service-card.featured {
    min-height: 520px;
    padding: 56px 44px;
}
.page-staff-augmentation .process-grid {
    grid-template-columns: repeat(4, minmax(240px, 280px));
    justify-content: center;
    gap: 32px;
    width: 100%;
}
.page-staff-augmentation .process-step {
    min-height: 380px;
    padding: 54px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-staff-augmentation .step-number {
    width: 82px;
    height: 82px;
    font-size: 1.8rem;
}
.page-staff-augmentation .process-step h3 { font-size: 1.45rem; }
.page-staff-augmentation .process-step p { font-size: 1rem; line-height: 1.75; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
@media (max-width: 900px) {
    .nav { gap: 18px; }
    .nav-link { font-size: .82rem; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .hero { min-height: 700px; height: auto; }
    .hero-card { padding: 0; }
    .hero-title { font-size: 3rem; letter-spacing: -2px; }
    .page-banner { min-height: 430px; padding: 130px 0 60px; }
    .page-banner h1 { font-size: 3.4rem; letter-spacing: -2px; }
    .nav-link.nav-quote {
        width: 100%;
        margin: 10px 0 0;
        text-align: center;
        color: #fff;
    }
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 12px 34px rgba(0,0,0,.28);
    transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 18px 40px rgba(37,211,102,.38);
}
.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    right: 72px;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    background: #10245b;
    font-size: .82rem;
    font-weight: 700;
    opacity: 0;
    transform: translateX(8px);
    transition: .25s ease;
    pointer-events: none;
}
.whatsapp-float:hover::before { opacity: 1; transform: none; }
.office-address { align-items: flex-start; }

.social-link svg,
.top-social-link svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
}

.modern-icon {
    color: var(--accent-color) !important;
    justify-content: center !important;
    align-items: center !important;
}
.feature-icon.modern-icon,
.service-icon.modern-icon,
.more-service-icon.modern-icon,
.vm-icon.modern-icon {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}
.modern-icon svg {
    display: block;
    width: 58px;
    height: 58px;
    overflow: visible;
    filter: drop-shadow(0 7px 12px rgba(65,105,225,.16));
    transition: transform .35s ease, color .35s ease;
}
.feature-card:hover .modern-icon svg,
.service-card:hover .modern-icon svg,
.more-service-card:hover .modern-icon svg,
.vm-card:hover .modern-icon svg {
    transform: translateY(-4px) scale(1.06);
}
.feature-icon.modern-icon svg { width: 68px; height: 68px; margin: 0 auto; }
.service-icon.modern-icon svg { width: 62px; height: 62px; margin: 0 auto; }
.more-service-icon.modern-icon svg { width: 48px; height: 48px; margin: 0 auto; }
.about-feature-icon.modern-icon svg,
.contact-item-icon.modern-icon svg { width: 34px; height: 34px; filter: none; }
.vm-icon.modern-icon svg { width: 54px; height: 54px; margin: 0 auto; }

.more-service-card {
    align-items: center !important;
    text-align: center;
}
.services-overview .service-card.featured > .modern-icon,
.services .service-card > .modern-icon {
    display: flex;
    width: 100% !important;
    max-width: none;
}
.top-social-link svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 600px) {
    .whatsapp-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
    .whatsapp-float svg { width: 31px; height: 31px; }
    .whatsapp-float::before { display: none; }
}

@media (max-width: 1100px) {
    .page-staff-augmentation .services-overview .services-grid { grid-template-columns: repeat(2, minmax(300px, 420px)); }
    .page-staff-augmentation .process-grid { grid-template-columns: repeat(2, minmax(280px, 400px)); }
}
@media (max-width: 700px) {
    .page-staff-augmentation .services-overview .services-grid,
    .page-staff-augmentation .process-grid { grid-template-columns: minmax(0, 1fr); }
    .page-staff-augmentation .services-overview .service-card.featured { min-height: auto; padding: 40px 28px; }
    .page-staff-augmentation .process-step { min-height: 320px; }
}

/* Consistent compact heroes on every inner page */
body:not(.page-index) .page-banner {
    height: 450px;
    min-height: 450px;
    padding: 120px 0 58px;
}
@media (max-width: 768px) {
    body:not(.page-index) .page-banner {
        height: 450px;
        min-height: 450px;
        padding: 110px 0 48px;
    }
}
