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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --purple-color: #7c3aed;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

/* Heading fonts */
h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto Condensed', sans-serif;
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar Separator Line */
.navbar-separator {
    width: 100%;
    height: 1px;
    background: transparent;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1001;
    display: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo a:hover,
.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fb923c;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-phone:hover {
    color: #f97316;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border-radius: 6px;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

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

.nav-link:hover {
    color: #fb923c;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    /* remove underline expansion on hover */
    width: 0;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 27, 75, 0.98);
    backdrop-filter: blur(10px);
    min-width: 600px;
    width: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    overflow: hidden;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Left Side */
.dropdown-menu-left {
    flex: 0 0 280px;
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    background: rgba(20, 18, 50, 0.95);
}

.dropdown-menu-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fb923c;
    margin-bottom: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
}

/* .dropdown-menu-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, #fb923c 0%, rgba(251, 146, 60, 0.3) 100%);
    margin: 0.5rem 0 1rem 0.5rem;
    min-height: 200px;
} */

.dropdown-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu-list li {
    margin: 0;
}

.dropdown-menu-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 0.25rem;
    position: relative;
}

.dropdown-menu-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #fb923c;
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.dropdown-menu-list a:hover {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
    padding-left: 1.5rem;
}

.dropdown-menu-list a:hover::before {
    height: 60%;
}

/* Dropdown Right Side */
.dropdown-menu-right {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown-menu-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dropdown-menu-list a:hover ~ .dropdown-menu-right .dropdown-menu-image img,
.dropdown-menu-right:hover .dropdown-menu-image img {
    transform: scale(1.05);
}

.dropdown-menu-description {
    color: #ffffff;
}

.dropdown-menu-description h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fb923c;
    margin-bottom: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.dropdown-menu-description p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Center pill background behind the menu */
.nav-pill {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(30%);
    max-width: 800px;
    height: 50px;
    background: #1351D828;
    border-radius: 30px;
   
    pointer-events: none;
    z-index: 500;
}

/* Move nav-menu above the pill and space items */
.nav-menu {
    position: relative;
    z-index: 510;
    gap: 6px;
}

.nav-link {
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
}

.nav-link:hover {
    background: rgba(124,58,237,0.08);
    color: #fb923c;
}

/* Style Contact button to match image (orange pill) */
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    /*box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);*/
    border: 2px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: var(--transition);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.nav-search {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 0.25rem;
}

.nav-search:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    border-radius: 0.25rem;
}

.nav-lang:hover {
    background: var(--bg-light);
    color: var(--purple-color);
}

.btn-call {
    position: relative;
    background: transparent;
    background-size: 220% 220%;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    overflow: hidden;
    box-shadow: none;
    animation: none;
}

.btn-call::before {
    display: none;
}

.btn-call:hover::before {
    display: none;
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.07);
    box-shadow: 0 8px 28px rgba(102, 126, 234, 0.3), 0 0 40px rgba(124, 58, 237, 0.2);
    background: transparent;
}

.btn-call:active {
    transform: translateY(0) scale(1);
}

.btn-call .phone-icon {
    animation: none;
    z-index: 1;
    color: var(--text-dark);
}

.btn-call:hover .phone-icon {
    animation: none;
}

.btn-call .call-text {
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.btn-call .phone-number {
    font-weight: 700;
    color: var(--text-dark);
    z-index: 1;
    font-size: 0.95rem;
}

.btn-call:hover .phone-number {
    color: var(--text-dark);
}

.btn-call .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    border: 2px solid rgba(102, 126, 234, 0.6);
    animation: none;
    pointer-events: none;
    display: none;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.7);
    }
}

@keyframes call-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes phone-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.btn-contact {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e1b4b 0%, #16213e 50%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Door Opening Animation */
.hero-door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #1e1b4b 0%, #16213e 50%, #0f172a 100%);
    z-index: 20;
    animation: doorOpen 1.2s ease-out forwards;
}

.hero-door-left {
    left: 0;
    animation: doorOpenLeft 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-door-right {
    right: 0;
    animation: doorOpenRight 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes doorOpenLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes doorOpenRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Scroll Down Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-arrow::before {
    content: 'Scroll Down';
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInOut 3s infinite;
}

.scroll-arrow svg {
    width: 30px;
    height: 35px;
    stroke: #fb923c;
    stroke-width: 2.5;
    fill: none;
    animation: scrollArrowBounce 2.5s infinite;
    filter: drop-shadow(0 0 12px rgba(251, 146, 60, 0.6));
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    /*box-shadow: 0 8px 24px rgba(251, 146, 60, 0.3);*/
}

@keyframes fadeInOut {
    0%, 20%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scrollArrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    40% {
        transform: translateY(12px);
        opacity: 0.4;
    }
    60% {
        transform: translateY(6px);
        opacity: 0.7;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    mix-blend-mode: screen;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.5);
    top: -100px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.5);
    bottom: 0;
    left: 10%;
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(124, 58, 237, 0.5);
    bottom: 20%;
    right: 10%;
    animation: float3 30s ease-in-out infinite;
}

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

/* Hero Left Content */
.hero-left {
    color: white;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    white-space: nowrap;
}

.heading-white {
    display: block;
    color: #ffffff;
    white-space: nowrap;
}

.heading-orange {
    display: block;
    background: linear-gradient(90deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary-large {
    background: linear-gradient(90deg, #f97316, #fb923c);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.4);
}

.btn-outline-large {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.btn-outline-large:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* Trust Indications */
.hero-trust-indications {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item svg {
    color: #fb923c;
    flex-shrink: 0;
}

/* Mockup Types */
.hero-mockup-types {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    flex-wrap: wrap;
}

.hero-mockup-types .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.25rem;
}

.scroll-indicator {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: 3rem;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    position: relative;
}

.scroll-icon span {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
    margin-top: 6px;
}

/* Hero Right - Image with Animations */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: visible;
}

/* Mockup Images - Book Page Flip Effect with Paper Zigzag Edge */
.hero-mockup-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: scale(0.92) translateX(0);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transform-origin: center bottom;
    background: transparent;
    overflow: visible;
    transition: z-index 0.3s ease;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-sizing: border-box;
}

.hero-mockup-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    clip-path: polygon(
        0% 100%,
        2% 0%,
        4% 100%,
        6% 0%,
        8% 100%,
        10% 0%,
        12% 100%,
        14% 0%,
        16% 100%,
        18% 0%,
        20% 100%,
        22% 0%,
        24% 100%,
        26% 0%,
        28% 100%,
        30% 0%,
        32% 100%,
        34% 0%,
        36% 100%,
        38% 0%,
        40% 100%,
        42% 0%,
        44% 100%,
        46% 0%,
        48% 100%,
        50% 0%,
        52% 100%,
        54% 0%,
        56% 100%,
        58% 0%,
        60% 100%,
        62% 0%,
        64% 100%,
        66% 0%,
        68% 100%,
        70% 0%,
        72% 100%,
        74% 0%,
        76% 100%,
        78% 0%,
        80% 100%,
        82% 0%,
        84% 100%,
        86% 0%,
        88% 100%,
        90% 0%,
        92% 100%,
        94% 0%,
        96% 100%,
        98% 0%,
        100% 100%,
        100% 0%,
        0% 0%
    );
    pointer-events: none;
}

.hero-mockup-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}

/* Animation for Image 1 - Website Mockup - Rummy card style */
.hero-mockup-image-1 {
    animation: 
        bookPageFlipCard 12s ease-in-out infinite,
        bookPageFlipCard1 12s ease-in-out infinite;
    animation-delay: 0s, 0s;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

/* Animation for Image 2 - App UI Mockup - Rummy card style */
.hero-mockup-image-2 {
    animation: 
        bookPageFlipCard 12s ease-in-out infinite,
        bookPageFlipCard2 12s ease-in-out infinite;
    animation-delay: 4s, 4s;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

/* Animation for Image 3 - Dashboard Preview - Rummy card style */
.hero-mockup-image-3 {
    animation: 
        bookPageFlipCard 12s ease-in-out infinite,
        bookPageFlipCard3 12s ease-in-out infinite;
    animation-delay: 8s, 8s;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

/* Book Page Flip Animation - Rummy card style - All cards visible, active one comes to front */
@keyframes bookPageFlipCard {
    0% {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }
    1% {
        opacity: 1;
        visibility: visible;
        z-index: 3;
    }
    5% {
        opacity: 1;
        visibility: visible;
        z-index: 3;
    }
    25% {
        opacity: 1;
        visibility: visible;
        z-index: 3;
    }
    33% {
        opacity: 1;
        visibility: visible;
        z-index: 3;
    }
    40% {
        opacity: 0.3;
        visibility: visible;
        z-index: 3;
    }
    40.01% {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }
    100% {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }
}

/* Specific transform animations for each card */
@keyframes bookPageFlipCard1 {
    0% {
        transform: scale(0.92) translateX(-15px) translateY(10px);
    }
    5% {
        transform: scale(1.15) translateX(0) translateY(10px);
    }
    25% {
        transform: scale(1.15) translateX(0) translateY(10px);
    }
    33% {
        transform: scale(1) translateX(200%) translateY(10px);
    }
    40% {
        transform: scale(0.92) translateX(300%) translateY(10px);
    }
    40.01% {
        transform: scale(0.92) translateX(-15px) translateY(10px);
    }
    100% {
        transform: scale(0.92) translateX(-15px) translateY(10px);
    }
}

@keyframes bookPageFlipCard2 {
    0% {
        transform: scale(0.92) translateX(0) translateY(5px);
    }
    5% {
        transform: scale(1.15) translateX(0) translateY(5px);
    }
    25% {
        transform: scale(1.15) translateX(0) translateY(5px);
    }
    33% {
        transform: scale(1) translateX(200%) translateY(5px);
    }
    40% {
        transform: scale(0.92) translateX(300%) translateY(5px);
    }
    40.01% {
        transform: scale(0.92) translateX(0) translateY(5px);
    }
    100% {
        transform: scale(0.92) translateX(0) translateY(5px);
    }
}

@keyframes bookPageFlipCard3 {
    0% {
        transform: scale(0.92) translateX(15px) translateY(0);
    }
    5% {
        transform: scale(1.15) translateX(0) translateY(0);
    }
    25% {
        transform: scale(1.15) translateX(0) translateY(0);
    }
    33% {
        transform: scale(1) translateX(200%) translateY(0);
    }
    40% {
        transform: scale(0.92) translateX(300%) translateY(0);
    }
    40.01% {
        transform: scale(0.92) translateX(15px) translateY(0);
    }
    100% {
        transform: scale(0.92) translateX(15px) translateY(0);
    }
}

/* Circular Scrolling Images - Static Tree Layout */
.hero-images-marquee {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.marquee-images-track {
    position: relative;
    width: 400px;
    height: 420px;
    will-change: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-images-marquee .hero-image {
    position: absolute;
    width: 120px;
    max-width: 120px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
    animation: none;
}

/* Circular layout - top center */
.hero-images-marquee .hero-image:first-child {
    width: 120px;
    max-width: 120px;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    z-index: 10;
}

/* Right side images */
.hero-images-marquee .hero-image:nth-child(2) {
    width: 100px;
    max-width: 100px;
    left: calc(50% + 115px);
    top: calc(50% - 70px);
    transform: translate(-50%, -50%);
    z-index: 6;
}

.hero-images-marquee .hero-image:nth-child(3) {
    width: 100px;
    max-width: 100px;
    left: calc(50% + 115px);
    top: calc(50% + 70px);
    transform: translate(-50%, -50%);
    z-index: 6;
}

/* Bottom center */
.hero-images-marquee .hero-image:nth-child(4) {
    width: 100px;
    max-width: 100px;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
    z-index: 6;
}

/* Left side images */
.hero-images-marquee .hero-image:nth-child(5) {
    width: 100px;
    max-width: 100px;
    left: calc(50% - 115px);
    top: calc(50% + 70px);
    transform: translate(-50%, -50%);
    z-index: 6;
}

.hero-images-marquee .hero-image:nth-child(6) {
    width: 100px;
    max-width: 100px;
    left: calc(50% - 115px);
    top: calc(50% - 70px);
    transform: translate(-50%, -50%);
    z-index: 6;
}

/* Fourth row - Images hidden/not used */
.hero-images-marquee .hero-image:nth-child(7) {
    display: none;
}

.hero-images-marquee .hero-image:nth-child(8) {
    display: none;
}

.hero-images-marquee .hero-image:nth-child(9) {
    display: none;
}

.hero-images-marquee .hero-image:nth-child(10) {
    display: none;
}

.hero-images-marquee .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Circular rotation animation - for hero images on mouseover */
@keyframes circleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero images circular layout */
.hero-images-marquee:hover .marquee-images-track {
    animation: circleRotate 8s linear infinite;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.4), transparent);
    opacity: 0.6;
}

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

.circle-2 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.3), transparent);
    z-index: 0;
    display: none;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.2), transparent);
    z-index: 0;
    display: none;
}

/* Hero images styled through marquee container above */

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo Animation - Removed */
.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f97316;
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 0.6rem;
    color: #6b7280;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

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

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

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

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

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

@keyframes logoHover {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

@keyframes orbitCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(0, 40px) scale(0.95); }
    75% { transform: translate(-30px, 10px) scale(1); }
}

@keyframes orbitCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 20px) scale(0.95); }
    50% { transform: translate(0, -50px) scale(1.05); }
    75% { transform: translate(40px, -10px) scale(1); }
}

@keyframes orbitCircle3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, 40px) scale(0.9); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
    75% { transform: translate(-10px, -30px) scale(1); }
}

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

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

/* Clients Section */
.clients {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.clients-container {
    position: relative;
    z-index: 2;
    margin: 80px auto;
    max-width: 90%;
    padding: 60px 50px;
    border: 3px solid #f97316;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(26, 31, 58, 0.4) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.clients-grid {
    position: relative;
    z-index: 2;
    margin: 0;
    /*background: linear-gradient(135deg, rgba(89, 115, 167, 0.8) 0%, rgba(50, 103, 209, 0.8) 100%);*/
    /*padding: 4rem 0;*/
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    backdrop-filter: blur(10px);
    
}

.clients-marquee {
    overflow: hidden;
    max-width: 1330px;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 3.5rem;
    animation: marqueeScroll 50s linear infinite;
    width: fit-content;
    padding: 2rem 0;
    will-change: transform;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 140px;
    height: 90px;
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.client-logo:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo img {
    max-width: 70%;
    max-height: 55%;
    object-fit: contain;
    filter: brightness(0.95) drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: brightness(0.95) drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

/* What We Are Section */
.who-we-are {
    padding: 120px 2rem 150px 2rem;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
    min-height: 900px;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 800px;
    background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.2) 15%, rgba(79, 70, 229, 0.25) 50%, rgba(79, 70, 229, 0.2) 85%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
}

.who-we-are::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.who-we-are-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.who-we-are-header {
    text-align: center;
    margin-bottom: 80px;
}

.who-we-are-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.who-we-are-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.polaroid-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.polaroid {
    width: 160px;
    height: 200px;
    background: #ffffff;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center bottom;
}

/* Zigzag pattern - alternating up and down */
.polaroid:nth-child(1) {
    transform: translateY(60px) rotateZ(-8deg);
}

.polaroid:nth-child(2) {
    transform: translateY(-20px) rotateZ(6deg);
}

.polaroid:nth-child(3) {
    transform: translateY(40px) rotateZ(-5deg);
    z-index: 10;
}

.polaroid:nth-child(4) {
    transform: translateY(-30px) rotateZ(7deg);
}

.polaroid:nth-child(5) {
    transform: translateY(50px) rotateZ(-6deg);
}

.polaroid-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.polaroid-caption {
    padding: 8px 6px 4px;
    font-family: 'Marker Felt', cursive, 'Comic Sans MS', sans-serif;
    font-size: 0.75rem;
    color: #333;
    text-align: center;
    font-weight: 500;
}

.polaroid:hover {
    transform: translateY(0px) rotateZ(0deg) scale(1.1);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.3);
    z-index: 20;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-140px * 6 - 3rem * 6));
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-buttons-group {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-trust-indications {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .hero-mockup-types {
        font-size: 0.85rem;
        gap: 0.35rem;
    }

    .hero-right {
        margin-top: 3rem;
    }

    .hero-image-wrapper {
        max-width: 100%;
        min-height: 250px;
    }

    .hero-mockup-image {
        max-width: 100%;
    }

    .hero-mockup-image img {
        border-radius: 12px;
    }
}

/* Animations */
@keyframes aiRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes aiPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes aiGlow {
    0%, 100% { 
        opacity: 0.4;
        filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.5));
    }
    50% { 
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 1));
    }
}

@keyframes aiCircuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes aiCenterPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes aiCenterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes aiHexPulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes aiLineMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
}

@keyframes aiBlockGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(1);
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.2);
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    }
}

@keyframes aiParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes aiCenterRingPulse {
    0%, 100% {
        opacity: 0.12;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

@keyframes aiGridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Responsive AI Animation */
@media (max-width: 968px) {
    .ai-circle-main {
        width: 300px;
        height: 300px;
        right: -10%;
        opacity: 0.5;
    }
    
    .ai-hex-cluster {
        width: 80px;
        height: 80px;
        opacity: 0.4;
    }
    
    .ai-hex-top-left {
        display: none;
    }
    
    .ai-top-blocks {
        top: 20%;
        left: 5%;
        gap: 10px;
    }
    
    .ai-block {
        width: 30px;
        height: 6px;
    }
    
    .ai-connecting-lines {
        opacity: 0.2;
    }
    
    .ai-particles {
        opacity: 0.5;
    }
    
    .ai-data-grid {
        opacity: 0.15;
    }
}

@media (max-width: 640px) {
    .ai-circle-main {
        width: 250px;
        height: 250px;
        right: -15%;
        opacity: 0.3;
    }
    
    .ai-hex-cluster {
        width: 60px;
        height: 60px;
        opacity: 0.3;
    }
    
    .ai-top-blocks {
        display: none;
    }

    /* Polaroid responsive */
    .polaroid {
        width: 140px;
        height: 170px;
        gap: 0.5rem;
    }

    .polaroid-img {
        height: 110px;
    }

    .polaroid:nth-child(1) {
        transform: translateY(40px) rotateZ(-8deg);
    }

    .polaroid:nth-child(2) {
        transform: translateY(-10px) rotateZ(6deg);
    }

    .polaroid:nth-child(3) {
        transform: translateY(30px) rotateZ(-5deg);
    }

    .polaroid:nth-child(4) {
        transform: translateY(-20px) rotateZ(7deg);
    }

    .polaroid:nth-child(5) {
        transform: translateY(40px) rotateZ(-6deg);
    }

    .who-we-are-header h2 {
        font-size: 2rem;
    }

}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
    width: 100%;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    padding: 0 1rem;
    line-height: 1.6;
}

.breadcrumb {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-block {
    width: 100%;
}

/* Hero Slider Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 4;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 4;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Section Styles */
/* section {
    padding: 5rem 0;
} */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-white);
    padding: 1rem 0 5rem 0;
}

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

.about-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Services Section - New Design */
.services {
    position: relative;
    padding: 100px 0;
    background: transparent;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.services-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Panel - Main Content */
.services-main-panel {
    background: rgba(30, 27, 75, 0.65);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    z-index: 1;
    margin-right: 2rem;
}

.services-main-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services-main-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
}

.services-main-icon {
    width: 140px;
    height: 140px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: floatIcon 3s ease-in-out infinite;
}

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

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

.services-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.services-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    z-index: 2;
}

.services-main-title .title-accent {
    color: #fb923c;
    display: inline-block;
}

.services-main-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.services-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    border: none;
    cursor: pointer;
}

.services-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

/* Right Panel - Feature Cards */
.services-features-wrapper {
    position: relative;
    z-index: 3;
    margin-left: -6rem;
    padding-top: 2.5rem;
    width: calc(100% + 10rem);
    overflow: hidden;
    padding-right: 6rem;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
    align-items: start;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: calc((100% / 3) * 5 + (1.25rem * 4));
}

.service-feature-card {
    background: rgba(30, 27, 75, 0.65);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 220px;
}

.service-feature-card:hover {
    transform: scale(1.05);
    box-shadow: none;
    z-index: 10;
}


.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

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

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

.service-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    font-family: 'Roboto Condensed', sans-serif;
}

.service-feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.services-carousel-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.services-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.services-carousel {
    flex: 1;
    overflow: hidden;
    margin: 0 1rem;
}

.services-track {
    display: flex;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-card {
    flex: 0 0 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: relative;
    /*border-radius: 16px;*/
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    pointer-events: none;
}

.service-content-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* Service icon colors - match each service theme */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

@keyframes pulseGlow {
    0% {
        width: 0%;
        height: 0%;
        opacity: 1;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fb923c;
    line-height: 1.4;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
}

.service-card p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

.service-image-box {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    margin-right: 8rem;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
    transition: transform 1.5s ease;
}

.service-card:hover .service-image-box img {
    transform: scale(1.05);
}

/* Client Stories Section */
.client-stories {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stories-header {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stories-header-content {
    flex: 0 0 40%;
}

.stories-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.stories-header h2 .title-accent {
    color: #fb923c;
    display: inline-block;
}

.stories-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.stories-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 -1rem;
}

.stories-carousel {
    flex: 1;
    overflow: hidden;
    margin: 0 1rem;
}

.stories-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.story-item:hover {
    border-color: rgba(251, 146, 60, 0.3);
}

.story-item:hover::before {
    transform: translateX(100%);
}

.story-content-box {
    position: relative;
    z-index: 2;
}

.story-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, var(--primary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 15px 50px rgba(251, 146, 60, 0.35);
    overflow: hidden;
}

.story-icon svg {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
}

.story-item:hover .story-icon {
    transform: none;
}

.story-quote {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.story-item:hover .story-quote {
    transform: none;
    color: #ffffff !important;
}

.story-description {
    color: #ffffff;
    line-height: 1.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.story-item:hover .story-description {
    color: #fb923c;
}

.read-more-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: 2px solid #2563eb;
    border-radius: 25px;
    color: #2563eb;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-color: transparent;
    transform: translateX(4px);
}

.read-more-btn svg {
    width: 16px;
    height: 16px;
}

.story-indicators {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

.story-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.story-dot:hover {
    background: rgba(37, 99, 235, 0.3);
    transform: scale(1.2);
}

.story-dot.active {
    background: #2563eb;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

.story-nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background: transparent;
    color: #2563eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.story-nav-arrow:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.story-nav-arrow svg {
    width: 16px;
    height: 16px;
}

/* Story carousel navigation buttons */
.stories-nav-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fb923c;
    background: transparent;
    color: #fb923c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.stories-nav-btn:hover {
    background: #fb923c;
    color: white;
    transform: scale(1.1);
    margin-top: 0.5rem;
}

.story-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.story-dot:hover {
    background: rgba(37, 99, 235, 0.3);
}

.story-dot.active {
    background: #2563eb;
}

.story-image-box {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
}

.story-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
/* Client Stories Responsive - Carousel Layout */
@media (max-width: 1024px) {
    .stories-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .stories-header-content {
        flex: 1 1 100%;
    }

    .stories-header h2 {
        font-size: 2.5rem;
    }

    .story-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .client-stories {
        padding: 60px 20px;
    }

    .stories-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .stories-header-content {
        flex: 1 1 100%;
    }

    .stories-header h2 {
        font-size: 2.2rem;
    }

    .stories-description {
        font-size: 0.95rem;
    }

    .stories-wrapper {
        gap: 0.75rem;
        margin: 0;
    }

    .stories-nav-btn {
        width: 40px;
        height: 40px;
    }

    .story-item {
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
    }

    .stories-track {
        gap: 1.5rem;
    }

    .story-icon {
        width: 100px;
        height: 100px;
    }

    .story-quote {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem;
    }

    .story-description {
        font-size: 0.93rem;
    }
}

@media (max-width: 480px) {
    .client-stories {
        padding: 40px 20px;
    }

    .stories-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .stories-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .stories-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .story-item {
        flex: 0 0 100% !important;
        padding: 1.5rem 1.2rem;
    }

    .story-quote {
        font-size: 1.1rem;
        margin: 1rem 0 0.75rem;
    }

    .story-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .story-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem;
    }

    .story-icon svg {
        width: 40px;
        height: 40px;
    }

    .stories-nav-btn {
        width: 35px;
        height: 35px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stories-header h2 {
        font-size: 2rem;
    }

    .stories-carousel {
        min-height: 400px;
    }

    .story-overlay {
        padding: 1.5rem;
    }

    .story-quote {
        font-size: 1.5rem;
    }

    .stories-controls {
        padding: 1.5rem;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .stories-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stories-controls {
        justify-content: center;
        flex-direction: row;
        padding: 1rem;
        min-width: auto;
    }

    .stories-indicators {
        flex-direction: row;
        gap: 0.75rem;
    }

    .stories-header h2 {
        font-size: 1.8rem;
    }

    .stories-carousel {
        min-height: 300px;
    }

    .story-overlay {
        padding: 1.25rem;
    }

    .story-quote {
        font-size: 1.2rem;
    }

    .story-description {
        font-size: 0.95rem;
    }

    .client-stories {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .stories-header h2 {
        font-size: 1.5rem;
    }

    .stories-carousel {
        min-height: 250px;
        border-radius: 8px;
    }

    .story-overlay {
        padding: 1rem;
    }

    .story-quote {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .story-description {
        font-size: 0.9rem;
    }

    .story-indicator {
        width: 10px;
        height: 10px;
    }

    .story-indicator.active {
        height: 24px;
    }

    .stories-controls {
        padding: 0.75rem;
    }

    .client-stories {
        padding: 40px 0;
    }
}

.carousel-indicators {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 40px;
}

/* Arrows appear first (above dots) */
.carousel-nav-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #2563eb;
    background: transparent;
    color: #2563eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.carousel-nav-arrow.carousel-nav-prev {
    order: -2;
}

.carousel-nav-arrow.carousel-nav-next {
    order: -1;
}

.carousel-nav-arrow:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.carousel-nav-arrow svg {
    width: 12px;
    height: 12px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    display: block;
}

.indicator:hover {
    background: rgba(37, 99, 235, 0.3);
    transform: scale(1.2);
}

.indicator.active {
    background: #2563eb;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

/* Responsive Design - Services Section */
@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-features {
        grid-template-columns: repeat(3, 1fr);
        margin-left: 0;
        padding-top: 0;
        gap: 1rem;
        width: 100%;
    }

    .services-main-panel {
        padding: 3rem;
        overflow: visible;
        margin-right: 0;
    }

    .services-main-title {
        font-size: 2.5rem;
    }

    .services-main-icon {
        width: 120px;
        height: 120px;
    }

    .service-feature-card {
        padding: 1.5rem;
    }

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

    .service-feature-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-layout {
        gap: 2.5rem;
        padding: 0 15px;
    }

    .services-features {
        grid-template-columns: 1fr;
        margin-left: 0;
        padding-top: 0;
        gap: 1.25rem;
        width: 100%;
    }

    .services-main-panel {
        margin-right: 0;
    }

    .services-main-panel {
        padding: 2.5rem;
    }

    .services-main-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .services-main-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .services-main-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .services-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .services-features {
        gap: 1.25rem;
    }

    .service-feature-card {
        padding: 1.75rem;
    }

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

    .service-feature-card p {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 50px 0;
    }

    .services-layout {
        gap: 2rem;
        padding: 0 12px;
    }

    .services-features {
        grid-template-columns: 1fr;
        margin-left: 0;
        padding-top: 0;
        gap: 1rem;
        width: 100%;
    }

    .services-main-panel {
        margin-right: 0;
    }

    .services-main-panel {
        padding: 2rem;
        border-radius: 16px;
    }

    .services-main-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .services-main-description {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        line-height: 1.7;
    }

    .services-main-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.25rem;
    }

    .services-cta-btn {
        padding: 0.8rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .services-features {
        gap: 1rem;
    }

    .service-feature-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .service-feature-card:hover {
        transform: translateX(4px);
    }

    .service-feature-card.featured:hover {
        transform: translateX(4px) scale(1.01);
    }

    .service-feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.625rem;
    }

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

    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.875rem;
    }
}

.service-card:hover {
    border-color: rgba(251, 146, 60, 0.3);
}

.service-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, var(--primary-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 20px 60px rgba(251, 146, 60, 0.4), 0 0 40px rgba(251, 146, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2.5s ease-out infinite;
}

.service-icon svg {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-8deg);
    box-shadow: 0 30px 80px rgba(251, 146, 60, 0.5), 0 0 80px rgba(251, 146, 60, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

@keyframes pulseGlow {
    0% {
        width: 0%;
        height: 0%;
        opacity: 1;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}



/* Clients Section */
.clients {
    background: var(--bg-white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    /*margin-bottom: 4rem;*/
}

.client-logo {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

/* Marquee for client logos */
.clients-marquee {
    overflow: hidden;
    width: 100%;
    display: block;
}

.clients-marquee .marquee-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: marquee-rtl 20s linear infinite;
}

.clients-marquee .client-logo {
    flex: 0 0 auto;
    min-width: 180px;
    padding: 1rem;
    border: none;
    /*background: transparent;*/
}

@keyframes marquee-rtl {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Pause marquee on hover */
.clients-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Testimonials styles and animation */
.testimonials {
    margin-top: 2.5rem;
}

.testimonials .section-title {
    /* reuse section title styling where applicable */
    margin-bottom: 0.75rem;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

/* center carousel and limit width so cards appear larger on wide screens */
.testimonials-carousel .testimonials-track {
    margin: 0 auto;
    max-width: 1100px; /* container width for two cards */
}

.testimonials-track {
    --testimonial-gap: 1.5rem;
    display: flex;
    gap: var(--testimonial-gap);
    align-items: stretch;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Default: mobile - one card at a time */
.testimonial-card {
    flex: 0 0 100%;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Desktop: show two cards side-by-side */
@media (min-width: 900px) {
    /* prefer larger cards, capped by the track max-width */
    .testimonial-card {
        flex: 0 0 calc((100% - var(--testimonial-gap)));
        max-width: 520px;
    }
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.testimonial-author h4 {
    font-weight: 800; /* bolder name */
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonials-controls {
    /* full-height invisible layer to position controls at sides */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none; /* allow clicks only on buttons */
}

.testimonials-controls .testimonial-btn {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(16,24,40,0.06);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 6px 18px rgba(2,6,23,0.06);
    color: var(--text-dark);
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* left / right positions targeting first/last button */
.testimonials-controls .testimonial-btn:first-child { left: 8px; }
.testimonials-controls .testimonial-btn:last-child { right: 8px; }

.testimonials-controls .testimonial-btn:hover,
.testimonials-controls .testimonial-btn:focus {
    transform: translateY(-50%) scale(1.04);
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(2,6,23,0.08);
    outline: none;
}

/* Make controls accessible on mobile */
@media (min-width: 768px) {
    .testimonials-controls { position: static; margin-top: 0.75rem; justify-content: center; }
}

@media (max-width: 900px) {
    .testimonials-track {
        animation: none;
        flex-direction: column;
    }

    .testimonial-card {
        flex: 1 1 auto;
        width: 100%;
    }
}

/* Mobile tweaks for testimonial controls */
@media (max-width: 640px) {
    .testimonials-controls { position: static; display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
    .testimonials-controls .testimonial-btn { width: 40px; height: 40px; }
    .testimonials { grid-template-columns: 1fr; }
    .testimonial-card { flex: 1 1 auto; }
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.client-logo:hover::before {
    opacity: 0.05;
}

.client-logo-text {
    display: none !important;
}

.client-logo img {
    width: 100%;
    height: auto;
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
}

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

.client-placeholder {
    color: var(--text-light);
    font-weight: 600;
}

.testimonials {
    /* center the testimonials section and constrain width for nicer layout */
    display: block;
    width: 100%;
    padding-bottom: 4rem; /* space from footer so cards don't touch */
}

/* Wrap the testimonial cards in a centered container with limited width */
.testimonials .testimonials-inner {
    margin: 0 auto;
    max-width: 1100px; /* keep two wide cards on desktop */
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    align-items: start;
    padding: 0 1rem;
}

/* Desktop: show two testimonials side-by-side and center them */
@media (min-width: 900px) {
    .testimonials .testimonials-inner {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        column-gap: 2.5rem;
    }

    .testimonials .testimonials-inner .testimonial-card {
    max-width: 520px; /* allow two cards to fit within 1100px */
    width: 100%;
    /* Override prior flex-based rules that could force full-width */
    flex: none !important;
    }
}

/* Ensure the section header sits above the carousel and spans full width */
.testimonials .section-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    /* stronger, evenly-distributed shadow on all sides */
    box-shadow: 0 12px 30px rgba(2,6,23,0.12), 0 6px 18px rgba(2,6,23,0.06);
    margin: 0 auto;
    max-width: 560px; /* limit card width so two look balanced */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
}

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

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

.info-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

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

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

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

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

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
    padding-left: 0.5rem;
}

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

.social-links a {
    color: #fb923c;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fb923c;
}

.social-links a:hover {
    color: #ffffff;
    border-color: #fb923c;
    background: #fb923c;
}

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

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

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

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

/* Mobile Menu Backdrop */
.menu-backdrop {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: left;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-link {
        padding: 1.25rem 1.5rem;
        width: 100%;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--bg-light);
        color: var(--purple-color);
        padding-left: 2rem;
    }

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

    .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .nav-item.has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        min-width: auto;
    }
    
    .dropdown-menu-left {
        flex: 1;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1rem;
    }
    
    .dropdown-menu-line {
        display: none;
    }
    
    .dropdown-menu-right {
        display: none;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid var(--border-color);
    }

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

    .dropdown-menu a {
        padding: 1rem 1.5rem 1rem 3rem;
        color: var(--text-dark);
        font-size: 0.95rem;
        background: transparent;
    }

    .dropdown-menu a:hover {
        background: transparent;
        color: var(--purple-color);
        padding-left: 3.5rem;
    }

    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block !important;
        background: var(--text-dark) !important;
    }

    .nav-actions {
        order: -1;
        margin-left: auto;
        gap: 0.75rem;
        flex-shrink: 0;
        flex-direction: column;
        width: 100%;
        margin: 0;
        margin-bottom: 1rem;
    }

    .nav-actions .btn-call,
    .nav-actions .btn-contact {
        width: 100%;
        justify-content: center;
    }

    .nav-actions .nav-lang {
        width: 100%;
        justify-content: center;
    }

    .nav-search,
    .nav-lang {
        padding: 0.4rem;
    }

    .btn-call {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .btn-contact {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
        background: var(--text-dark) !important;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
        background: var(--text-dark) !important;
    }

    .hero-slider {
        height: calc(100vh - 80px);
        min-height: 500px;
    }

    .hero-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .about {
        padding-top: 2rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }

    /* Mobile: Reduce navbar padding to move logo and menu to top */
    .navbar {
        padding: 0;
    }

    .nav-wrapper {
        padding: 0.5rem 0;
        min-height: 60px;
        align-items: center;
    }

    /* Ensure navbar doesn't overlap hero content */
    .navbar {
        height: auto;
        min-height: 60px;
    }

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

    .logo img {
        height: 24px !important;
    }

    .menu-toggle {
        padding: 0.5rem;
        margin: 0;
    }

    /* Hero slider on mobile - ensure title is visible */
    .hero-slider {
        height: calc(100vh - 160px);
        min-height: 400px;
        margin-top: 100px;
        position: relative;
    }

    /* Ensure hero-slide content is visible - adjust alignment */
    .hero-slide {
        align-items: flex-start;
        padding-top: 0;
    }

    .hero-slide .hero-content {
        margin-top: 20px;
        padding-top: 0;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    /* Fix hero sections padding for mobile - ensure title is visible */
    .hero,
    .sd-hero,
    .wp-hero,
    .ma-hero,
    .dm-hero,
    .about-hero,
    .contact-hero,
    .seo-hero,
    .logo-hero {
        padding-top: 160px !important;
        padding-bottom: 60px !important;
        min-height: auto !important;
        margin-top: 0 !important;
        position: relative;
        z-index: 1;
    }

    .hero-content,
    .sd-hero-content,
    .wp-hero-content,
    .ma-hero-content,
    .dm-hero-content,
    .about-hero-content,
    .contact-hero-content,
    .seo-hero-content,
    .logo-hero-content {
        padding: 0 15px !important;
        position: relative;
        z-index: 2;
    }

    /* Mobile: Adjust hero text sizes */
    .hero h1,
    .hero .hero-title,
    .sd-hero h1,
    .wp-hero h1,
    .ma-hero h1,
    .dm-hero h1,
    .about-hero h1,
    .contact-hero h1,
    .seo-hero h1,
    .logo-hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
        padding-top: 0 !important;
        position: relative;
        z-index: 3;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Ensure hero-title is visible on mobile */
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
        padding-top: 0 !important;
        position: relative;
        z-index: 3;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero p,
    .sd-hero p,
    .wp-hero p,
    .ma-hero p,
    .dm-hero p,
    .about-hero p,
    .contact-hero p,
    .seo-hero p,
    .logo-hero p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-controls {
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .about {
        padding-top: 2rem;
    }

    .hero-content {
        padding: 1rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .hero-slide.active .hero-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 3;
    }

    .hero-subtitle {
        font-size: clamp(0.875rem, 3vw, 1rem);
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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

    .btn {
        width: 100%;
    }

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

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

/* Performance Optimizations */
@media (max-width: 968px) {
    .polaroid-carousel {
        gap: 1rem;
    }

    .polaroid {
        width: 160px;
        height: 200px;
    }

    .polaroid:nth-child(1) {
        transform: rotateY(-15deg) rotateZ(-5deg);
    }

    .polaroid:nth-child(2) {
        transform: rotateY(-8deg) rotateZ(-2deg);
    }

    .polaroid:nth-child(3) {
        transform: rotateY(0deg) rotateZ(0deg) scale(1.05);
    }

    .polaroid:nth-child(4) {
        transform: rotateY(8deg) rotateZ(2deg);
    }

    .polaroid:nth-child(5) {
        transform: rotateY(15deg) rotateZ(5deg);
    }

    .who-we-are-header h2 {
        font-size: clamp(1.75rem, 4vw, 3rem);
    }
}

@media (max-width: 640px) {
    .polaroid-carousel {
        gap: 0.75rem;
    }

    .polaroid {
        width: 120px;
        height: 150px;
    }

    .polaroid-img {
        height: 110px;
    }

    .polaroid-caption {
        font-size: 0.75rem;
        padding: 8px 6px 4px;
    }

    .polaroid:nth-child(1),
    .polaroid:nth-child(2) {
        display: none;
    }

    .polaroid:nth-child(3) {
        transform: rotateY(0deg) rotateZ(0deg) scale(1);
        z-index: 10;
    }

    .polaroid:nth-child(4),
    .polaroid:nth-child(5) {
        display: none;
    }

    .who-we-are {
        padding: 60px 1rem;
    }

    .who-we-are-header h2 {
        font-size: 1.75rem;
    }

    .who-we-are-header p {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

