/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
   
    
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
    padding: 0px;

    overflow-x: hidden;


    
   
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.navbar {
            background: rgba(248, 250, 252, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            padding: 1rem 0;
            z-index: 1000;
        }

        .top-navbar {
            position: sticky;
            top: 0;
            transition: opacity 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e293b;
        }

        .main-logo {
            width: 120px;
            overflow: hidden;
        }

        .nav-links-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-menu {
            display: flex;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            text-decoration: none;
            color: #64748b;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .nav-link:hover {
            color: #3b82f6;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .contact-btn {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
        }

        .contact-btn:hover {
            background: #2563eb;
            transform: translateY(-1px);
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
        }
        .btn-secondary-demo {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
   padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    
}

        /* Bottom Navbar */
        .bottom-navbar {
            position: fixed;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            background: rgb(12, 16, 20);
            padding: 0.5rem 2rem;
            border-radius: 1rem;
            box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
            display: none;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            width: 80%;
            max-width: 800px;
            z-index: 1000;
        }

        .bottom-navbar.active {
            display: flex;
        }

        .bottom-navbar .nav-list {
            gap: 2rem;

        }

        .bottom-navbar .nav-link {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.8rem;
            padding-top: 1rem;
            padding-bottom: 1rem;
            
        }

        .bottom-navbar .nav-link:hover {
            color: #3b82f6;
        }

        .bottom-navbar .contact-btn {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
        .bottom-navbar .btn-secondary-demo {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            color: #f1f1f1cf;
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(189, 196, 233, 0.089);
        }

       

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            margin-left: auto;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #64748b;
            transition: 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Services Dropdown */
        .services-dropdown {
            position: relative;
        }

        .dropdown-box {
            position: absolute;
            right: -265px;
            background: #1c2f3e;
            padding: 1rem;
            border-radius: 0.75rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 999;
            width: 600px;
        }

        .top-dropdown {
            top: 100%;
            margin-top: 14px;
        }

        .bottom-dropdown {
            bottom: 100%;
            margin-bottom: 14px;
        }

        .services-dropdown:hover .dropdown-box,
        .dropdown-box:hover {
            display: block;
        }

        .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .service-card {
            display: block;
            text-decoration: none;
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(13, 148, 136, 0.1));
            padding: 1rem;
            border-radius: 0.5rem;
            text-align: center;
            font-weight: 500;
            color: #1e293b;
            transition: all 0.3s ease;
            cursor: pointer;
            color: #f1f1f1;
        }

        .service-card:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 32px 64px rgba(20, 184, 166, 0.2);
            border-color: rgba(20, 184, 166, 0.3);
            color: #fff;
        }

        .service-card .icon {
            display: block;
            margin: 0 auto 8px auto;
            width: 28px;
            height: 28px;
            stroke-width: 2.2;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .service-card .icon path {
            stroke-dasharray: 300;
            stroke-dashoffset: 300;
            animation: none;
        }

        .services-dropdown:hover .icon path {
            animation: draw 4s ease forwards;
        }

        .service-card:hover .icon {
            transform: scale(1.2) rotate(5deg);
            filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.6));
            transition: transform 0.6s ease, filter 0.6s ease;
        }

        @keyframes draw {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* Side Panel */
        

/* Side Panel */
/* ==== SIDE PANEL ==== */
/* ==== SIDE PANEL ==== */
.side-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #1e293b;
    color: #e2e8f0;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 2px solid rgba(59, 130, 246, 0.2);
}

.side-panel.active {
    right: 0;
}

/* ==== HEADER ==== */
.side-panel-header {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem 0.75rem;   /* smaller padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#close-panel {
    font-size: 1.6rem;  /* a bit smaller */
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s;
    line-height: 1;
}
#close-panel:hover {
    color: #3b82f6;
}

/* ==== CONTENT ==== */
.side-panel-content {
    padding: 0.75rem 1rem; /* reduced padding */
    flex: 1;
    overflow-y: auto;
}

/* Section titles */
.side-panel-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1rem 0 0.5rem;  /* less top margin */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.25rem;
}

/* ==== SERVICES ==== */
.side-services {
    list-style: none;
    padding: 0.25rem 0;
    margin: 0;
}

.side-services li {
    margin: 0.35rem 0;
}

.side-services a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    padding: 0.4rem 0.6rem;
    border-radius: 0.4rem;
    transition: all 0.3s;
}

.side-services a:hover {
    color: #fff;
    background: rgba(59, 130, 246, 0.15);
}

/* ==== SOCIALS ==== */
.side-socials {
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.side-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #f1f1f1;
    transition: all 0.3s;
    font-size: 1rem;
}

.side-socials a:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}
/* ==== FOOTER CTA ==== */
.side-panel-footer {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.side-panel-footer a {
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

/* Contact button */
.btn-demo {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}
.btn-demo:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Demo button (primary CTA) */
.btn-contact {
    background: #3b82f6;
    color: #fff;
}
.btn-contact:hover {
    background: #2563eb;
}


/* ===== HERO SECTION ===== */
.hero {
    padding: 4rem 0 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}





.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
a{
    text-decoration: none;
}


.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.8s ease;
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.text-blue {
    color: #3b82f6;
}

.text-teal {
    color: #14b8a6;
}

.text-ampersand {
    color: #14b8a6;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 12;
   
    
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
    text-decoration: none;
   
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1);
}


.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    
}
.hero-buttons * {
  position: relative;
  z-index: 10;
}


.btn-secondary:hover,.btn-secondary-demo:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}


/* Trust Section */
.trust-section {
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    background-color: transparent;
    z-index: 1;
}

.trust-text {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.3s ease;
}

.trust-item:hover {
    color: #64748b;
}

.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-icon.hospitals {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.trust-icon.clinics {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.trust-icon.health-tech {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.trust-item:hover .trust-icon {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== ABOUT SECTION ===== */
.horizontal-scroll-container {
    position: relative;
    min-height: 100vh;
    border-radius: 64px;
}

.background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
}

.dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.2;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem); /* 28px → 40px */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: #26037e;
}

.title-gradient {
    display: block;
    background: linear-gradient(90deg, #60a5fa 0%, #a855f7 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1rem;
    color: #2a2a2b;
    line-height: 1.6;
    max-width: 32rem;
    margin-bottom: 2rem;
}

.progress-section {
    margin-top: 2rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.progress-bar {
    height: 0.5rem;
    background: #d0d1d3;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    transition: width 0.3s ease-out;
    width: 0%;
}

.cards-container {
    position: relative;
    height: 400px;
}

.cards-wrapper {
    position: absolute;
    inset: 0;
}

.card {
    position: absolute;
    inset: 0;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.7s cubic-bezier(0.1, 0, 0.2, 1);
    transform: translateX(100%) scale(0.7);
    opacity: 0.1;
    z-index: 1;
}

.card.active {
    transform: translateX(0%) scale(1);
    opacity: 1;
    z-index: 10;
}

.card.previous {
    transform: translateX(-100%) scale(0.9);
    opacity: 0;
    z-index: 5;
}

.card-green {
    background: linear-gradient(135deg, rgba(11, 162, 67, 1) 0%, rgba(34, 197, 94, 1) 100%);
}

.card-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0.6) 100%);
}

.card-purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.6) 0%, rgba(147, 51, 234, 0.6) 100%);
}

.card-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.6) 0%, rgba(249, 115, 22, 0.6) 100%);
}

.card-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.6) 0%, rgba(239, 68, 68, 0.6) 100%);
}

.card-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.6) 0%, rgba(6, 182, 212, 0.6) 100%);
}

.card-indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.6) 0%, rgba(99, 102, 241, 0.6) 100%);
}

.card-yellow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.6) 0%, rgba(245, 158, 11, 0.6) 100%);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.card-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: #fafffc;
}

.card-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #fefefe;
}

.card-icon.purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(147, 51, 234, 0.1) 100%);
    color: #ffffff;
}

.card-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
    color: #ffffff;
}

.card-icon.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #ffffff;
}

.card-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: #ffffff;
}

.card-icon.indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
    color: #ffffff;
}

.card-icon.yellow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #ffffff;
}

.card-content h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem); /* 20px → 28px */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.card-content p {
    font-size: clamp(0.95rem, 2vw, 1.125rem); /* 15px → 18px */
    color: #f1f1f1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.step-number {
    font-size: 0.875rem;
    font-weight: 500;
}

.card-counter {
    font-size: 0.75rem;
    color: #6b7280;
}

.decorative-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    filter: blur(20px);
}

.decorative-element.top-right {
    top: 1rem;
    right: 1rem;
    width: 6rem;
    height: 6rem;
}

.decorative-element.bottom-left {
    bottom: 1rem;
    left: 1rem;
    width: 4rem;
    height: 4rem;
}
.card-icon svg {
    display: block;
    width: 50%;
    height: 50%;
    margin: 0;
    transform: translateY(1px); /* small nudge if needed */
}




@media (max-width: 768px) {
  .sticky-container {
    position: relative;   /* stop sticky */
    height: auto;         /* allow full height */
    overflow: visible;    /* let grid expand */
    display: block;
  }

  .cards-container {
    height: auto;         /* let all cards show */
  }

  .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
    position: relative;   /* reset absolute */
  }

  .left-content {
    text-align: center;
    align-items: center; /* center flex items horizontally */
  }

  .main-title,
  .description {
    margin-left: auto;
    margin-right: auto;
  }

  /* Reset all card states */
  .card,
  .card.active,
  .card.previous {
    position: relative;   /* normal flow */
    inset: auto;
    transform: none !important;
    opacity: 1 !important; /* all visible */
    z-index: auto !important;
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card-icon {
    display: flex;                 /* make flex */
    align-items: center;           /* center vertically */
    justify-content: center;       /* center horizontally */
    margin: 0 auto 1rem auto;      /* center block in card and spacing below */
    width: 4rem;
    height: 4rem;
  }

  .card-icon svg {
    width: 50%;
    height: 50%;
    margin: 0;                     /* remove previous margin */
    transform: none;               /* remove nudge */
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .cards-wrapper {
    grid-template-columns: 1fr; /* stack 1 per row */
    gap: 1.25rem;
  }

  .card,
  .card.active,
  .card.previous {
    padding: 1.25rem;
    border-radius: 0.9rem;
  }

  .card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  
}




/* approach */
.approach-container {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 1rem;
      width: 100%;
    }

    /* 2-Column Grid Layout */
    .approach-main-grid {
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 2rem;
    }

    .approach-left-side {
      display: flex;
      flex-direction: column;
      justify-content: center;
      
      border-radius: 1.5rem;
    }

    .approach-left-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #1e293b;
      margin-bottom: 1rem;
    }

    .approach-left-subtitle {
      font-size: 1.125rem;
      line-height: 1.75rem;
      color: #374151;
      margin-bottom: 1.5rem;
    }

    .approach-main-wrapper {
      background: transparent;
    }

    /* Tabs Container */
    .approach-tabs-container {
      background: #a4bde6;
      backdrop-filter: blur(10px);
      border-radius: 1.5rem 1.5rem 0 0;
      padding: 0.5rem;
      margin-bottom: 0;
      
      border: 1px solid rgba(255,255,255,0.2);
    }

    .approach-tabs-wrapper {
      display: flex;
      gap: 0.5rem;
      
    }

    .approach-tab-button {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 1.5rem;
      border-radius: 1rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      
    }

    .approach-tab-button.active {
      background: rgba(255,255,255,0.25);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .approach-tab-button:hover:not(.active) { 
      background: rgba(255,255,255,0.15);
      transform: translateY(-1px);
    }

    .approach-tab-icon {
      width: 2rem;
      height: 2rem;
      border-radius: 0.5rem;
      
      display: flex;
      align-items: center;
      justify-content: center;
      
      font-size: 1rem;
      
    }

    .approach-tab-text { 
      color: white; 
      font-weight: 600; 
      font-size: 0.875rem; 
    }

    /* Main Content */
    .approach-content-area {
      background: #99b1ef;
      backdrop-filter: blur(20px);
      border-radius: 0 0 1.5rem 1.5rem;
      padding: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.5s ease;
      box-shadow: 0 20px 40px rgba(123, 172, 255, 0.274);
   
    }

    .approach-content-left { flex: 1; max-width: 28rem; }
    .approach-content-title { 
      font-size: 2.25rem; 
      font-weight: bold; 
      color: white; 
      margin-bottom: 1.5rem; 
    }
    .approach-content-description { 
      color: #ffffff; 
      font-size: 1.125rem; 
      line-height: 1.75; 
    }

    .approach-content-right { 
      flex: 1; 
      display: flex; 
      justify-content: flex-end; 
    }

    /* Healthcare Dashboard Mockup */
    .approach-dashboard-mockup { 
      width: 22rem; 
      position: relative; 
    }

    .approach-dashboard-header {
      background: #374151;
      border-radius: 1rem 1rem 0 0;
      padding: 1.5rem;
      color: white;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .approach-header-title {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .approach-header-subtitle {
      font-size: 0.875rem;
      opacity: 0.9;
    }

    .approach-dashboard-body {
      background: rgb(255, 255, 255);
      border-radius: 0 0 1rem 1rem;
      padding: 1.5rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border: 1px solid #e2e8f0;
    }

    .approach-metric-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .approach-metric-card {
      background: #f8fafc;
      border-radius: 0.75rem;
      padding: 1rem;
      border-left: 3px solid;
      transition: all 0.3s ease;
    }

    .approach-metric-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .approach-metric-value {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 0.25rem;
    }

    .approach-metric-label {
      font-size: 0.75rem;
      color: #64748b;
      text-transform: uppercase;
      font-weight: 500;
    }

    .approach-workflow-section {
      background: #f8fafc;
      border-radius: 0.75rem;
      padding: 1.25rem;
      margin-bottom: 1rem;
    }

    .approach-workflow-title {
      font-size: 0.875rem;
      font-weight: 600;
      color: #374151;
      margin-bottom: 1rem;
    }

    .approach-process-steps {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .approach-process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
    }

    .approach-step-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    .approach-step-label {
      font-size: 0.75rem;
      color: #64748b;
      text-align: center;
    }

    .approach-step-connector {
      height: 2px;
      background: #e2e8f0;
      flex: 1;
      margin: 0 0.5rem;
      margin-top: -1.25rem;
    }

    .approach-progress-bar {
      background: #e2e8f0;
      border-radius: 1rem;
      height: 0.5rem;
      overflow: hidden;
      margin-top: 1rem;
    }

    .approach-progress-fill {
      background: linear-gradient(90deg, #10b981, #3b82f6);
      height: 100%;
      border-radius: 1rem;
      transition: width 0.5s ease;
    }

    .approach-floating-card {
      position: absolute;
      background: white;
      border-radius: 0.75rem;
      padding: 1rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      border: 1px solid #e2e8f0;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-5px); }
    }

    .approach-alert-card {
      top: -1rem;
      right: -1rem;
      width: 4rem;
      height: 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      animation-delay: -1s;
    }

    .approach-insights-card {
      bottom: -1rem;
      left: -2rem;
      width: 6rem;
      padding: 0.75rem;
      animation-delay: -2s;
    }

    .approach-insights-icon {
      width: 2rem;
      height: 2rem;
      border-radius: 0.375rem;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      font-size: 0.875rem;
    }

    /* Phase-specific styling */
    .phase-discover .approach-metric-card:nth-child(1) { border-left-color: #3b82f6; }
    .phase-discover .approach-metric-card:nth-child(2) { border-left-color: #10b981; }
    .phase-discover .approach-metric-value { color: #1e40af; }

    .phase-design .approach-metric-card:nth-child(1) { border-left-color: #f59e0b; }
    .phase-design .approach-metric-card:nth-child(2) { border-left-color: #8b5cf6; }
    .phase-design .approach-metric-value { color: #7c2d12; }

    .phase-automate .approach-metric-card:nth-child(1) { border-left-color: #10b981; }
    .phase-automate .approach-metric-card:nth-child(2) { border-left-color: #06b6d4; }
    .phase-automate .approach-metric-value { color: #047857; }

    .phase-evolve .approach-metric-card:nth-child(1) { border-left-color: #ec4899; }
    .phase-evolve .approach-metric-card:nth-child(2) { border-left-color: #6366f1; }
    .phase-evolve .approach-metric-value { color: #9333ea; }



    /* Different background colors per tab button */
.approach-tab-button:nth-child(1) {
  background: rgba(59, 130, 246, 0.5); /* Blue */
}
.approach-tab-button:nth-child(1) .approach-tab-icon {
 
  color: white;
  
}

.approach-tab-button:nth-child(2) {
  background: rgba(16, 185, 129, 0.5); /* Green */
}
.approach-tab-button:nth-child(2) .approach-tab-icon {
 
  color: white;
}

.approach-tab-button:nth-child(3) {
  background: rgba(245, 158, 11, 0.5); /* Amber */
}
.approach-tab-button:nth-child(3) .approach-tab-icon {

  color: white;
}

.approach-tab-button:nth-child(4) {
  background: rgba(239, 68, 68, 0.5); /* Red */
}
.approach-tab-button:nth-child(4) .approach-tab-icon {
   
  color: white;

}




    

    /* Responsive */
   
/* Base (≥1400px stays as is from your original CSS) */

/* Large screens ≤1200px */
@media (max-width: 1200px) {
  .approach-left-title {
    font-size: 2.25rem;
  }
  .approach-left-subtitle {
    font-size: 1rem;
  }
  .approach-content-title {
    font-size: 2rem;
  }
  .approach-content-description {
    font-size: 1rem;
  }
  .approach-dashboard-mockup {
    width: 20rem;
  }
}

/* Medium screens ≤1024px */
@media (max-width: 1024px) {
  .approach-main-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
  }
  .approach-left-title {
    font-size: 2rem;
  }
  .approach-content-title {
    font-size: 1.75rem;
  }
  .approach-dashboard-mockup {
    width: 18rem;
  }
  .approach-metric-value {
    font-size: 1.25rem;
  }
}

/* Tablets ≤768px */
@media (max-width: 768px) {
 
  .approach-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .approach-left-side {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1.5rem;
  }
  .approach-left-title {
    font-size: 1.75rem;
  }
  .approach-left-subtitle {
    font-size: 1rem;
  }
  .approach-content-area {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }
  .approach-content-left {
    max-width: none;
    text-align: center;
  }
  .approach-content-title {
    font-size: 1.5rem;
  }
  .approach-content-description {
    font-size: 0.95rem;
  }
  .approach-dashboard-mockup {
    width: 100%;
    max-width: 20rem;
  }
  .approach-tabs-wrapper {
    flex-wrap: wrap;
  }
  .approach-tab-button {
    flex: 1 1 45%;
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
  }
}

/* Mobile ≤480px */
@media (max-width: 480px) {
  .approach-left-side {
    padding: 1rem;
  }
  .approach-left-title {
    font-size: 1.5rem;
  }
  .approach-left-subtitle {
    font-size: 0.9rem;
  }
  .approach-content-area {
    padding: 1rem;
    gap: 1.5rem;
  }
  .approach-content-title {
    font-size: 1.25rem;
  }
  .approach-content-description {
    font-size: 0.875rem;
  }
  .approach-dashboard-mockup {
    max-width: 16rem;
  }
  .approach-metric-value {
    font-size: 1.125rem;
  }
  .approach-metric-label {
    font-size: 0.7rem;
  }
  .approach-step-label {
    font-size: 0.65rem;
  }
  .approach-tab-button {
    flex: 1 1 100%;
    justify-content: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
  }
  .approach-tab-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .approach-tab-text {
    font-size: 0.75rem;
  }
}

/* ===== FOCUS AREAS SECTION ===== */
.focus-areas-section {
    padding: 5rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10rem;
    overflow-x: hidden;
}

.focus-bg-svg {
    position: absolute;
    top: 40px;
    left: 55%;
    transform: translateX(-50%);
    width: 1600px;    /* set a fixed width */
    height: auto;    /* preserve aspect ratio */
    z-index: 0;
    pointer-events: none;
}


.focus-areas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.focus-areas-header {
    text-align: center;
    margin-bottom: 4rem;
}

.focus-areas-title {
    font-size: clamp(2rem, 3vw, 2.5rem); 
    /* 32px mobile → 40px desktop */
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.focus-areas-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem); 
    /* 16px → 18px */
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.focus-area-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(186, 230, 253, 0.6);
    box-shadow: 0 8px 32px rgba(125, 211, 252, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.focus-area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(147, 197, 253, 0.3), 
        rgba(125, 211, 252, 0.25),
        rgba(186, 230, 253, 0.3)
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 1.5rem;
}

.focus-area-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 32px 64px rgba(59, 130, 246, 0.3);
    border-color: rgba(147, 197, 253, 0.8);
}

.focus-area-item:hover::before {
    opacity: 1;
}

.svg-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-container svg {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-svg {
    width: 48px;
    height: 48px;
    z-index: 3;
    color: #04b387; /* Baby blue */
}

.secondary-svg {
    width: 32px;
    height: 32px;
    z-index: 2;
    color: #3b82f6; /* Medium blue */
    opacity: 0;
}

.tertiary-svg {
    width: 24px;
    height: 24px;
    z-index: 1;
    color: #1d4ed8; /* Deep blue */
    opacity: 0;
}

/* SVG Animation Classes */
.telehealth .secondary-svg {
    transform: translate(-40px, -30px) scale(0.8);
}

.telehealth .tertiary-svg {
    transform: translate(35px, 25px) scale(0.8);
}

.telehealth:hover .secondary-svg,
.telehealth:hover .tertiary-svg {
    opacity: 1;
    transform: translate(-40px, -30px) scale(1);
}

.telehealth:hover .tertiary-svg {
    transform: translate(35px, 25px) scale(1);
}

.lab-ops .secondary-svg {
    transform: translate(-45px, 20px) scale(0.7);
}

.lab-ops .tertiary-svg {
    transform: translate(40px, -25px) scale(0.7);
}

.lab-ops:hover .secondary-svg,
.lab-ops:hover .tertiary-svg {
    opacity: 1;
    transform: translate(-45px, 20px) scale(1);
}

.lab-ops:hover .tertiary-svg {
    transform: translate(40px, -25px) scale(1);
}

.revenue .secondary-svg {
    transform: translate(-35px, -35px) scale(0.8);
}

.revenue .tertiary-svg {
    transform: translate(40px, 30px) scale(0.8);
}

.revenue:hover .secondary-svg,
.revenue:hover .tertiary-svg {
    opacity: 1;
    transform: translate(-35px, -35px) scale(1);
}

.revenue:hover .tertiary-svg {
    transform: translate(40px, 30px) scale(1);
}

.prior-auth .secondary-svg {
    transform: translate(-42px, 15px) scale(0.8);
}

.prior-auth .tertiary-svg {
    transform: translate(35px, -30px) scale(0.8);
}

.prior-auth:hover .secondary-svg,
.prior-auth:hover .tertiary-svg {
    opacity: 1;
    transform: translate(-42px, 15px) scale(1);
}

.prior-auth:hover .tertiary-svg {
    transform: translate(35px, -30px) scale(1);
}

.health-data .secondary-svg {
    transform: translate(-38px, -25px) scale(0.8);
}

.health-data .tertiary-svg {
    transform: translate(42px, 28px) scale(0.8);
}

.health-data:hover .secondary-svg,
.health-data:hover .tertiary-svg {
    opacity: 1;
    transform: translate(-38px, -25px) scale(1);
}

.health-data:hover .tertiary-svg {
    transform: translate(42px, 28px) scale(1);
}

.gen-ai .secondary-svg {
    transform: translate(-40px, 30px) scale(0.8);
}

.gen-ai .tertiary-svg {
    transform: translate(38px, -32px) scale(0.8);
}

.gen-ai:hover .secondary-svg,
.gen-ai:hover .tertiary-svg {
    opacity: 1;
    transform: translate(-40px, 30px) scale(1);
}

.gen-ai:hover .tertiary-svg {
    transform: translate(38px, -32px) scale(1);
}

.svg-container::before,
.svg-container::after {
    content: '';
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.svg-container::before {
    width: 60px;
    top: 45%;
    left: 15%;
    transform: rotate(-25deg);
}

.svg-container::after {
    width: 70px;
    top: 55%;
    right: 15%;
    transform: rotate(25deg);
}

.focus-area-item:hover .svg-container::before,
.focus-area-item:hover .svg-container::after {
    opacity: 0.6;
}

.focus-area-item:hover .primary-svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5));
}

.focus-area-item:hover .focus-area-title {
    color: #0ea5e9;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.focus-area-title {
    font-size: clamp(1.125rem, 1.8vw, 1.4rem); 
    /* 18px → 22px */
    font-weight: 600;
    color: #0d277fcd; /* Deep blue */
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.focus-area-description {
    font-size: clamp(0.9rem, 1.2vw, 1rem); 
    /* 14px → 16px */
    color: #475569; /* Blue-gray */
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.focus-area-item:hover .focus-area-description {
    color: #334155; /* Darker blue-gray on hover */
}

.focus-area-item:hover .secondary-svg::before,
.focus-area-item:hover .tertiary-svg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #0ea5e9, #3b82f6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
}

.focus-area-item:hover .secondary-svg {
    transition-delay: 0.1s;
}

.focus-area-item:hover .tertiary-svg {
    transition-delay: 0.2s;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-title {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
    font-weight: 700;
    color: #444b58;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}


.why-choose-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.why-choose-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: linear-gradient(180deg, #9ea4a4 0%, #ffffff 100%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--glow-height, 0);
    background: linear-gradient(180deg, #a2b1ea, rgba(13, 148, 136, 0.8));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.6);
    z-index: 2;
    transition: height 0.2s linear;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    
}

.timeline-item.left {
    justify-content: flex-start;
}

.timeline-item.right {
    justify-content: flex-end;
}

.timeline-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    max-width: 350px;
    text-align: center;
    cursor: pointer;
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
}

.timeline-title {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.timeline-description {
    font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
    color: #64748b;
    line-height: 1.6;
}


.timeline-card:hover .timeline-title {
    color: #0d9488;
}



.timeline-card:hover .timeline-description {
    color: #475569;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    background: #14b8a6;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #4864e2;
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.3);
}

.timeline-connector {
    position: absolute;
    top: 50%;
    height: 2px;
    z-index: 1;
    background-image: repeating-linear-gradient(
        to right,
        #14b8a6 0px,
        #14b8a6 4px,
        transparent 4px,
        transparent 8px
    );
    background-size: 8px 100%;
    animation: move-dots 1s linear infinite;
    transition: opacity 0.3s ease;
}

.timeline-item.left .timeline-connector {
    left: 0;
    width: calc(50% - 20px);
    transform: translateY(-50%);
}

.timeline-item.right .timeline-connector {
    right: 0;
    width: calc(50% - 20px);
    transform: translateY(-50%);
}

.timeline-item:hover .timeline-connector {
    opacity: 0.8;
    filter: drop-shadow(0 0 8px #a2b1ea);
}

@keyframes move-dots {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 8px 0;
    }
}

.timeline-card:hover .secondary-svg::before,
.timeline-card:hover .tertiary-svg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #14b8a6;
 
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-card:hover .secondary-svg {
    transition-delay: 0.1s;
}

.timeline-card:hover .tertiary-svg {
    transition-delay: 0.2s;
}

.timeline-card::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 15%;
    width: 3px;
    height: 3px;
    background: #14b8a6;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.6s ease;
}

.timeline-card:hover::after {
    opacity: 1;
    animation: float 3s ease-in-out infinite;
   
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-8px) translateX(3px);
    }
    50% {
        transform: translateY(-4px) translateX(-2px);
    }
    75% {
        transform: translateY(-12px) translateX(5px);
    }
}



/* portofilio */
   /* ===== Brand Showcase Section ===== */
   .portfolio-section {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: #fdfdfd;
           
            border-top-right-radius: 160px;
            
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background-color: #efefef41;
            border-top-right-radius: 120px;
            width: 100%;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 3rem;
            color: #444b58;
        }

        .portfolio-title {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #444b58;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }

        .portfolio-subtitle {
            font-size: clamp(0.95rem, 2vw, 1.25rem);
            color: #4b5563;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .portfolio-card {
            position: relative;
            background: white;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            aspect-ratio: 3/2;
            transition: box-shadow 0.3s ease;
            cursor: pointer;
        }

        .portfolio-card:hover {
            box-shadow: 0 10px 25px rgba(63, 84, 220, 0.15);
        }

        .portfolio-front {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: opacity 0.3s ease;
        }

        .portfolio-card:hover .portfolio-front {
            opacity: 0;
        }

        .portfolio-logo {
            width: 100%;
            height: 100%;
          
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .portfolio-logo img {
            width: 60%;
            object-fit: cover;
        }

        .portfolio-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            line-height: 1.4;
        }

        .portfolio-back {
            position: absolute;
            inset: 0;
            background: rgba(55, 65, 81, 0.95);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            transform: translateY(1rem);
            transition: all 0.3s ease;
        }

        .portfolio-card:hover .portfolio-back {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-content {
            color: white;
        }

        .portfolio-description {
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .portfolio-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.5rem;
            border: 2px solid white;
            background: transparent;
            color: white;
            font-weight: 500;
            font-size: 0.875rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .portfolio-btn:hover {
            background: #4864e2;
            color: white;
        }

        .portfolio-card.build-with-us {
            background: #444b58;
            color: white;
        }

        .portfolio-card.build-with-us .portfolio-front {
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .portfolio-card.build-with-us .portfolio-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            line-height: 1.4;
        }

        /* Partners Carousel Section */
        .partners-section {
           
            display: flex;
            align-items: center;
            background: #fdfdfd;
            padding: 1rem 0;
        }

        .partners-container {
            max-width: 1200px;
            margin: 0 auto; 
            width: 100%;
        }

        .partners-header {
            text-align: center;
            margin-bottom: 2rem;
            color: #444b58;
        }

        .partners-title {
            font-size: clamp(1rem, 4vw, 1.5rem);
            font-weight: 700;
            color: #444b58;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }

        /* Carousel Container */
        .carousel-container {
            overflow: hidden;
            position: relative;
            width: 100%;
            height: 200px;
        }

        .carousel-track {
            display: flex;
            gap: 2rem;
            animation: scroll 30s linear infinite;
            width: fit-content;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        /* Partner Card Styles */
        .partner-card {
            position: relative;
            background: white;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            width: 250px;
            height: 150px;
            flex-shrink: 0;
            transition: box-shadow 0.3s ease;
            cursor: pointer;
        }

        .partner-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .partner-front {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: opacity 0.3s ease;
        }

        .partner-card:hover .partner-front {
            opacity: 0;
        }

        .partner-logo {
            width: 100%;
            height: 100%;
            background-color: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .partner-logo img {
            width: 60%;
            object-fit: contain;
            max-height: 80px;
        }

        .partner-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            line-height: 1.4;
            margin-top: 1rem;
        }

        .partner-back {
            position: absolute;
            inset: 0;
            background: rgba(55, 65, 81, 0.95);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            transform: translateY(1rem);
            transition: all 0.3s ease;
        }

        .partner-card:hover .partner-back {
            opacity: 1;
            transform: translateY(0);
        }

        .partner-content {
            color: white;
        }

        .partner-description {
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .partner-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.5rem;
            border: 2px solid white;
            background: transparent;
            color: white;
            font-weight: 500;
            font-size: 0.875rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .partner-btn:hover {
            background: #4864e2;
            color: white;
        }

        @media (max-width: 768px) {
            .partner-btn {
           
            padding: 0.5rem 1rem;
            border: 2px solid white;
            background: transparent;
            color: white;
            font-weight: 500;
            font-size: 0.6rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .duplicate{
            display: none;
        }

            .portfolio-section {
                padding: 2rem 1rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .portfolio-card {
                aspect-ratio: 3/2;
            }

            .partner-card {
                width: 280px;
                height: 200px;
            }

            .carousel-track {
                gap: 1rem;
            }

            .portfolio-front,
            .portfolio-back,
            .partner-front,
            .partner-back {
                padding: 1.5rem;
            }

            .portfolio-title {
                font-size: 1.75rem;
            }

            .partners-title {
                font-size: 1.5rem;
            }

            .portfolio-subtitle {
                font-size: 0.9rem;
            }
            @media (max-width: 768px) {
  .carousel-container {
    overflow: visible;   
    height: auto;       
  }

  .carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-gap: 1rem;
    animation: none;     /* stop auto scroll */
    width: 100%;
  }

  .partner-card {
    width: 100%;
    height: 100px; /* adjust as needed */
  }

  .partner-logo img {
    width: 80%;
    max-height: 60px;
  }
  .partner-logo {
    background-color: transparent;
}
}

        }



@media (max-width: 480px) {
    
            .partner-card {
                width: 180px;
                height: 150px;
            }

            .partner-logo img {
                width: 70%;
                max-height: 50px;
            }
             .carousel-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 columns */
    grid-gap: 0.5rem;
    animation: none;     /* stop auto scroll */
    width: 100%;
  }
        }
/* ===== FOOTER SECTION ===== */
.footer-container {
    width: 100vw;
    margin: 0 auto;
    padding: 0;
   
}

.cta-section {
    background-color: #f5f5f5;
    padding: 48px 24px;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(135deg, #769fff 0%, #26c6da 100%);
    border-radius: 24px;
    border: 3px solid #e0e0e0;
    padding: 48px;
    position: relative;
}

.cta-text-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.cta-main-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-sub-text {
    text-align: right;
    margin-top: 16px;
}

.cta-sub-text p {
    font-size: 18px;
    color: #2c2c2c;
    line-height: 1.4;
    font-weight: 400;
}

.book-meeting-container {
    display: flex;
    justify-content: flex-start;
}

.book-meeting-btn {
    display: flex;
    background-color: #2c2c2c;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #9e9e9e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-meeting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-text {
    padding: 20px 48px;
    color: white;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.btn-arrow {
    padding: 20px 24px;
    background-color: #2c2c2c;
    border-left: 2px solid #979898;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4da1e1;
}

.footer-links {
  background-color: #2c2c2c;
  padding: 48px 24px 96px 24px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
}

.footer-column h3 {
  color: white; 
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #888888;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #3b82f6;
}


.footer-description {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-address {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  padding: 0;
}

.social-links li {
  list-style: none;
}

.social-links a {
  color: #888;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #3b82f6;
}
.footer-logo {
 filter: brightness(0) invert(1);
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}
.footer-brand{
    margin-top: 64px;
}





/* ===== SERVICES FEATURES SECTION ===== */
.sf-sticky-container {
    height: 300vh;
    position: relative;
}

.sf-sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1000px;
    padding: 0 2rem;
}

.sf-feature-card {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(4px);
}

.sf-feature-card.sf-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
    filter: blur(0);
}

.sf-feature-card.sf-prev,
.sf-feature-card.sf-next {
    opacity: 0.5;
    transform: translateY(-50%) scale(0.97);
    z-index: 1;
    filter: blur(10px);
}

.sf-card-content {
   background: linear-gradient(135deg, #3b4d79ab 0%, #668def88 100%);
   
     /* background: #1b2132; */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 2rem;
    padding: 3rem;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 25px 50px -12px rgba(106, 159, 239, 0.5);
}

.sf-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sf-content-grid.sf-left .sf-text-content {
    order: 2;
}

.sf-content-grid.sf-left .sf-mockup-container {
    order: 1;
}

.sf-text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sf-feature-number {
    font-size: 1rem;
    font-weight: 200;
    color: rgba(148, 163, 184, 1);
}

.sf-feature-title {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem); 
    /* 24px mobile → 40px desktop */
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.sf-feature-description {
    font-size: clamp(1rem, 1.3vw, 1.125rem); 
    /* 16px mobile → 18px desktop */
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sf-feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.sf-highlight-tag {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #ebebeb;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
     font-size: clamp(0.75rem, 1vw, 0.875rem); 
    font-weight: 500;
}

.sf-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sf-mockup-window {
    background: #1b2132;
    border-radius: 1rem;
    border: 1px solid #334155;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(57, 87, 122, 0.3);
}

.sf-window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    
    border-bottom: 1px solid #334155;
}

.sf-mockup-content {
    padding: 2rem;
    color: #cbd5e1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.svg-interactive {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.svg-interactive:hover {
    transform: scale(1.05);
}





.sf-section-header-fixed {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    z-index: 0;
    transition: opacity 0.8s ease;
}

.sf-section-header-fixed.sf-hidden {
    opacity: 0;
    pointer-events: none;
}

.sf-section-title-main {
    font-size: clamp(2rem, 3vw, 3rem); 
    font-weight: 700;
    color: #444b58;
    margin-bottom: 1rem;
}

.sf-section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 1rem;
    color: rgba(12, 8, 8, 0.8);
   
}
.learn-more{
    text-decoration: none;
    color: #f1f1f1;
}
.learn-more:hover {
  color: #b4c2ff; 
}

/* Default style (already set in your CSS) */
.sf-highlight-tag {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  
}

/* First highlight */
.sf-feature-highlights .sf-highlight-tag:nth-child(1) {
  background: rgba(16, 185, 129, 0.2);   /* green */
  border-color: rgba(16, 185, 129, 0.3);
  
}

/* Second highlight */
.sf-feature-highlights .sf-highlight-tag:nth-child(2) {
  background: rgba(239, 68, 68, 0.2);   /* red */
  border-color: rgba(239, 68, 68, 0.3);
  
}

/* Third highlight */
.sf-feature-highlights .sf-highlight-tag:nth-child(3) {
  background: rgba(245, 158, 11, 0.2);   /* amber */
  border-color: rgba(245, 158, 11, 0.3);
  
}

/* Fourth highlight */
.sf-feature-highlights .sf-highlight-tag:nth-child(4) {
  background: rgba(139, 92, 246, 0.2);   /* purple */
  border-color: rgba(139, 92, 246, 0.3);
  
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-animation {
    animation: rotate 3s linear infinite;
}

/* ===== CANVAS ===== */
#waveCanvas {
    display: flex;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-description {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.3s;
}

.trust-section {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.about-section {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.focus-areas-section {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.services-section {
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.why-choose-section {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.expertise-item {
    animation: fadeInUp 0.6s ease-out both;
}

.expertise-item:nth-child(1) {
    animation-delay: 0.6s;
}

.expertise-item:nth-child(2) {
    animation-delay: 0.7s;
}

.expertise-item:nth-child(3) {
    animation-delay: 0.8s;
}

.expertise-item:nth-child(4) {
    animation-delay: 0.9s;
}

.expertise-item:nth-child(5) {
    animation-delay: 1.0s;
}

.expertise-item:nth-child(6) {
    animation-delay: 1.1s;
}

.expertise-item:nth-child(7) {
    animation-delay: 1.2s;
}

.expertise-item:nth-child(8) {
    animation-delay: 1.3s;
}

.expertise-item:nth-child(9) {
    animation-delay: 1.4s;
}

.focus-area-item {
    animation: fadeInUp 0.6s ease-out both;
}

.focus-area-item:nth-child(1) {
    animation-delay: 0.7s;
}

.focus-area-item:nth-child(2) {
    animation-delay: 0.8s;
}

.focus-area-item:nth-child(3) {
    animation-delay: 0.9s;
}

.focus-area-item:nth-child(4) {
    animation-delay: 1.0s;
}

.focus-area-item:nth-child(5) {
    animation-delay: 1.1s;
}

.focus-area-item:nth-child(6) {
    animation-delay: 1.2s;
}

.timeline-item {
    animation: fadeInUp 0.6s ease-out both;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.8s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.9s;
}

.timeline-item:nth-child(3) {
    animation-delay: 1.0s;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .trust-icons {
        gap: 2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    
    .service-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .service-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-right {
        margin-left: 0;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .timeline-content.left,
    .timeline-content.right {
        text-align: center;
        padding: 0 1rem;
        margin: 0;
        max-width: 100%;
    }
    
    .timeline-content.left .timeline-icon {
        margin: 0 auto 1rem;
    }
    
    

    
  .bottom-navbar .nav-list {
    gap: 2rem; /* reduce spacing */
  }
  .bottom-navbar .nav-link {
    font-size: 0.95rem;
  }

   .sf-card-content {
    padding: 2.5rem;
  }

  .sf-content-grid {
    gap: 3rem;
  }

  .sf-feature-title {
    font-size: 1.9rem;
  }

  .sf-feature-description {
    font-size: 1.05rem;
  }

  .sf-mockup-window {
    max-width: 450px;
  }

  .sf-mockup-content svg {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 1024px) {
    
    .focus-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sf-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .sf-mockup-container {
    order: -1; /* show mockup above text */
  }

  .sf-card-content {
    padding: 0rem 2rem;
  }

  
  .sf-section-subtitle {
    padding: 1rem 0rem;
  }

  .sf-feature-title {
    font-size: 1.7rem;
  }

  .sf-feature-description {
   
    padding: 0rem 2rem;
  }

  .sf-mockup-window {
    max-width: 300px;
  }

  .sf-mockup-content {
    padding: 1rem;
    min-height: 200px;
  }

  .sf-mockup-content svg {
    max-width: 70%;
    height: auto;
  }
  .sf-feature-highlights {
    justify-content: center;
  }


    .cta-card {
        padding: 32px;
    }
    
    .cta-main-text h2 {
        font-size: 36px;
    }
    
    .cta-sub-text p {
        font-size: 16px;
    }
    
    .footer-columns {
        gap: 48px;
    }
    
  
  .sf-card-content {
   
    padding: 1rem;
    width: 100%;
    

  }
  .focus-bg-svg{
        display: none;
    }
    .focus-areas-section{
        background-color: #e6f3ff;
        border-bottom-right-radius: 120px;
        border-top-left-radius: 64px;
    }
      .nav-menu {
       
        display: none;
    }
     .nav-container {
        padding:  0.5rem;
    }
    
  
    
    .nav-menu.active {
        left: 0;
    }

    .bottom-navbar {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

   

    #bottom-navbar {
        display: none !important;
    }
     .top-navbar {
        display: block !important;
        padding: 0 1rem;
    }

}
    


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
   

    .contact-btn {
        display: none;
    }

   
    .hero {
        padding: 2rem;
        min-height: 70vh;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 500px;
        margin-bottom: 2rem;
    }

    .hero-description br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* ===== SCROLLABLE CARDS ===== */
    .sticky-container {
        position: sticky; /* remove sticky */
        height: auto;
        padding-top: 1rem;
    }

    .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .left-content {
        order: 0; /* title & description first */
    }
    .btn-secondary-demo{
        display: none;
    }

    
 

  

    /* Responsive text */
    .main-title {
        font-size: 2rem;
    }

    .description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

   .progress-section{
    display: none;
   }

    .focus-areas-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .sf-card-content{
        padding: 16px;
    }
    .sf-content-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
  }

  .sf-text-content {
    align-items: center;
    text-align: center;
  }

  .sf-feature-title {
    font-size: 1.5rem;
  }

  .sf-feature-description {
    font-size: 0.95rem;
  }

  .sf-feature-highlights {
    justify-content: center;
  }

  .sf-mockup-window {
    max-width: 200px;
    padding: 0;
  }

  .sf-mockup-content {
    padding: 1rem;
    min-height: 200px;
  }

  .sf-mockup-content svg {
    transform: scale(0.8);
    transform-origin: center;
  }

  .sf-progress-indicator {
    right: 1rem;
    gap: 0.5rem;
  }

  .sf-progress-dot {
    width: 0.4rem;
    height: 1.5rem;
  }
  .timeline-line {
        left: 0rem;
    }
    
    .timeline-dot {
        display: none;
    }
    .team-card {
 
   background-size: 90% auto;
   padding: 2rem;

   
  
}
.cta-text-container {
        flex-direction: column;
        align-items: flex-start; /* keep text aligned left */
      
    }

    .cta-sub-text {
        
        text-align: left;
    }

   

    .cta-sub-text p {
        font-size: 16px;
    }

    .book-meeting-container {
        
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .trust-text {
        font-size: 0.875rem;
    }
    
   
    
   
    
    .focus-areas-title {
        font-size: 1.75rem;
    }
    
    .focus-area-item {
        padding: 1.25rem;
    }
    
    .focus-area-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .timeline-card {
   
    max-width: 250px;
  
}
    
    .timeline-card {
        padding: 1.5rem;
    }
    
    .timeline-icon {
        width: 2rem;
        height: 2rem;
    }
    
    
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
  
    .footer-links{
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .footer-columns {
      
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-card {
        padding: 24px;
    }
    
    .cta-main-text h2 {
        font-size: 24px;
    }
   
    .request-demo-heading {
        font-size: 1.875rem;
    }
    
    .request-demo-card {
        padding: 24px 20px;
    }
    .sf-card-content {
    padding: 1rem 0.75rem; /* tighter padding */
  }

  .sf-section-title-main {
   
    margin-bottom: 0.5rem; /* reduce spacing below title */
  }

  .sf-section-subtitle {
    
    margin-bottom: 0.75rem; /* less gap under subtitle */
  }

  .sf-feature-title {
    
    margin-bottom: 0px; /* compact spacing */
  }

  .sf-feature-description {
   
    
    margin: 0;
    padding: 0 1rem; /* remove extra padding */
  }

  

  .sf-highlight-tag {
    
    padding: 0.25rem 0.5rem;
  }

  .sf-mockup-window {
    max-width: 200px; /* smaller mockup for mobile */
    margin: 0 auto;
  }

  .sf-mockup-content {
    min-height: 120px; /* reduce height */
    padding: 0.5rem;
  }

  .sf-mockup-content svg {
    transform: scale(0.65);
    transform-origin: center;
  }
  .social-links {
 align-items: center;
 justify-content: center;
}
.footer-brand{
    margin-top: 0;
}
  

  
}

