@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2563eb;
    /* Royal blue */
    --primary-hover: #1d4ed8;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 110px;
    /* Space for fixed header + top bar (80px + 30px) */
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--text-dark);
    color: var(--white);
    height: 30px;
    width: 100%;
    transition: var(--transition);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar-left {
    display: flex;
    gap: 1rem;
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
}

.top-bar-right i {
    margin-right: 0.25rem;
    color: var(--primary-color);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.site-header.scrolled .header-container {
    height: 70px;
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.header-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary-color);
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Animated Underline */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Shared */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    display: block;
    /* Ensure it is block on desktop */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 1001;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-link i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-link:hover i {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Specific Dropdowns */
.dropdown-menu.platforms {
    width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dropdown-menu.services {
    width: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dropdown-menu.more {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Contact Button inside Menu */
.btn-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgb(37 99 235 / 39%);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-contact:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: var(--white);
}

.btn-contact::after {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .btn-contact {
        display: none;
        /* Hide 'Get Start' button on header for mobile, maybe move it to menu later if needed */
    }

    .mobile-only-btn,
    .mobile-only-btn .btn-contact {
        display: block !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 0;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-item:last-child {
        border-bottom: none;
        margin-top: 1.5rem;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        display: flex;
        justify-content: space-between;
        font-size: 1.125rem;
    }

    .nav-link::after {
        display: none;
        /* Remove underline on mobile */
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none !important;
        /* Hide by default on mobile */
        border: none;
        padding: 0 0 1rem 1rem;
        background: transparent;
        pointer-events: auto;
    }

    .nav-item:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-menu.active {
        display: block !important;
        animation: slideDown 0.3s ease-out forwards;
    }

    .dropdown-menu.platforms,
    .dropdown-menu.services,
    .dropdown-menu.more {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .dropdown-menu.platforms.active,
    .dropdown-menu.services.active {
        display: grid !important;
    }

    .dropdown-link {
        padding: 0.5rem 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overlay for Mobile */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   Hero Section Styles
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 2rem 4rem 2rem;
    overflow: hidden;
    background-color: #f5f7fc;
    /* Soft light blue/grey bg */
}

/* Background Animation Elements */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: floatShape 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.3);
    /* Primary blue */
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.2);
    /* Purple */
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.15);
    /* Pinkish */
    top: 30%;
    left: 50%;
    animation-duration: 15s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Hero Container */
.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, #3b82f6, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Marquee Styles */
.hero-marquee-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    gap: 2rem;
}

.hero-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-marquee span i {
    color: #ff5722;
    font-size: 0.75rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Tag Cloud */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
    cursor: default;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tag-purple {
    border: 1px solid #a855f7;
    color: #a855f7;
}

.tag-orange {
    border: 1px solid #f97316;
    color: #f97316;
}

.tag-blue {
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
}

.tag-green {
    border: 1px solid #10b981;
    color: #10b981;
}

.tag-blue-dark {
    border: 1px solid #3b82f6;
    color: #3b82f6;
}

.tag-pink {
    border: 1px solid #ec4899;
    color: #ec4899;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.btn-gradient {
    background: linear-gradient(135deg, #3b82f6, #d946ef);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 20px -5px rgba(217, 70, 239, 0.4);
    transition: var(--transition);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(217, 70, 239, 0.6);
    color: var(--white);
}

.btn-outline-pink {
    background: transparent;
    color: #d946ef;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid #d946ef;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-outline-pink:hover {
    background: rgba(217, 70, 239, 0.05);
}

/* Right Content (Image) */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(40px);
}

/* Floating tech nodes (like IT company design) */
.floating-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.node-1 {
    top: 10%;
    left: 5%;
    animation: floatNode 4s ease-in-out infinite alternate;
}

.node-2 {
    bottom: 15%;
    right: 5%;
    animation: floatNode 5s ease-in-out infinite alternate-reverse;
}

@keyframes floatNode {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Adjustments for Hero */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-marquee-container {
        background: rgba(255, 255, 255, 0.9);
    }

    .floating-node {
        display: none;
    }
}

/* =========================================
   Footer Section Styles
   ========================================= */
.site-footer {
    background-color: #0b0f19;
    color: #cbd5e1;
    position: relative;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    /* Removed grid background */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 2rem 60px 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
}

/* Col 1 */
.footer-logo-title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-logo-title span {
    color: #8b5cf6;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #94a3b8;
}

.btn-footer-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.btn-footer-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: #8b5cf6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Col 2 & 3: Links */
.footer-title {
    color: #8b5cf6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
}

.footer-links a:hover i {
    transform: translate(3px, -3px);
}

/* Col 4: Contact Cards */
.footer-col-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(139, 92, 246, 0.15);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #a78bfa;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info span {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.2rem;
}

.contact-info strong {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* Footer Bottom Dark */
.footer-bottom-dark {
    background: #05080f;
    /* Even darker than the footer */
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container-dark {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-spacer {
    flex: 1;
}

.footer-copyright {
    flex: 1;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
}

.footer-payments-bd {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.pay-logo-box {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    overflow: hidden;
}

/* Footer Bottom */
.footer-bottom {
    background: #8b5cf6;
    padding: 1.5rem 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom p {
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    background: #ffffff;
    color: #1e293b;
    padding: 0.25rem 1rem;
    border-radius: 4px;
}

.wise-logo {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 800;
    color: #10b981;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.wise-logo i {
    color: #10b981;
}

.footer-payments .fa-paypal {
    color: #003087;
    /* PayPal Blue */
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-container-dark {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-spacer {
        display: none;
    }

    .footer-payments-bd {
        justify-content: center;
    }
}

/* =========================================
   Architected For Scale Section
   ========================================= */
.scale-section {
    padding: 100px 2rem;
    background-color: #f0f4f8;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.scale-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.12), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.12), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.08), transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    z-index: -1;
}

.scale-container {
    max-width: 1400px;
    margin: 0 auto;
}

.scale-header {
    text-align: center;
    margin-bottom: 4rem;
}

.scale-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.scale-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.scale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    /* Make all cards same height */
}

@keyframes borderGlow {
    0% {
        border-color: rgba(74, 130, 255, 0.3);
        box-shadow: 0 0 10px rgba(74, 130, 255, 0.1);
    }

    50% {
        border-color: rgba(139, 92, 246, 0.8);
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }

    100% {
        border-color: rgba(74, 130, 255, 0.3);
        box-shadow: 0 0 10px rgba(74, 130, 255, 0.1);
    }
}

.scale-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(74, 130, 255, 0.3);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    animation: borderGlow 4s infinite ease-in-out;
}

.scale-card:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
    animation-play-state: paused;
    border-color: rgba(139, 92, 246, 1);
}

.scale-card.featured-card {
    border: 2px solid #4a82ff;
    box-shadow: var(--shadow-md);
    padding-top: 3.5rem;
    /* Space for the badge */
}

.badge-most-requested {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a82ff;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #eef2ff;
    color: #4a82ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.scale-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-features li:last-child {
    margin-bottom: 0;
}

.card-features li i {
    color: #4a82ff;
    font-size: 0.85rem;
}

/* Responsive Scale Grid */
@media (max-width: 1024px) {
    .scale-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scale-grid {
        grid-template-columns: 1fr;
    }

    .scale-header h2 {
        font-size: 2rem;
    }
}

/* Animations for Scale Section */
.scale-header {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.scale-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: #4a82ff;
    /* Using the same blue from the card icon */
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-card i {
    transition: transform 0.3s ease;
}

.btn-card:hover {
    color: var(--primary-hover);
}

.btn-card:hover i {
    transform: translateX(5px);
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.scale-actions {
    text-align: center;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.btn-explore-now {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: var(--white);
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-explore-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.btn-explore-now span,
.btn-explore-now .btn-icon {
    position: relative;
    z-index: 2;
}

.btn-explore-now:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.6);
    color: var(--white);
}

.btn-explore-now:hover::before {
    opacity: 1;
}

.btn-explore-now .btn-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-explore-now:hover .btn-icon {
    transform: translateX(5px) rotate(-45deg);
    background: var(--white);
    color: #2563eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-actions {
    margin-top: auto;
    width: 100%;
    display: flex;
    gap: 0.8rem;
    align-items: stretch;
}

.btn-explore-now.card-btn {
    flex: 1;
    justify-content: space-between;
    padding: 0.6rem 0.6rem 0.6rem 1.2rem;
    font-size: 0.95rem;
}

.btn-demo-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-demo-outline:hover {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

/* =========================================
   Service Details Page
   ========================================= */
.service-details-hero {
    position: relative;
    padding: 160px 2rem 80px 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    overflow: hidden;
}

.hero-content-container {
    position: relative;
    z-index: 10;
}

.breadcrumb {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-align: center;
}

.breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.breadcrumb .current {
    color: #8b5cf6;
    font-weight: 600;
}

.service-content-section {
    padding: 80px 2rem;
    background: #f8fafc;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-main-content .service-main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-main-content h2 {
    font-size: 2.2rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.service-main-content h3 {
    font-size: 1.6rem;
    color: #1e293b;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
}

.service-main-content p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e0e7ff, #f3e8ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h4 {
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.tech-stack-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.tech-badge i {
    font-size: 1.2rem;
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta-box {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.sidebar-cta-box h3 {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 1rem;
}

.sidebar-cta-box p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.scale-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.pricing-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.scale-card .card-desc {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.sidebar-menu-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 20px;
}

.sidebar-menu-box h3 {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services-list li {
    margin-bottom: 0.8rem;
}

.sidebar-services-list li:last-child {
    margin-bottom: 0;
}

.sidebar-services-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: #f8fafc;
    border-radius: 12px;
    color: #475569;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-services-list a i {
    font-size: 0.8rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.sidebar-services-list a:hover,
.sidebar-services-list a.active {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.sidebar-services-list a:hover i,
.sidebar-services-list a.active i {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-details-hero {
        padding: 120px 1rem 60px 1rem;
    }
}

/* =========================================
   Stats Counter Section
   ========================================= */
.stats-section {
    position: relative;
    padding: 80px 2rem;
    overflow: hidden;
    background-color: #f8fafc;
}

.stats-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 50%, rgba(167, 139, 250, 0.4), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(251, 146, 60, 0.3), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.3), transparent 40%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 0;
    opacity: 0.9;
}

.stats-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stat-icon-wrapper {
    flex-shrink: 0;
}

.stat-icon-bg {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.stat-icon-bg.bg-purple {
    color: #8b5cf6;
}

.stat-icon-bg.bg-blue {
    color: #3b82f6;
}

.stat-icon-bg.bg-yellow {
    color: #f59e0b;
}

.stat-icon-bg.bg-pink {
    color: #ec4899;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #6366f1;
    /* Indigo matching the design */
    margin-bottom: 0.15rem;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* =========================================
   Our Services Section
   ========================================= */
.services-section {
    position: relative;
    padding: 100px 2rem;
    overflow: hidden;
    background-color: #f8fafc;
}

.services-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.services-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.text-orange {
    color: #ff5722;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.03);
}

.service-content {
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    flex-grow: 1;
}

.service-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-quote {
    background: #f3e8ff;
    color: #8b5cf6;
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-quote:hover {
    background: #e9d5ff;
    color: #7c3aed;
}

.btn-arrow {
    background: #8b5cf6;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-arrow:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 2rem;
    }
}

/* =========================================
   Our Working Process Section
   ========================================= */
.process-section {
    position: relative;
    padding: 100px 2rem;
    background-color: #0f172a;
    /* Deep Slate/Navy */
    overflow: hidden;
}

.process-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15), transparent 40%);
    z-index: 0;
    background-size: 200% 200%;
}

@keyframes moveMeshBg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Shapes Animation */
.floating-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.shape-dot-round {
    width: 100px;
    height: 100px;
    border: 3px dotted rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation: floatPulse 6s ease-in-out infinite;
}

.shape-dot-round-2 {
    width: 60px;
    height: 60px;
    border: 3px dashed rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
    animation: floatPulse 8s ease-in-out infinite reverse;
}

.shape-solid-round {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), rgba(139, 92, 246, 0));
    border-radius: 50%;
    bottom: 30%;
    left: 20%;
    animation: floatGleam 5s ease-in-out infinite;
}

.shape-triangle {
    width: 80px;
    height: 80px;
    background: rgba(96, 165, 250, 0.15);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 25%;
    right: 10%;
    animation: floatRotate 10s linear infinite;
}

.shape-triangle-2 {
    width: 50px;
    height: 50px;
    background: rgba(167, 139, 250, 0.2);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 70%;
    left: 45%;
    animation: floatRotate 12s linear infinite reverse;
}

@keyframes floatPulse {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
}

@keyframes floatGleam {
    0% {
        transform: translateY(0);
        opacity: 0.1;
        filter: brightness(1);
    }

    50% {
        transform: translateY(15px);
        opacity: 0.9;
        filter: brightness(1.5);
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    }

    100% {
        transform: translateY(0);
        opacity: 0.1;
        filter: brightness(1);
    }
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.3;
    }
}

/* Atom / Molecule Animations */
.atom-animation {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    transform-style: preserve-3d;
}

.atom-1 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 5%;
    opacity: 0.4;
    animation: floatPulse 12s ease-in-out infinite;
}

.atom-2 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 5%;
    opacity: 0.3;
    animation: floatPulse 9s ease-in-out infinite reverse;
}

.atom-3 {
    width: 90px;
    height: 90px;
    top: 10%;
    left: 40%;
    opacity: 0.25;
    animation: floatPulse 14s ease-in-out infinite;
}

.atom-4 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 25%;
    opacity: 0.2;
    animation: floatPulse 11s ease-in-out infinite reverse;
}

.atom-5 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    right: 40%;
    opacity: 0.35;
    animation: floatPulse 15s ease-in-out infinite;
}

.atom-6 {
    width: 220px;
    height: 220px;
    bottom: -5%;
    left: 30%;
    opacity: 0.15;
    animation: floatPulse 18s ease-in-out infinite reverse;
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15%;
    height: 15%;
    background: #60a5fa;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px #60a5fa, 0 0 40px #8b5cf6;
    animation: floatGleam 4s infinite;
}

.orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: inset 0 0 10px rgba(139, 92, 246, 0.1), 0 0 10px rgba(139, 92, 246, 0.1);
}

.orbit-1 {
    animation: spinOrbit1 6s linear infinite;
}

.orbit-2 {
    animation: spinOrbit2 6s linear infinite;
}

.orbit-3 {
    animation: spinOrbit3 6s linear infinite;
}

@keyframes spinOrbit1 {
    0% {
        transform: rotateX(65deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(65deg) rotateY(0deg) rotateZ(360deg);
    }
}

@keyframes spinOrbit2 {
    0% {
        transform: rotateX(65deg) rotateY(60deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(65deg) rotateY(60deg) rotateZ(360deg);
    }
}

@keyframes spinOrbit3 {
    0% {
        transform: rotateX(65deg) rotateY(120deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(65deg) rotateY(120deg) rotateZ(360deg);
    }
}

.process-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    margin-bottom: 5rem;
}

.process-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.text-white {
    color: #ffffff;
}

.text-light-gray {
    color: #94a3b8;
    font-size: 1.1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connecting line between cards on desktop */
@media (min-width: 1025px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 40px;
        /* Align with icons */
        left: 10%;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.5), rgba(139, 92, 246, 0));
        z-index: 0;
    }
}

.process-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.process-step-number {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: -1;
    transition: color 0.4s ease;
}

.process-card:hover .process-step-number {
    color: rgba(139, 92, 246, 0.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
}

.process-content h3 {
    color: #f8fafc;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Custom Scroll Animation */
.process-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-header h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   Client Reviews Section
   ========================================= */
.reviews-section {
    padding: 100px 2rem;
    background-color: #ffffff;
    overflow: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-header {
    margin-bottom: 4rem;
}

.reviews-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.text-orange-gradient {
    background: linear-gradient(135deg, #ff6b4a, #ff4122);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-card {
    flex: 0 0 50%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.review-card-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 3rem 2.5rem 1.5rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-stars {
    text-align: center;
    margin-bottom: 10px;
}

.review-stars i {
    color: #ff9800;
    background: linear-gradient(135deg, #a78bfa, #fbcfe8, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    margin: 0 5px;
}

.review-text {
    text-align: center;
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
    flex-grow: 1;
}

.review-footer {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0 0 0.3rem 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
}

.reviewer-info span {
    color: #8b5cf6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #a78bfa, #fbcfe8, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #8b5cf6;
    transform: scale(1.3);
}

/* =========================================
   Why Choose Us Section
   ========================================= */
.choose-section {
    padding: 100px 2rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.choose-header h2 {
    color: #1e293b;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.choose-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.choose-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.choose-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.04);
}

.choose-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.choose-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.choose-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .choose-section {
        padding: 60px 1rem;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .choose-header h2 {
        font-size: 2.2rem;
    }
}

/* Responsive Reviews */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 1rem;
    }

    .reviews-header h2 {
        font-size: 2.2rem;
    }

    .review-card-inner {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .review-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .reviewer-info {
        flex-direction: column;
    }
}

/* =========================================
   Inquiry Section
   ========================================= */
.inquiry-section {
    padding: 80px 2rem;
    background-color: #f8fafc;
}

.inquiry-wrapper {
    background: linear-gradient(135deg, #f3e8ff 0%, #e0e7ff 50%, #eff6ff 100%);
    border-radius: 30px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.inquiry-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.text-highlight {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inquiry-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    width: 90%;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #f3e8ff;
    color: #8b5cf6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-details h4 {
    margin: 0 0 0.25rem 0;
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: #334155;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.inquiry-form-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.inquiry-form textarea {
    height: 80px;
    resize: vertical;
}

.inquiry-form .full-width {
    width: 100%;
}

.btn-inquiry {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Responsive Inquiry Section */
@media (max-width: 1024px) {
    .inquiry-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .inquiry-section {
        padding: 60px 1rem;
    }

    .inquiry-wrapper {
        padding: 2rem 1.5rem;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-content h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   Portfolio Section
   ========================================= */
.portfolio-section {
    padding: 100px 2rem;
    background: #ffffff;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
}

.portfolio-link:hover {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #ffffff;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info span {
    display: inline-block;
    color: #8b5cf6;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.portfolio-info h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.btn-view-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #8b5cf6;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    text-decoration: none;
}

.btn-view-more::before {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    z-index: -1;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-view-more:hover {
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.35);
    transform: translateY(-3px);
}

.btn-view-more:hover::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}