@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Kalam:wght@400;700&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

:root {
    --bg-secondary: #f6f8fc;
    --bg-tertiary: #eff3fa;
    --primary: #0056cc;
    --primary-rgb: 0, 86, 204;
    --primary-light: #3b82f6;
    --primary-dark: #003fa3;
    --secondary: #00c2ff;
    --text-main: #0c0f19;
    --text-muted: #4b586e;
    --text-light: #7e8f9f;
    --border-color: rgba(0, 86, 204, 0.07);
    --border-color-hover: rgba(0, 86, 204, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 4px 30px rgba(0, 86, 204, 0.02);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --font-handwritten: 'Kalam', cursive;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

#custom-cursor { display: none !important; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-secondary);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

button,
.btn,
.nav-link,
.nav-cta,
.dropdown-link,
.social-icon,
.hamburger,
.newsletter-form button {
    cursor: pointer;
}

input,
textarea {
    cursor: text;
}

ul { list-style: none; }


.serif-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

.handwritten-note {
    font-family: var(--font-handwritten);
    color: var(--primary-light);
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    transform: rotate(-5deg);
    white-space: nowrap;
    pointer-events: none;
}

.handwritten-note i {
    font-size: 12px;
    margin-right: 4px;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f4f8fe 100%);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1275px;
    margin: 0 auto;
    margin-left: 18px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu-wrapper {
    margin-left: auto;
    padding-left: 40px;
    margin-right: -100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin-left: 75px;
}

.logo span { color: var(--secondary); }

.logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 86, 204, 0.15);
}

.logo-img {
    height: 105px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.nav-item { position: relative; }

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i {
    font-size: 10px;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 10px;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 86, 204, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 1100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

.nav-item:hover .nav-link i { transform: rotate(180deg); }

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 500;
}

.dropdown-link i {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.dropdown-link:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.dropdown-link:hover i {
    background: var(--primary);
    color: #ffffff;
}

.nav-cta {
    background: var(--primary);
    color: #ffffff !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0, 86, 204, 0.15);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: #ffffff !important;
    transform: scale(1.02);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14.5px;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 86, 204, 0.12);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 86, 204, 0.2);
}

.btn-secondary {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(var(--primary-rgb), 0.03);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 58px;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 16.5px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 440px;
}

.hero-3d-card {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-sphere {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, rgba(0, 86, 204, 0.3) 60%, rgba(0, 194, 255, 0.7) 100%);
    box-shadow: 0 20px 40px rgba(0, 86, 204, 0.15), inset -8px -8px 24px rgba(0,0,0,0.05), inset 8px 8px 16px rgba(255,255,255,0.5);
    animation: float3D 6s ease-in-out infinite;
}

.glass-tag {
    position: absolute;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gt-1 { top: 18%; left: 10%; animation: float3D 8s ease-in-out infinite 0.5s; }
.gt-2 { bottom: 20%; right: 8%; animation: float3D 7s ease-in-out infinite 1.5s; }
.gt-3 { top: 52%; left: -2%; animation: float3D 9s ease-in-out infinite 2s; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: #0ea5e9; }

@keyframes float3D {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
    margin-left: -20px;
}

.footer-logo-box p,
.footer-newsletter p,
.footer-links a {
    color: var(--text-muted);
    font-size: 13.5px;
}

.footer-logo-box p {
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.social-icon:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a:hover {
    color: var(--primary);
    padding-left: 2px;
}

.footer-newsletter p { margin-bottom: 16px; }

.newsletter-form {
    display: flex;
    gap: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-main);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 86, 204, 0.05);
}

.newsletter-form .form-control {
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
}

.newsletter-form .btn-primary {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 12.5px;
    color: var(--text-light);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-muted);
    margin: 4px 0;
    transition: var(--transition-smooth);
    border-radius: 3px;
}


body {
  font-family: 'Poppins', sans-serif;
}

/* Nav & Hero responsive rules → moved to responsives.css */

.st-footer {
    position: relative;
    overflow: hidden;

    background:
    radial-gradient(circle at 100% 20%, rgba(35,80,255,.35), transparent 30%),
    radial-gradient(circle at 0% 80%, rgba(0,140,255,.15), transparent 35%),
    linear-gradient(135deg,#010b34,#021b63,#011030);

    color: #dce8ff;
    padding-top: 68px;
    border-top: 1px solid rgba(89, 148, 255, 0.2);
}

.st-footer::before{
    content:"";
    position:absolute;
    right:-200px;
    top:-100px;
    width:500px;
    height:500px;
    background:rgba(0,102,255,.15);
    filter:blur(120px);
    border-radius:50%;
    pointer-events:none;
}

.st-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 1.15fr;
    gap: 54px;
    padding-bottom: 46px;
    margin-left: -50px;
}

.st-footer-logo {
    width: 230px;
    height: auto;
    object-fit: contain;
}

.st-footer-desc {
    margin-top: 18px;
    color: #d4ddf5;
    font-size: 13px;
    line-height: 1.6;
    max-width: 340px;
}

.st-footer-socials {
    display: flex;
    gap: 12px;
    margin: 22px 0;
}

.st-social {
    width: 44px;
    height: 44px;
    border-radius: 10px;

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.08);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: #ffffff;

    transition: all .35s ease;
}

.st-social:hover{
    transform: translateY(-4px);

    color:#00b7ff;

    border-color:rgba(0,183,255,.30);

    box-shadow:
    0 10px 25px rgba(0,183,255,.20);
}

.st-contact-list {
    display: grid;
    gap: 12px;
    font-size: 17px;
}

.st-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #deebff;

    padding:10px 12px;
    border-radius:12px;

    transition:all .35s ease;
}

.st-contact-list li:hover{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(10px);

    transform:translateX(5px);
}

.st-contact-list i { color: #14a5ff; margin-top: 4px; }

.st-footer-grid .st-footer-col:nth-child(2) {
    margin-left: -15px;
}

.st-footer-grid .st-footer-col:nth-child(3) {
    margin-left: 15px;
}

.st-footer-grid .st-footer-col:nth-child(4) {
    margin-left: 40px;
}

.st-footer-col h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.st-footer-col h4::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    background: #0ea5ff;
    margin-top: 10px;
}

.st-links {
    display: grid;
    gap: 14px;
}

.st-links a {
    color: #e8f1ff;
    font-size: 15px;
    position: relative;
    padding-left: 22px;

    transition: all .35s ease;
}

.st-links a:hover{
    color:#00b7ff;
    transform:translateX(6px);
}

.st-links a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #19a9ff;
    font-size: 11px;
    top: 50%;
    transform: translateY(-50%);
}

.st-news-text {
    color: #dce7ff;
    margin-bottom: 14px;
    font-size: 16px;
}

.st-news-form {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.st-news-form input {
    flex: 1;
    border: 1px solid rgba(130, 170, 255, 0.16);
    background: rgba(8, 28, 82, 0.8);
    color: #e7f0ff;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
}

.st-news-form button {
    width: 54px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2aa9ff, #1679ff);
    color: #fff;
    cursor: pointer;
}

.st-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.st-feature i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(79, 149, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ab0ff;
}

.st-feature strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.st-feature span {
    color: #c8d8f8;
    font-size: 14px;
}

.st-footer-bottom {
    background: rgba(0,0,0,.12);

    backdrop-filter: blur(10px);

    border-top: 1px solid rgba(116, 162, 255, 0.2);

    padding: 20px 0;
}

.st-footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 89px;
}

.st-footer-bottom p,
.st-bottom-links a {
    color: #dce7ff;
    font-size: 16px;
}

.st-bottom-links {
    display: flex;
    gap: 24px;
}

/* Footer responsive rules (corrected) → moved to responsives.css */

.hero-slider {
    position: relative;
    min-height: 82vh;
    margin-top: 110px;
    overflow: hidden;
    background: #0f1b45;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.0);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 15, 40, 0.65) 0%, rgba(8, 15, 40, 0.28) 55%, rgba(8, 15, 40, 0.10) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    max-width: 760px;
    padding-left: clamp(56px, 8vw, 140px);
}

.slide-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

.hero-slider h1,
.hero-slider h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 14px;
    color: #fff;
}

/* Smaller variant for longer headings */
.hero-slider h2.st-slide-h2-sm {
    font-size: clamp(1.42rem, 3vw, 2.67rem);
}

/* Smaller h1 variant — matches h2-sm */
.hero-slider h1.st-slide-h1-sm {
    font-size: clamp(1.42rem, 3vw, 2.67rem);
}

/* Extra small heading variant — for longer multi-line headings */
.hero-slider h2.st-slide-h2-xs {
    font-size: clamp(1.15rem, 2.3vw, 2rem);
    line-height: 1.25;
}

/* ── Healthcare Slide (Slide 3) ─────────────────── */

/* Darker overlay on left for text readability */
.slide-overlay--hc {
    background: linear-gradient(90deg, rgba(4,10,35,0.94) 0%, rgba(4,10,35,0.55) 50%, rgba(4,10,35,0.04) 100%) !important;
}

/* Healthcare bg image — slight lighten */
.slide-bg--hc {
    filter: brightness(1.0) saturate(1.20);
}

/* Slide 1 Banner — image right-side, text left */
.slide-bg--s2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: brightness(1.0);
    transform: scale(1.10);
    transform-origin: center center;
}

/* Slide 4 — Google & Meta Ads, zoom out to show full image */
.slide-bg--s4 {
    object-fit: cover;
    transform: scale(0.65);
    transform-origin: center center;
}

/* Eyebrow badge with icon */
.slide-eyebrow--hc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 120, 255, 0.18);
    border: 1px solid rgba(0, 150, 255, 0.45) !important;
    border-radius: 999px;
    padding: 7px 18px !important;
    backdrop-filter: blur(8px);
    font-size: 0.85rem !important;
}

.slide-eyebrow--hc i {
    color: #4da6ff;
    font-size: 13px;
}

/* Gradient accent text inside heading */
.slide-h-accent {
    background: linear-gradient(135deg, #4da6ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Italic variant — Patient Appointments */
.slide-h-accent--italic {
    font-style: italic;
}

/* CTA button row */
.slide-cta-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(24px);
}

.slide.active .slide-cta-wrap {
    animation: slideTextUp 0.7s ease 0.32s forwards;
}

.slide-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.slide-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.55);
}

.slide-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 11px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.55);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.slide-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.9);
}

/* Healthcare stats icons */
.stat-icon {
    font-size: 1.4rem;
    color: #ffffff;
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    padding-right: 4px;
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .slide-cta-wrap {
        gap: 10px;
        margin-top: 16px;
    }

    .slide-cta-primary,
    .slide-cta-secondary {
        font-size: 0.8rem;
        padding: 10px 18px;
    }

    .slide-stats--hc {
        gap: 14px !important;
        margin-top: 14px !important;
    }

    .slide-stats--hc .stat-num {
        font-size: 1.2rem !important;
    }

    .slide-stats--hc .stat-lbl {
        font-size: 0.68rem !important;
    }

    .stat-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .slide-cta-primary,
    .slide-cta-secondary {
        width: fit-content;
        font-size: 0.78rem;
        padding: 9px 16px;
    }
}


.hero-slider p {
    font-size: 1.1rem;
    max-width: 620px;
}

.slide-eyebrow,
.hero-slider h1,
.hero-slider h2,
.hero-slider .slide-content > p,
.slide-stats {
    opacity: 0;
    transform: translateY(24px);
}

.slide.active .slide-eyebrow {
    animation: slideTextUp 0.55s ease forwards;
}

.slide.active h1,
.slide.active h2 {
    animation: slideTextUp 0.7s ease 0.12s forwards;
}

.slide.active .slide-content > p:not(.slide-eyebrow) {
    animation: slideTextUp 0.7s ease 0.22s forwards;
}

.slide.active .slide-stats {
    animation: slideTextUp 0.7s ease 0.3s forwards;
}

.slide-stats {
    margin-top: 20px;
    display: flex;
    gap: 24px;
}

.stat {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
}

.stat-num {
    display: block;
    font-size: 1.45rem;
    color: #fff;
    grid-column: 2;
    grid-row: 1;
    line-height: 1.1;
}

.stat-lbl {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    grid-column: 2;
    grid-row: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.88);
    color: #1846d1;
    font-size: 24px;
    cursor: pointer;
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    width: 28px;
    border-radius: 30px;
    background: #00c2ff;
}

@keyframes slideTextUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider responsive → moved to responsives.css */

/* ==========================================================================
   SEARCHTECH ABOUT 3D PLAYING CARD REVEAL SECTION
   ========================================================================== */
.st-about-section {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.72), rgba(224, 242, 254, 0.72), rgba(248, 250, 252, 0.75));
    position: relative;
    z-index: 5;
}

@media (min-width: 992px) {
    .st-about-section {
        height: 300vh;
        padding: 0;
    }
    .st-about-sticky {
        position: sticky;
        top: 108px;
        height: calc(100vh - 108px);
        display: flex;
        align-items: center;
        overflow: visible; /* Fixed crop issue by making overflow visible */
        width: 100%;
    }
}

/* st-about-section mobile → moved to responsives.css */

.st-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.st-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Left Side Content */
.st-about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.st-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1d4ed8;
    background: rgba(29, 78, 216, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(29, 78, 216, 0.12);
}

.st-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #1d4ed8;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.st-pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #1d4ed8;
    border-radius: 50%;
    animation: stDotPulse 2s ease-in-out infinite;
}

@keyframes stDotPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.2); opacity: 0; }
}

.st-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 14px;
}

.st-highlight {
    color: #1d4ed8;
    position: relative;
    display: inline-block;
}

.st-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #1d4ed8;
    border-radius: 2px;
}

.st-subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
}

.st-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.st-feature-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.st-feature-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.st-feature-text h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px;
}

.st-feature-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.45;
}

.st-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a, #0ea5e9);
    color: #ffffff !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 26px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.st-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

/* Right Side: 3D Card Viewport */
.st-about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.st-cards-viewport {
    width: 100%;
    min-height: 550px; /* Reduced min-height to prevent clipping on laptop screens */
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    position: relative;
}

/* Base card pattern overlay */
.st-dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 12px 12px;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

/* Initial Playing Card */
.st-main-card {
    width: 180px; /* Aligned size with the achievement playing cards */
    height: 260px;
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transform-style: preserve-3d;
    transition: opacity 0.3s ease; /* Opacity transitions cleanly; transforms handled by JS */
}

/* Star and Pulse Glow elements */
.st-card-star-topleft {
    align-self: flex-start;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.st-card-star-bottomright {
    align-self: flex-end;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.st-card-center-glow {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-spinning-star {
    font-size: 26px;
    color: #0ea5e9;
    animation: stSpinStar 6s linear infinite;
    z-index: 2;
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.6);
}

@keyframes stSpinStar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.st-pulse-ring {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(14, 165, 233, 0.4);
    border-radius: 50%;
    animation: stRingGlow 3s cubic-bezier(0.215, 0.610, 0.355, 1.000) infinite;
    opacity: 0;
}

.st-ring-1 { animation-delay: 0s; }
.st-ring-2 { animation-delay: 1s; }
.st-ring-3 { animation-delay: 2s; }

@keyframes stRingGlow {
    0% { transform: scale(1); opacity: 1; }
    50% { opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
}

.st-card-brand {
    text-align: center;
    z-index: 2;
}

.st-card-brand h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    background: linear-gradient(to right, #ffffff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.st-card-brand p {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* 2x2 Achievements Grid */
.st-cards-grid {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 180px); /* Height larger, width smaller playing card columns */
    grid-template-rows: repeat(2, 260px);
    gap: 18px;
    perspective: 1400px;
    z-index: 5;
    opacity: 0;
    pointer-events: none; /* Grid clicks/hover interactive only when revealed */
    transition: opacity 0.4s ease;
}

.st-hidden {
    display: none !important;
}

.st-cards-grid.st-interactive {
    pointer-events: auto;
}

/* Card wrappers for entrance layouts */
.st-ach-card-wrapper {
    width: 180px;
    height: 260px;
    perspective: 1400px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
    will-change: transform;
}

.st-ach-card-wrapper:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 14px 28px rgba(2, 32, 94, 0.18));
}

/* Individual Achievement Card flip structure */
.st-ach-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: none; /* Explicitly disabled to support frame-rate lerp updates */
    cursor: grab;
}

.st-ach-card:active {
    cursor: grabbing;
}

/* Card Faces */
.st-card-face {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Front Face (Playing Card Front) */
.st-card-front {
    color: #ffffff;
    transform: rotateY(0deg);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

/* Specific Card Front Gradients */
.st-ach-card[data-index="0"] .st-card-front {
    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}
.st-ach-card[data-index="1"] .st-card-front {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}
.st-ach-card[data-index="2"] .st-card-front {
    background: linear-gradient(135deg, #0369a1, #0284c7);
}
.st-ach-card[data-index="3"] .st-card-front {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.st-card-front .st-card-number,
.st-card-front .st-card-label {
    color: #ffffff !important;
}
.st-card-front .st-card-desc {
    color: rgba(255, 255, 255, 0.8) !important;
}
.st-card-front .st-card-suit {
    color: rgba(255, 255, 255, 0.9) !important;
}
.st-card-front .st-card-brand-corner {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Card suits and corner settings */
.st-card-suit {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
}

.st-card-suit span:nth-child(2) {
    font-size: 15px;
    margin-top: 1px;
}

.st-suit-tl {
    top: 12px;
    left: 12px;
}

.st-suit-br {
    bottom: 12px;
    right: 12px;
    transform: rotate(180deg);
}

.st-card-brand-corner {
    position: absolute;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.st-brand-tr {
    top: 12px;
    right: 12px;
}

.st-brand-bl {
    bottom: 12px;
    left: 12px;
    transform: rotate(180deg);
}

.st-card-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 12px 6px; /* Optimized vertical padding */
}

.st-card-emoji {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 4px;
}

.st-card-number {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.1;
    margin: 4px 0 2px 0;
}

.st-card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.st-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    line-height: 1.3;
    margin-top: 6px;
    max-width: 150px;
}

/* Back Face (Playing Card Back) */
.st-card-face.st-card-back {
    background-color: #0d4275;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 15%, transparent 15%),
                      radial-gradient(rgba(255, 255, 255, 0.08) 15%, transparent 15%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
    border: 5px solid #ffffff;
    outline: 1.5px solid rgba(255, 255, 255, 0.85);
    outline-offset: -8px;
    transform: rotateY(180deg);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Face visibility toggles to bypass browser preserve-3d / opacity flattening bugs */
.st-ach-card.st-flipped .st-card-front {
    opacity: 0 !important;
    pointer-events: none;
}
.st-ach-card.st-flipped .st-card-back {
    opacity: 1 !important;
    pointer-events: auto;
}

.st-ach-card:not(.st-flipped) .st-card-front {
    opacity: 1 !important;
    pointer-events: auto;
}
.st-ach-card:not(.st-flipped) .st-card-back {
    opacity: 0 !important;
    pointer-events: none;
}

.st-card-back-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 52px;
    height: 52px;
    background: #0d4275;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.st-card-back-circle {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    transform: rotate(-45deg); /* un-rotate brand text */
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-card-back-logo-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 14px;
    color: #0d4275;
    letter-spacing: -0.5px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .st-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .st-about-left {
        align-items: center;
        text-align: center;
    }

    .st-features-list {
        align-items: center;
    }

    .st-feature-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .st-cards-viewport {
        min-height: 500px;
    }

    .st-cards-grid {
        grid-template-columns: repeat(2, 160px);
        grid-template-rows: repeat(2, 230px);
        gap: 14px;
    }

    .st-ach-card-wrapper {
        width: 160px;
        height: 230px;
    }
}

@media screen and (max-width: 768px) {
    .st-cards-viewport {
        min-height: 440px;
    }

    .st-cards-grid {
        grid-template-columns: repeat(2, 140px);
        grid-template-rows: repeat(2, 200px);
        gap: 10px;
    }

    .st-ach-card-wrapper {
        width: 140px;
        height: 200px;
    }
    
    .st-card-emoji {
        font-size: 18px;
    }

    .st-card-number {
        font-size: 18px;
    }

    .st-card-label {
        font-size: 9px;
    }
    
    .st-card-desc {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .st-about-section {
        padding: 60px 0;
    }

    .st-cards-viewport {
        min-height: 380px;
    }

    .st-cards-grid {
        grid-template-columns: repeat(2, 120px);
        grid-template-rows: repeat(2, 170px);
        gap: 8px;
    }

    .st-ach-card-wrapper {
        width: 120px;
        height: 170px;
    }

    .st-card-face {
        padding: 8px;
        border-radius: 8px;
    }

    .st-card-emoji {
        font-size: 16px;
    }

    .st-card-number {
        font-size: 16px;
    }

    .st-card-label {
        font-size: 8px;
    }
    
    .st-card-suit span:nth-child(2) {
        font-size: 10px;
    }
    
    .st-suit-tl {
        top: 4px;
        left: 4px;
    }

    .st-suit-br {
        bottom: 4px;
        right: 4px;
    }
    
    .st-brand-tr {
        top: 4px;
        right: 4px;
    }

    .st-brand-bl {
        bottom: 4px;
        left: 4px;
    }
}

/* =========================================================
   SERVICES SECTION — 3D Card Carousel
   ========================================================= */
.st-services-section {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
    background-image: url('../images/background-1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.st-services-bg-glow {
    display: none;
}

/* Curvy underline on "Premium" word */
.st-services-title .st-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #0047b3, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.st-services-title .st-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M0 5 Q15 0 30 5 Q45 10 60 5 Q75 0 90 5 Q105 10 120 5' stroke='%230056cc' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center / auto 100%;
    animation: waveUnderline 3s ease-in-out infinite;
}

@keyframes waveUnderline {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Section Header */
.st-services-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}



.st-services-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 14px 0 18px;
}



.st-services-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Scene & Track */
.st-svc-scene {
    position: relative;
    width: 100%;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1600px;
    z-index: 1;
    overflow: visible;
}

.st-svc-track {
    position: relative;
    width: 320px;
    height: 520px;
    transform-style: preserve-3d;
}

/* Individual Card */
.st-svc-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 520px;
    border-radius: 28px;
    cursor: pointer;
    transform-origin: center bottom;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.st-svc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    padding: 38px 32px 34px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle top accent line — not too bright */
.st-svc-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    z-index: 3;
}

.st-svc-card-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    z-index: 0;
}

.st-svc-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    z-index: 1;
    opacity: 0.7;
}

/* All content inside card sits above bg/glow */
.st-svc-icon-wrap,
.st-svc-tag,
.st-svc-name,
.st-svc-desc,
.st-svc-points,
.st-svc-btn {
    position: relative;
    z-index: 2;
}

.st-svc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    flex-shrink: 0;
    animation: svcIconFloat 4s ease-in-out infinite;
}

@keyframes svcIconFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

.st-svc-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
}

.st-svc-name {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.st-svc-desc {
    font-size: 13px;
    color: rgba(200, 220, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 16px;
    flex-grow: 1;
}

.st-svc-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.st-svc-points li {
    font-size: 13.5px;
    color: rgba(210, 230, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 9px;
}

.st-svc-points li i {
    color: #4cffb4;
    font-size: 11px;
    flex-shrink: 0;
    background: rgba(76, 255, 180, 0.12);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-self: flex-start;
    cursor: pointer;
}

.st-svc-btn:hover {
    background: rgba(255,255,255,0.22);
    transform: translateX(4px);
}

/* Card positional states (fan layout) */
/* Active center card — sharp & clean */
.st-svc-card[data-state="active"] {
    transform: translateX(0) translateZ(120px) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

/* Per-card glow border colors on active state */
.st-svc-card[data-index="0"][data-state="active"] .st-svc-card-inner {
    border-color: rgba(52, 168, 83, 0.75);
    box-shadow: 0 0 0 1.5px rgba(52,168,83,0.45), inset 0 0 30px rgba(52,168,83,0.1);
}
.st-svc-card[data-index="1"][data-state="active"] .st-svc-card-inner {
    border-color: rgba(193, 53, 132, 0.75);
    box-shadow: 0 0 0 1.5px rgba(193,53,132,0.45), inset 0 0 30px rgba(193,53,132,0.1);
}
.st-svc-card[data-index="2"][data-state="active"] .st-svc-card-inner {
    border-color: rgba(66, 133, 244, 0.75);
    box-shadow: 0 0 0 1.5px rgba(66,133,244,0.45), inset 0 0 30px rgba(66,133,244,0.1);
}
.st-svc-card[data-index="3"][data-state="active"] .st-svc-card-inner {
    border-color: rgba(255, 140, 0, 0.75);
    box-shadow: 0 0 0 1.5px rgba(255,140,0,0.45), inset 0 0 30px rgba(255,140,0,0.08);
}
.st-svc-card[data-index="4"][data-state="active"] .st-svc-card-inner {
    border-color: rgba(0, 220, 200, 0.7);
    box-shadow: 0 0 0 1.5px rgba(0,220,200,0.4), inset 0 0 30px rgba(0,220,200,0.08);
}
.st-svc-card[data-index="5"][data-state="active"] .st-svc-card-inner {
    border-color: rgba(255, 50, 200, 0.7);
    box-shadow: 0 0 0 1.5px rgba(255,50,200,0.4), inset 0 0 30px rgba(255,50,200,0.08);
}

/* Glow border on side cards (left-1 / right-1) — subtle */
.st-svc-card[data-index="0"][data-state="left-1"] .st-svc-card-inner,
.st-svc-card[data-index="0"][data-state="right-1"] .st-svc-card-inner {
    border-color: rgba(52,168,83,0.35);
}
.st-svc-card[data-index="1"][data-state="left-1"] .st-svc-card-inner,
.st-svc-card[data-index="1"][data-state="right-1"] .st-svc-card-inner {
    border-color: rgba(193,53,132,0.35);
}
.st-svc-card[data-index="2"][data-state="left-1"] .st-svc-card-inner,
.st-svc-card[data-index="2"][data-state="right-1"] .st-svc-card-inner {
    border-color: rgba(66,133,244,0.35);
}
.st-svc-card[data-index="3"][data-state="left-1"] .st-svc-card-inner,
.st-svc-card[data-index="3"][data-state="right-1"] .st-svc-card-inner {
    border-color: rgba(255,140,0,0.35);
}
.st-svc-card[data-index="4"][data-state="left-1"] .st-svc-card-inner,
.st-svc-card[data-index="4"][data-state="right-1"] .st-svc-card-inner {
    border-color: rgba(0,220,200,0.35);
}
.st-svc-card[data-index="5"][data-state="left-1"] .st-svc-card-inner,
.st-svc-card[data-index="5"][data-state="right-1"] .st-svc-card-inner {
    border-color: rgba(255,50,200,0.35);
}

/* Left neighbors */
.st-svc-card[data-state="left-1"] {
    transform: translateX(-300px) translateZ(30px) rotateY(16deg) scale(0.86);
    opacity: 0.8;
    z-index: 8;
    pointer-events: auto;
}

.st-svc-card[data-state="left-2"] {
    transform: translateX(-540px) translateZ(-50px) rotateY(26deg) scale(0.72);
    opacity: 0.82;
    z-index: 6;
    pointer-events: auto;
}

.st-svc-card[data-state="left-3"] {
    transform: translateX(-720px) translateZ(-120px) rotateY(32deg) scale(0.58);
    opacity: 0.55;
    z-index: 4;
    pointer-events: none;
}

/* Right neighbors */
.st-svc-card[data-state="right-1"] {
    transform: translateX(300px) translateZ(30px) rotateY(-16deg) scale(0.86);
    opacity: 0.8;
    z-index: 8;
    pointer-events: auto;
}

.st-svc-card[data-state="right-2"] {
    transform: translateX(540px) translateZ(-50px) rotateY(-26deg) scale(0.72);
    opacity: 0.82;
    z-index: 6;
    pointer-events: auto;
}

.st-svc-card[data-state="right-3"] {
    transform: translateX(720px) translateZ(-120px) rotateY(-32deg) scale(0.58);
    opacity: 0.55;
    z-index: 4;
    pointer-events: none;
}

/* Hidden */
.st-svc-card[data-state="hidden"] {
    transform: translateX(0) translateZ(-250px) scale(0.45);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Hover: side cards come forward slightly */
.st-svc-card[data-state="left-1"]:hover {
    transform: translateX(-275px) translateZ(55px) rotateY(9deg) scale(0.91);
    opacity: 0.92;
}
.st-svc-card[data-state="right-1"]:hover {
    transform: translateX(275px) translateZ(55px) rotateY(-9deg) scale(0.91);
    opacity: 0.92;
}

/* Nav Arrows */
.st-svc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #022252;
    border: none;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(2, 34, 82, 0.35);
}

.st-svc-nav:hover {
    background: #033a8a;
    box-shadow: 0 10px 28px rgba(2, 34, 82, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.st-svc-prev { left: 24px; }
.st-svc-next { right: 24px; }

/* Dots */
.st-svc-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
    position: relative;
    z-index: 1;
}

.st-svc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 50, 120, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.st-svc-dot.active {
    width: 32px;
    border-radius: 50px;
    background: linear-gradient(90deg, #0047b3, #0099ff);
    box-shadow: 0 0 12px rgba(0,153,255,0.5);
}

/* CTA */
.st-svc-cta-wrap {
    text-align: center;
    margin-top: 52px;
    position: relative;
    z-index: 1;
}

.st-svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, #0047b3, #0077e6);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15.5px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,71,179,0.4), 0 0 0 0 rgba(0,119,230,0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.st-svc-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.st-svc-cta-btn:hover::before { opacity: 1; }

.st-svc-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,86,204,0.45), 0 0 30px rgba(0,194,255,0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .st-services-title { font-size: 38px; letter-spacing: -1px; }
    .st-svc-scene { height: 560px; }
    .st-svc-card { width: 290px; height: 490px; }
    .st-svc-track { width: 290px; height: 490px; }

    .st-svc-card[data-state="left-2"],
    .st-svc-card[data-state="right-2"],
    .st-svc-card[data-state="left-3"],
    .st-svc-card[data-state="right-3"] {
        opacity: 0;
        pointer-events: none;
    }

    .st-svc-card[data-state="left-1"]  { transform: translateX(-220px) translateZ(0) rotateY(14deg) scale(0.84); }
    .st-svc-card[data-state="right-1"] { transform: translateX(220px) translateZ(0) rotateY(-14deg) scale(0.84); }

    .st-svc-prev { left: 10px; }
    .st-svc-next { right: 10px; }
}

@media (max-width: 600px) {
    .st-services-section { padding: 80px 0 70px; }
    .st-services-title { font-size: 30px; letter-spacing: -0.5px; }
    .st-services-subtitle { font-size: 15px; }
    .st-svc-scene { height: 510px; perspective: 1000px; }
    .st-svc-card { width: 270px; height: 470px; }
    .st-svc-track { width: 270px; height: 470px; }

    .st-svc-card[data-state="left-1"]  { transform: translateX(-170px) translateZ(0) rotateY(12deg) scale(0.82); opacity: 0.55; }
    .st-svc-card[data-state="right-1"] { transform: translateX(170px) translateZ(0) rotateY(-12deg) scale(0.82); opacity: 0.55; }

    .st-svc-nav { width: 42px; height: 42px; font-size: 13px; }
    .st-svc-prev { left: 6px; }
    .st-svc-next { right: 6px; }
    .st-svc-cta-btn { padding: 15px 32px; font-size: 14px; }
}

/* =========================================================
   CARD DOT PATTERN — Top-right area behind badge (all cards)
   ========================================================= */

/* Teal dots — Content (4) */
.st-svc-card[data-index="4"] .st-svc-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(0,191,165,0.22) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 0 28px 0 0;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
}

/* Orange dots — Web Dev (3) */
.st-svc-card[data-index="3"] .st-svc-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(255,130,0,0.22) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 0 28px 0 0;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
}

/* Blue dots — Google Ads (2) */
.st-svc-card[data-index="2"] .st-svc-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(66,133,244,0.22) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 0 28px 0 0;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
}

/* Pink-purple dots — SMM (1) */
.st-svc-card[data-index="1"] .st-svc-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(193,53,132,0.22) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 0 28px 0 0;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
}

/* Green dots — SEO (0) */
.st-svc-card[data-index="0"] .st-svc-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(52,168,83,0.22) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 0 28px 0 0;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
}

/* Purple dots — Branding (5) */
.st-svc-card[data-index="5"] .st-svc-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(160,90,255,0.22) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 0 28px 0 0;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 40%, transparent 80%);
}

/* =========================================================
   CONTENT CARD — Special Redesign (data-index 4) — Teal
   ========================================================= */

.st-svc-card[data-index="4"] .st-svc-card-inner {
    padding: 30px 26px 26px;
    gap: 0;
}

.st-svc-card[data-index="4"] .st-svc-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 20px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

/* Decorative curves — teal tones */
.st-cnt-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 120px 120px at 100% 100%, transparent 60px, rgba(0,191,165,0.12) 61px, rgba(0,191,165,0.12) 65px, transparent 66px),
        radial-gradient(ellipse 90px 90px at 100% 100%, transparent 40px, rgba(0,107,96,0.1) 41px, rgba(0,107,96,0.1) 45px, transparent 46px),
        radial-gradient(ellipse 60px 60px at 100% 100%, transparent 20px, rgba(0,191,165,0.07) 21px, rgba(0,191,165,0.07) 25px, transparent 26px);
    z-index: 1;
    pointer-events: none;
}

/* Viral Ready badge — teal tones */
.st-cnt-badge {
    position: absolute;
    top: 26px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,50,45,0.35);
    border: 1px solid rgba(0,191,165,0.4);
    color: rgba(140, 255, 240, 0.95);
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 11px;
    border-radius: 50px;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.st-cnt-badge i {
    font-size: 9px;
    color: #00bfa5;
}

/* Teal tag */
.st-cnt-tag {
    color: #00bfa5 !important;
    margin-top: 14px;
    margin-bottom: 6px;
}

/* Teal underline */
.st-cnt-underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #006b60, #00bfa5);
    border-radius: 2px;
    margin: 6px 0 12px;
    position: relative;
    z-index: 2;
}

/* Desc */
.st-cnt-desc {
    margin-bottom: 10px !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
    color: rgba(160, 230, 220, 0.75) !important;
}

/* Points list */
.st-cnt-points {
    gap: 0 !important;
    margin-bottom: 16px !important;
}

.st-cnt-points li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    color: #fff !important;
}

.st-cnt-points li:last-child {
    border-bottom: none !important;
}

/* Teal check circle */
.st-cnt-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(76, 255, 180, 0.12);
    border: 1px solid rgba(76, 255, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.st-cnt-check i {
    color: #4cffb4 !important;
    font-size: 10px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Point text */
.st-cnt-point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.st-cnt-point-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.st-cnt-point-text span {
    font-size: 10.5px;
    color: rgba(140, 220, 210, 0.65);
    line-height: 1.3;
}

/* CTA row */
.st-cnt-cta-row {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

/* Teal button */
.st-cnt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #006b60 0%, #00bfa5 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 191, 165, 0.38);
    align-self: flex-start;
}

.st-cnt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 191, 165, 0.55);
}

/* =========================================================
   WEB CARD — Special Redesign (data-index 3) — Orange
   ========================================================= */

.st-svc-card[data-index="3"] .st-svc-card-inner {
    padding: 30px 26px 26px;
    gap: 0;
}

.st-svc-card[data-index="3"] .st-svc-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 20px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

/* Decorative curves — orange tones */
.st-web-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 120px 120px at 100% 100%, transparent 60px, rgba(255,130,0,0.12) 61px, rgba(255,130,0,0.12) 65px, transparent 66px),
        radial-gradient(ellipse 90px 90px at 100% 100%, transparent 40px, rgba(204,68,0,0.09) 41px, rgba(204,68,0,0.09) 45px, transparent 46px),
        radial-gradient(ellipse 60px 60px at 100% 100%, transparent 20px, rgba(255,152,0,0.07) 21px, rgba(255,152,0,0.07) 25px, transparent 26px);
    z-index: 1;
    pointer-events: none;
}

/* Best Seller badge — orange tones */
.st-web-badge {
    position: absolute;
    top: 26px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(80,30,0,0.35);
    border: 1px solid rgba(255,130,0,0.4);
    color: rgba(255, 200, 140, 0.95);
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 11px;
    border-radius: 50px;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.st-web-badge i {
    font-size: 9px;
    color: #ff9800;
}

/* Orange tag */
.st-web-tag {
    color: #ff9800 !important;
    margin-top: 14px;
    margin-bottom: 6px;
}

/* Orange underline */
.st-web-underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #cc4400, #ff9800);
    border-radius: 2px;
    margin: 6px 0 12px;
    position: relative;
    z-index: 2;
}

/* Desc */
.st-web-desc {
    margin-bottom: 10px !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
    color: rgba(240, 200, 160, 0.75) !important;
}

/* Points list */
.st-web-points {
    gap: 0 !important;
    margin-bottom: 16px !important;
}

.st-web-points li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    color: #fff !important;
}

.st-web-points li:last-child {
    border-bottom: none !important;
}

/* Check circle */
.st-web-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(76, 255, 180, 0.12);
    border: 1px solid rgba(76, 255, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.st-web-check i {
    color: #4cffb4 !important;
    font-size: 10px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Point text */
.st-web-point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.st-web-point-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.st-web-point-text span {
    font-size: 10.5px;
    color: rgba(240, 190, 140, 0.65);
    line-height: 1.3;
}

/* CTA row */
.st-web-cta-row {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

/* Orange button */
.st-web-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #cc4400 0%, #ff9800 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 130, 0, 0.4);
    align-self: flex-start;
}

.st-web-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 130, 0, 0.58);
}

/* =========================================================
   PPC CARD — Special Redesign (data-index 2) — Google Blue
   ========================================================= */

.st-svc-card[data-index="2"] .st-svc-card-inner {
    padding: 30px 26px 26px;
    gap: 0;
}

.st-svc-card[data-index="2"] .st-svc-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 20px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

/* Decorative curves — blue tones */
.st-ppc-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 120px 120px at 100% 100%, transparent 60px, rgba(66,133,244,0.12) 61px, rgba(66,133,244,0.12) 65px, transparent 66px),
        radial-gradient(ellipse 90px 90px at 100% 100%, transparent 40px, rgba(26,115,232,0.09) 41px, rgba(26,115,232,0.09) 45px, transparent 46px),
        radial-gradient(ellipse 60px 60px at 100% 100%, transparent 20px, rgba(66,133,244,0.07) 21px, rgba(66,133,244,0.07) 25px, transparent 26px);
    z-index: 1;
    pointer-events: none;
}

/* High ROI badge — blue tones */
.st-ppc-badge {
    position: absolute;
    top: 26px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(10,40,100,0.35);
    border: 1px solid rgba(66,133,244,0.4);
    color: rgba(160, 200, 255, 0.95);
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 11px;
    border-radius: 50px;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.st-ppc-badge i {
    font-size: 9px;
    color: #fbbc04;
}

/* Blue tag */
.st-ppc-tag {
    color: #4285f4 !important;
    margin-top: 14px;
    margin-bottom: 6px;
}

/* Blue underline */
.st-ppc-underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #1557b0, #4285f4);
    border-radius: 2px;
    margin: 6px 0 12px;
    position: relative;
    z-index: 2;
}

/* Desc */
.st-ppc-desc {
    margin-bottom: 10px !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
    color: rgba(180, 200, 240, 0.75) !important;
}

/* Points list */
.st-ppc-points {
    gap: 0 !important;
    margin-bottom: 16px !important;
}

.st-ppc-points li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    color: #fff !important;
}

.st-ppc-points li:last-child {
    border-bottom: none !important;
}

/* Check circle */
.st-ppc-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(76, 255, 180, 0.12);
    border: 1px solid rgba(76, 255, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.st-ppc-check i {
    color: #4cffb4 !important;
    font-size: 10px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Point text */
.st-ppc-point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.st-ppc-point-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.st-ppc-point-text span {
    font-size: 10.5px;
    color: rgba(160, 190, 240, 0.65);
    line-height: 1.3;
}

/* CTA row */
.st-ppc-cta-row {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

/* Google Blue button */
.st-ppc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #1557b0 0%, #4285f4 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.4);
    align-self: flex-start;
}

.st-ppc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(66, 133, 244, 0.58);
}

/* =========================================================
   SMM CARD — Special Redesign (data-index 1) — Instagram Pink-Purple
   ========================================================= */

.st-svc-card[data-index="1"] .st-svc-card-inner {
    padding: 30px 26px 26px;
    gap: 0;
}

.st-svc-card[data-index="1"] .st-svc-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 20px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

/* Decorative curves — purple-pink tones */
.st-smm-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 120px 120px at 100% 100%, transparent 60px, rgba(193,53,132,0.12) 61px, rgba(193,53,132,0.12) 65px, transparent 66px),
        radial-gradient(ellipse 90px 90px at 100% 100%, transparent 40px, rgba(131,58,180,0.1) 41px, rgba(131,58,180,0.1) 45px, transparent 46px),
        radial-gradient(ellipse 60px 60px at 100% 100%, transparent 20px, rgba(253,29,29,0.07) 21px, rgba(253,29,29,0.07) 25px, transparent 26px);
    z-index: 1;
    pointer-events: none;
}

/* Trending badge — pink tones */
.st-smm-badge {
    position: absolute;
    top: 26px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(100,20,80,0.35);
    border: 1px solid rgba(193,53,132,0.4);
    color: rgba(255, 180, 220, 0.95);
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 11px;
    border-radius: 50px;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.st-smm-badge i {
    font-size: 9px;
    color: #fd1d1d;
}

/* Pink tag */
.st-smm-tag {
    color: #c1357a !important;
    margin-top: 14px;
    margin-bottom: 6px;
}

/* Instagram gradient underline */
.st-smm-underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #833ab4, #c1357a, #fd1d1d);
    border-radius: 2px;
    margin: 6px 0 12px;
    position: relative;
    z-index: 2;
}

/* Desc */
.st-smm-desc {
    margin-bottom: 10px !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
    color: rgba(220, 185, 215, 0.75) !important;
}

/* Points list */
.st-smm-points {
    gap: 0 !important;
    margin-bottom: 16px !important;
}

.st-smm-points li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    color: #fff !important;
}

.st-smm-points li:last-child {
    border-bottom: none !important;
}

/* Pink check circle */
.st-smm-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(76, 255, 180, 0.12);
    border: 1px solid rgba(76, 255, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.st-smm-check i {
    color: #4cffb4 !important;
    font-size: 10px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Point text */
.st-smm-point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.st-smm-point-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.st-smm-point-text span {
    font-size: 10.5px;
    color: rgba(220, 170, 210, 0.65);
    line-height: 1.3;
}

/* CTA row */
.st-smm-cta-row {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

/* Instagram gradient button */
.st-smm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #833ab4, #c1357a, #fd1d1d);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(193, 53, 132, 0.4);
    align-self: flex-start;
}

.st-smm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(193, 53, 132, 0.58);
}

/* =========================================================
   SEO CARD — Special Redesign (data-index 0) — Google Green
   ========================================================= */

.st-svc-card[data-index="0"] .st-svc-card-inner {
    padding: 30px 26px 26px;
    gap: 0;
}

/* Force title */
.st-svc-card[data-index="0"] .st-svc-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 20px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

/* Decorative curves — green tones */
.st-seo-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 120px 120px at 100% 100%, transparent 60px, rgba(52,168,83,0.12) 61px, rgba(52,168,83,0.12) 65px, transparent 66px),
        radial-gradient(ellipse 90px 90px at 100% 100%, transparent 40px, rgba(0,200,100,0.09) 41px, rgba(0,200,100,0.09) 45px, transparent 46px),
        radial-gradient(ellipse 60px 60px at 100% 100%, transparent 20px, rgba(52,168,83,0.07) 21px, rgba(52,168,83,0.07) 25px, transparent 26px);
    z-index: 1;
    pointer-events: none;
}

/* Top Ranked badge — green tones */
.st-seo-badge {
    position: absolute;
    top: 26px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(30,90,50,0.35);
    border: 1px solid rgba(52,168,83,0.4);
    color: rgba(150, 255, 180, 0.95);
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 11px;
    border-radius: 50px;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.st-seo-badge i {
    font-size: 9px;
    color: #34a853;
}

/* Green tag */
.st-seo-tag {
    color: #34a853 !important;
    margin-top: 14px;
    margin-bottom: 6px;
}

/* Green underline */
.st-seo-underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #1e7e34, #34a853);
    border-radius: 2px;
    margin: 6px 0 12px;
    position: relative;
    z-index: 2;
}

/* Desc */
.st-seo-desc {
    margin-bottom: 10px !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
    color: rgba(180, 220, 190, 0.75) !important;
}

/* Points list */
.st-seo-points {
    gap: 0 !important;
    margin-bottom: 16px !important;
}

.st-seo-points li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    color: #fff !important;
}

.st-seo-points li:last-child {
    border-bottom: none !important;
}

/* Green check circle */
.st-seo-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(76, 255, 180, 0.12);
    border: 1px solid rgba(76, 255, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.st-seo-check i {
    color: #4cffb4 !important;
    font-size: 10px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Point text */
.st-seo-point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.st-seo-point-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.st-seo-point-text span {
    font-size: 10.5px;
    color: rgba(160, 220, 175, 0.65);
    line-height: 1.3;
}

/* CTA row */
.st-seo-cta-row {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

/* Green button */
.st-seo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #1e7e34 0%, #34a853 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(52, 168, 83, 0.38);
    align-self: flex-start;
}

.st-seo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(52, 168, 83, 0.55);
}

/* =========================================================
   BRANDING CARD — Special Redesign (data-index 5)
   ========================================================= */

.st-svc-card[data-index="5"] .st-svc-card-inner {
    padding: 30px 26px 26px;
    gap: 0;
}

/* Force title to show properly */
.st-svc-card[data-index="5"] .st-svc-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 22px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

.st-brand-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 120px 120px at 100% 100%, transparent 60px, rgba(130,50,220,0.12) 61px, rgba(130,50,220,0.12) 65px, transparent 66px),
        radial-gradient(ellipse 90px 90px at 100% 100%, transparent 40px, rgba(240,70,110,0.1) 41px, rgba(240,70,110,0.1) 45px, transparent 46px),
        radial-gradient(ellipse 60px 60px at 100% 100%, transparent 20px, rgba(130,50,220,0.08) 21px, rgba(130,50,220,0.08) 25px, transparent 26px);
    z-index: 1;
    pointer-events: none;
}

.st-brand-popular {
    position: absolute;
    top: 26px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(130, 50, 220, 0.2);
    border: 1px solid rgba(160, 90, 255, 0.35);
    color: rgba(210, 160, 255, 0.95);
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 11px;
    border-radius: 50px;
    z-index: 3;
    backdrop-filter: blur(4px);
    /* Subtle dot pattern behind badge */
    background: rgba(80,20,160,0.3);
}

.st-brand-popular i {
    font-size: 9px;
    color: #d4a0ff;
}

.st-brand-tag {
    color: #f0466e !important;
    margin-top: 14px;
    margin-bottom: 6px;
}

.st-brand-underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #f0466e, #ff8c42);
    border-radius: 2px;
    margin: 6px 0 12px;
    position: relative;
    z-index: 2;
}

.st-svc-card[data-index="5"] .st-svc-desc {
    margin-bottom: 10px;
    font-size: 11.5px;
    line-height: 1.55;
    color: rgba(200, 185, 230, 0.75);
}

.st-brand-points {
    gap: 0 !important;
    margin-bottom: 16px !important;
}

.st-brand-points li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    color: #fff !important;
}

.st-brand-points li:last-child {
    border-bottom: none !important;
}

.st-brand-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(76, 255, 180, 0.12);
    border: 1px solid rgba(76, 255, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.st-brand-check i {
    color: #4cffb4 !important;
    font-size: 10px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.st-brand-point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.st-brand-point-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.st-brand-point-text span {
    font-size: 10.5px;
    color: rgba(195, 170, 230, 0.6);
    line-height: 1.3;
}

.st-brand-cta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

.st-brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #f0466e 0%, #ff7043 60%, #ff8c42 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(240, 70, 110, 0.38);
    align-self: flex-start;
}

.st-brand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(240, 70, 110, 0.55);
}

.st-brand-bookmark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.st-brand-bookmark:hover {
    background: rgba(240, 70, 110, 0.15);
    border-color: rgba(240, 70, 110, 0.4);
    color: #f0466e;
}

.st-svc-card[data-index="5"][data-state="active"] .st-svc-card-inner {
    border-color: rgba(240, 70, 110, 0.65) !important;
    box-shadow: 0 0 0 1.5px rgba(150, 50, 255, 0.4),
                inset 0 0 30px rgba(240, 70, 110, 0.06) !important;
}

.st-svc-card[data-index="5"][data-state="left-1"] .st-svc-card-inner,
.st-svc-card[data-index="5"][data-state="right-1"] .st-svc-card-inner {
    border-color: rgba(240, 70, 110, 0.3) !important;
}

/* =========================================================
   MAP / LOCATION SECTION — Full Width
   ========================================================= */
.st-map-section {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    line-height: 0;
}

.st-map-iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .st-map-iframe { height: 350px; }
}

@media (max-width: 480px) {
    .st-map-iframe { height: 280px; }
}


.st-map-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
}

/* Left Info Card */
.st-map-info {
    background: #ffffff;
    border-radius: 24px 0 0 0;
    padding: 50px 44px 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 8px 0 40px rgba(0,86,204,0.06);
    position: relative;
    z-index: 2;
}

.st-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(0,86,204,0.06);
    border: 1px solid rgba(0,86,204,0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
}

.st-map-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.st-map-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.st-map-subtitle {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
}

.st-map-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.st-map-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.st-map-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #022252, #0056cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(2,34,82,0.2);
}

.st-map-detail-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.st-map-detail-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.st-map-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
}

.st-map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #022252;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(2,34,82,0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
    cursor: pointer;
    margin-top: auto;
}

.st-map-directions-btn:hover {
    background: #033a8a;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(2,34,82,0.35);
}

/* Right Map Embed */
.st-map-embed-wrap {
    position: relative;
    border-radius: 0 24px 0 0;
    overflow: hidden;
    min-height: 520px;
}

.st-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: none;
    display: block;
    filter: saturate(0.9) contrast(1.05);
}

/* Pin badge overlay */
.st-map-pin-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #022252;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(2,34,82,0.3);
    pointer-events: none;
    z-index: 5;
}

.st-map-pin-badge i {
    color: #ff4444;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .st-map-wrapper {
        grid-template-columns: 1fr;
        padding: 0 24px;
        min-height: auto;
    }
    .st-map-info {
        border-radius: 20px 20px 0 0;
        padding: 40px 32px;
    }
    .st-map-embed-wrap {
        border-radius: 0 0 20px 20px;
        min-height: 380px;
    }
    .st-map-iframe { min-height: 380px; }
    .st-map-title { font-size: 28px; }
}

@media (max-width: 600px) {
    .st-map-section { padding: 70px 0 0; }
    .st-map-wrapper { padding: 0 16px; }
    .st-map-info { padding: 32px 24px; }
    .st-map-title { font-size: 24px; }
    .st-map-embed-wrap { min-height: 300px; }
    .st-map-iframe { min-height: 300px; }
}



.searchtech-marquee {
    background: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #021749;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.marquee-content i {
    color: #021749;
    font-size: 18px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


/*************************
 FAQ Section
*************************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.faq-section{
    position:relative;
    padding:100px 20px;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
    background:
    radial-gradient(circle at 100% 20%, rgba(35,80,255,.35), transparent 30%),
    radial-gradient(circle at 0% 80%, rgba(0,140,255,.15), transparent 35%),
    linear-gradient(135deg,#010b34,#021b63,#011030);
}

.faq-section::before{
    content:"";
    position:absolute;
    right:-200px;
    top:-100px;
    width:500px;
    height:500px;
    background:rgba(0,102,255,.15);
    filter:blur(120px);
    border-radius:50%;
}

.faq-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Header */

.faq-header{
    text-align:center;
    margin-bottom:50px;
}

.faq-badge{
    display:inline-block;
    padding:8px 18px;
    background:rgba(0,170,255,.15);
    border:1px solid rgba(0,170,255,.25);
    color:#00aaff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.faq-header h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.faq-header p{
    color:#b8c4e0;
    font-size:16px;
}

/* FAQ Grid */

.faq-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px 25px;
    align-items:start;
}

/* FAQ Card */

.faq-item{
    position:relative;
    overflow:hidden;
    border-radius:22px;

    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.10);

    transition:all .45s cubic-bezier(.4,0,.2,1);
}

/* Glass Glow Line */

.faq-item::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:120%;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,183,255,.9),
        transparent
    );

    transition:.8s ease;
}

.faq-item:hover::before{
    left:100%;
}

.faq-item:hover{
    transform:translateY(-5px);

    border-color:rgba(0,183,255,.25);

    box-shadow:
    0 15px 40px rgba(0,102,255,.12),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.faq-item.active{
    border-color:rgba(0,183,255,.25);

    box-shadow:
    0 15px 40px rgba(0,102,255,.15),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* Question */

.faq-question{
    width:100%;
    border:none;
    outline:none;
    background:transparent;

    color:#ffffff;

    padding:28px 30px;

    font-size:18px;
    font-weight:600;

    text-align:left;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Icon */

.icon{
    font-size:28px;
    color:#00aaff;
    flex-shrink:0;

    transition:
        transform .4s cubic-bezier(.4,0,.2,1),
        color .3s ease;
}

.faq-item.active .icon{
    transform:rotate(135deg);
}

/* Smooth Accordion */

.faq-answer{
    display:grid;
    grid-template-rows:0fr;
    opacity:0;

    transition:
        grid-template-rows .45s cubic-bezier(.4,0,.2,1),
        opacity .35s ease;
}

.faq-answer p{
    overflow:hidden;
    margin:0;
    padding:0 24px;
    color:#c7d2e8;
    line-height:1.8;
    font-size:15px;
}

.faq-item.active .faq-answer{
    grid-template-rows:1fr;
    opacity:1;
}

.faq-item.active .faq-answer p{
    padding:0 24px 22px;
}

/* Tablet */

@media(max-width:992px){

    .faq-list{
        grid-template-columns:1fr;
    }

}

/* Mobile */

@media(max-width:768px){

    .faq-section{
        padding:70px 15px;
    }

    .faq-header h2{
        font-size:30px;
    }

    .faq-header p{
        font-size:14px;
    }

    .faq-question{
        padding:18px;
        font-size:15px;
    }

    .faq-answer p{
        padding:0 18px;
        font-size:14px;
        line-height:1.7;
    }

    .faq-item.active .faq-answer p{
        padding:0 18px 18px;
    }

    .icon{
        font-size:24px;
    }
}



.faq-section::after{
    content:"";
    position:absolute;
    right:-150px;
    top:0;

    width:500px;
    height:500px;

    background:#0b5cff;
    opacity:.18;

    filter:blur(150px);
    border-radius:50%;

    pointer-events:none;
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

.st-testimonials{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:
    radial-gradient(circle at 100% 20%, rgba(35,80,255,.35), transparent 30%),
    radial-gradient(circle at 0% 80%, rgba(0,140,255,.15), transparent 35%),
    linear-gradient(135deg,#010b34,#021b63,#011030);
}

.st-glow{
    position:absolute;
    right:-150px;
    top:0;
    width:500px;
    height:500px;
    background:#0b5cff;
    opacity:.15;
    filter:blur(150px);
}

.st-heading{
    text-align:center;
    margin-bottom:70px;
}

.st-subtitle{
    color:#ffffff;
    letter-spacing:4px;
    font-size:12px;
    font-weight:600;
}

.st-subtitle span{
    background:#00b7ff;
}

.st-heading h2{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:52px; /* 72px se 52px */
    margin:15px 0;
    line-height:1.1;
}

.st-heading h2 em{
    color:#4f8cff;
    font-style:italic;
}

.st-heading p{
    color:#9fb4db;
    font-size:16px; /* 22px se 16px */
}

.st-rating-box{
    margin:30px auto 0;
    width:max-content;

    display:flex;
    align-items:center;
    gap:14px;

    padding:12px 24px;

    border-radius:60px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
}

.rating-number{
    color:#ffffff;
    font-size:28px;
    font-weight:700;
}

.rating-stars{
    font-size:16px;
}

.rating-text{
    font-size:14px;
}

.rating-brands{
    display:flex;
    gap:14px;
    font-size:14px;
}

.divider{
    width:1px;
    height:24px;
    background:rgba(255,255,255,.15);
}

.rating-stars{
    color:#ffb400;
    font-size:24px;
}

.rating-text{
    color:#9fb4db;
}

.divider{
    width:1px;
    height:30px;
    background:rgba(255,255,255,.15);
}

.rating-brands{
    display:flex;
    gap:20px;
    color:#fff;
}

.marquee-wrapper{
    overflow:hidden;
    margin-bottom:30px;
}

.marquee{
    display:flex;
    gap:20px;
    width:max-content;
}

.marquee-left{
    animation:scrollLeft 35s linear infinite;
}

.marquee-right{
    animation:scrollRight 35s linear infinite;
}

.st-testimonials .container{
    max-width:1250px;
    margin:auto;
}

.review-card{
    width:320px;
    min-width:320px;

    padding:18px;

    border-radius:20px;

    background:rgba(255,255,255,.03);
    backdrop-filter:blur(18px);

    border:1px solid rgba(0,183,255,.18);
}
.review-top{
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:20px;
}

.avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#ffc107;
    color:#7a5600;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.review-top h4{
    color:#fff;
    font-size:16px;
    margin:0;
}

.stars{
    color:#ffb400;
}

.review-card p{
    color:#dce7ff;
    line-height:1.5;
    font-size:14px;
}

@keyframes scrollLeft{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

@keyframes scrollRight{
    from{transform:translateX(-50%);}
    to{transform:translateX(0);}
}

/* Testimonials responsive (corrected font sizes) → moved to responsives.css */


.rating-brands{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:14px;
}

.google-brand{
    color:#ffffff;
    font-weight:600;
}

.google-brand i{
    background:linear-gradient(
        45deg,
        #4285F4,
        #34A853,
        #FBBC05,
        #EA4335
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.meta-brand{
    color:#ffffff;
    font-weight:600;
}

.meta-brand i{
    color:#0081FB;
}












.video-testimonials{
    background:#E9F4FD;
    padding:50px 0 20px;
    overflow:hidden;
}

.carousel_slide{
    position:relative;
    height:650px;
}

.stage{
    position:relative;
    width:100%;
    height:700px;

    overflow:visible; /* hidden ki jagah */

    transform-style:preserve-3d;
}

.ring_wrapper{
    perspective:2000px;
    width:300px;
    height:500px;

    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
}

.ring{
    width:100%;
    height:100%;

    position:absolute;

    transform-style:preserve-3d;

    cursor:grab;
}

.ring:active{
    cursor:grabbing;
}

.port_img{
    position:absolute;

    width:260px;
    height:380px; /* 500 se thodi choti */

    left:0;
    top:0;

    border-radius:32px;
    overflow:hidden;

    background:#fff;

    backface-visibility:hidden;

    border:2px solid rgba(255,255,255,.7);

    box-shadow:
    0 12px 30px rgba(0,0,0,.08),
    0 25px 50px rgba(0,0,0,.12);

    transition:all .4s ease;
}

.port_img::before{
    content:"";

    position:absolute;
    inset:0;

    border-radius:32px;

    border:1px solid rgba(255,255,255,.5);

    pointer-events:none;

    z-index:3;
}

.port_img video{
    width:100%;
    height:100%;
    object-fit:contain;
}

.port_img:hover video{
    transform:scale(1.03);
}

.play-btn{
    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:90px;
    height:90px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    backdrop-filter:blur(15px);

    display:none;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:28px;

    z-index:5;
    
    cursor:pointer;
    transition:all 0.3s ease;
}

.play-btn:hover{
    background:rgba(255,255,255,.4);
    transform:translate(-50%,-50%) scale(1.1);
}

.port_img:hover .play-btn{
    opacity:1;
}

.vt-heading{
    text-align:center;
    margin-bottom:16px;
}

.vt-heading span{
    letter-spacing:4px;
    color:#6A63FF;
    font-size:12px;
    font-weight:600;
}

.vt-heading h2{
    font-size:40px;
    margin:12px 0;
}

.vt-heading em{
    color:#6A63FF;
}

.vt-heading p{
    color:#666;
    margin:0;
}

.port_img.playing .play-btn{
    opacity:0;
    pointer-events:none;
}

/* Video testimonials responsive (corrected sizes) → moved to responsives.css */


body{
    font-family:'Plus Jakarta Sans',sans-serif;
}





/* ===========================
   PREMIUM PROCESS SECTION
=========================== */

.work-process{
    background:#fafafa;
    padding:100px 0 80px;
    overflow:hidden;
    position:relative;
}

/* HEADING */

.process-heading{
    text-align:center;
    margin-bottom:65px;
}

.process-heading span{
    display:block;
    color:#6466ff;
    font-size:13px;
    letter-spacing:6px;
    font-weight:700;
    margin-bottom:18px;
}

.process-heading h2{
    font-family:'Poppins',sans-serif;
    font-size:35px;
    font-weight:600;
    line-height:1.05;
    letter-spacing:-2px;
}

.process-heading em{
    font-style:normal;
    background:linear-gradient(90deg,#7f5cff,#4e8fff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.process-heading p{
    font-size:15px;
    color:#667085;
    font-weight:400;
    max-width:720px;
    margin:auto;
    line-height:1.6;
}

/* PROCESS AREA */

.process-wrapper{
    max-width:1210px;
    height:500px;
    margin:auto;
    position:relative;
}

.process-line{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:1;
}

.snake-path{
    fill:none;
    stroke:#8a8cff;
opacity:.75;

    stroke-width:3;

    stroke-linecap:round;
    stroke-linejoin:round;

    stroke-dasharray:8 8;

    opacity:.9;

    animation:snakeFlow 8s linear infinite;
}

@keyframes snakeFlow{
    from{
        stroke-dashoffset:0;
    }
    to{
        stroke-dashoffset:-120;
    }
}

/* STEP */

.step{
    position:absolute;
    width:260px;
    text-align:center;
    z-index:3;
}

.step-number{

    width:92px;
    height:92px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;

    color:#fff;
    font-size:42px;
    font-weight:700;

    border:8px solid rgba(255,255,255,.9);

    box-shadow:
0 15px 35px rgba(0,0,0,.08),
0 0 0 10px rgba(255,255,255,.35),
0 0 40px rgba(108,99,255,.15);

    transition:.4s;
}

.step:hover .step-number{
    transform:translateY(-8px) scale(1.08);
}

.step h3{
    font-size:20px;
    margin-top:20px;
    margin-bottom:10px;
    color:#121826;
}

.step p{
    color:#667085;
    line-height:1.8;
    font-size:15px;
}

/* COLORS */

.green{
    background:linear-gradient(135deg,#8edb59,#7bd321);
}

.pink{
    background:linear-gradient(135deg,#ff7aa8,#ff3d71);
}

.blue{
    background:linear-gradient(135deg,#5b97ff,#2958ff);
}

.orange{
    background:linear-gradient(135deg,#ff9a6e,#ff5b5b);
}

.purple{
    background:linear-gradient(135deg,#9b6fff,#6729ff);
}

.cyan{
    background:linear-gradient(135deg,#66dfff,#18c7ff);
}

/* POSITIONS */

.step1{
    left:0;
    top:20px;
}

.step2{
    left:50%;
    transform:translateX(-50%);
    top:20px;
}

.step3{
    right:0;
    top:20px;
}

.step4{
    right:0;
    bottom:10px;
}

.step5{
    left:50%;
    transform:translateX(-50%);
    bottom:10px;
}

.step6{
    left:0;
    bottom:10px;
}

/* FEATURE BAR */

.process-features{
    max-width:1450px;
    margin:70px auto 0;

    background:#fff;

    border-radius:32px;

    box-shadow:0 20px 60px rgba(0,0,0,.05);

    padding:45px 15px;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:0;
}

.feature-box{

    text-align:center; /* left se center */

    padding:0 30px;

    border-right:1px solid #efefef;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.feature-box:last-child{
    border-right:none;
}

.feature-icon{

    width:72px;
    height:72px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f5f3ff;

    color:#6c63ff;

    font-size:28px;

    margin-bottom:22px;

    transition:.35s ease;
}

.feature-box h4{

    font-size:30px;
    font-weight:700;

    color:#0f172a;

    margin:0 0 16px;

    line-height:1.2;
}

.feature-box p{

    font-size:18px;

    color:#64748b;

    line-height:1.8;

    max-width:240px;

    margin:0 auto;
}

.feature-box:hover .feature-icon{

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(108,99,255,.20);
}

.feature-box:hover h4{
    color:#6c63ff;
}

/* Work process responsive (corrected: 2-col grid, 28px heading) → moved to responsives.css */









/* SECTION */

.portfolio-showcase{

    padding:70px 10px;

    background:
    transparent;
}

.portfolio-outer{

    max-width:1350px;

    margin:auto;

    background:#050505;

    border-radius:45px;

    padding:12px;

    box-shadow:
    0 0 0 2px rgba(255,255,255,.05),
    0 20px 80px rgba(0,0,0,.45);
}

.portfolio-shell{

    border-radius:38px;

    padding:30px 35px 40px;

    background:
    radial-gradient(circle at top right,#1238d4 0%,#02134f 35%,#010c34 100%);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    inset 0 0 50px rgba(255,255,255,.03);
}

/* Heading */

.portfolio-shell h2{

    text-align:center;

    color:#fff;

    font-size:54px;

    font-weight:700;

    margin-bottom:22px;

    font-family:'Outfit',sans-serif;

    font-style:italic;

    letter-spacing:-2px;
}

/* Tabs */

/* PORTFOLIO TABS */

.portfolio-tabs{

    display:flex;
    flex-wrap:nowrap;

    gap:14px;

    overflow-x:auto;
    overflow-y:hidden;

    padding:14px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

    position:relative;

    scrollbar-width:none;
    -ms-overflow-style:none;
}

.portfolio-tabs::-webkit-scrollbar{
    display:none;
}

.portfolio-tabs::before{

    content:'';

    position:absolute;

    bottom:0;
    left:-100%;

    width:120%;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,183,255,.95),
        transparent
    );

    animation:portfolioShine 5s linear infinite;
}

@keyframes portfolioShine{

    0%{
        left:-100%;
    }

    100%{
        left:100%;
    }
}


.portfolio-tabs.active{
    cursor:grabbing;
}

/* IMPORTANT */

.portfolio-tabs .tabs-track{

    display:flex;

    flex-wrap:nowrap;

    gap:12px;

    width:max-content;

    min-width:max-content;
}

.portfolio-tabs button{

    flex:0 0 auto;

    border:none;

    cursor:pointer;

    color:#fff;

    padding:14px 24px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.06);

    transition:.35s ease;

    font-weight:500;
}

.portfolio-tabs button:hover{

    transform:translateY(-2px);

    border-color:rgba(0,183,255,.25);

    box-shadow:
    0 10px 25px rgba(0,102,255,.12),
    inset 0 1px 0 rgba(255,255,255,.08);

    background:rgba(255,255,255,.08);
}

.portfolio-tabs button.active{

    background:
    linear-gradient(
        135deg,
        #4c6fff,
        #4e2fff
    );

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    0 10px 35px rgba(68,39,255,.35),
    0 0 25px rgba(78,47,255,.55),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* Category */

.portfolio-category{

    color:#fff;

    font-size:20px;

    font-weight:600;

    margin-bottom:20px;
}

.portfolio-category:after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    border-radius:20px;

    background:#3e63ff;

    margin-top:10px;
}

/* Grid */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

/* Cards */

.portfolio-card{
    overflow:hidden;
    border-radius:18px;
    border:2px solid rgba(61,97,255,.45);
    background:#091544;
}

.portfolio-card:hover{

    transform:translateY(-4px);

    border-color:#5c7dff;
}

.portfolio-card img{
    width:100%;
    aspect-ratio:2352 / 1482;
    object-fit:contain;
    display:block;
    background:#ffffff;
}
/* Button */

.portfolio-btn-wrap{

    text-align:center;

    margin-top:25px;
}

.portfolio-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#fff;

    text-decoration:none;

    padding:14px 30px;

    border-radius:14px;

    font-weight:700;

    background:
    linear-gradient(90deg,#3f65ff,#4427ff);

    box-shadow:
    0 10px 30px rgba(68,39,255,.35);
}








/* =========================================
   INDUSTRIES SECTION
========================================= */

.industries-section{

    position:relative;

    padding:75px 15px;

    overflow:hidden;

    background:
    radial-gradient(circle at 100% 20%,rgba(35,80,255,.35),transparent 30%),
    radial-gradient(circle at 0% 80%,rgba(0,140,255,.15),transparent 35%),
    linear-gradient(135deg,#010b34,#021b63,#011030);
}

/* Glow Effect */

.industries-section::after{

    content:"";

    position:absolute;

    right:-150px;
    top:0;

    width:500px;
    height:500px;

    background:#0b5cff;

    opacity:.18;

    filter:blur(150px);

    border-radius:50%;

    pointer-events:none;
}

.industries-container{

    max-width:1280px;

    margin:auto;

    position:relative;

    z-index:2;
}

/* =========================================
   HEADER
========================================= */

/* Header */

.industries-header{

    text-align:center;

    margin-bottom:55px;
}

.industry-badge{

    display:inline-block;

    color:#7da7ff;

    font-size:13px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;
}

/* Heading */

.industries-header h2{

    position:relative;

    display:inline-block;

    color:#fff;

    font-size:46px;

    font-weight:800;

    line-height:1.15;

    margin:0 0 32px;
}

/* Glow Line */

.industries-header h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-16px;

    transform:translateX(-50%);

    width:220px;

    height:4px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        #4f7cff,
        #00d4ff,
        #4f7cff,
        transparent
    );

    box-shadow:
        0 0 12px rgba(79,124,255,.9),
        0 0 24px rgba(79,124,255,.8),
        0 0 40px rgba(0,212,255,.9);
}

/* Extra Glow Behind Line */

.industries-header h2::before{

    content:"";

    position:absolute;

    left:50%;

    bottom:-28px;

    transform:translateX(-50%);

    width:260px;

    height:24px;

    background:#2f6dff;

    opacity:.35;

    filter:blur(18px);

    border-radius:50%;

    z-index:-1;
}

/* Paragraph */

.industries-header p{

    color:#c7d2e8;

    font-size:17px;

    line-height:1.8;

    max-width:700px;

    margin:auto;
}

/* Industries header responsive → moved to responsives.css */
/* =========================================
   GRID
========================================= */

.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;
}

/* =========================================
   CARD
========================================= */

.industry-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    transition:all .4s ease;
}

/* Animated Glow Line */

.industry-card::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:120%;

    height:1px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(0,183,255,.9),
    transparent);

    transition:.8s ease;
}

.industry-card:hover::before{
    left:100%;
}

.industry-card:hover{

    transform:translateY(-6px);

    border-color:rgba(0,183,255,.25);

    box-shadow:
    0 15px 40px rgba(0,102,255,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* =========================================
   IMAGE
========================================= */

.industry-image{

    height:190px;

    overflow:hidden;
}

.industry-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;
}

.industry-card:hover .industry-image img{

    transform:scale(1.05);
}

/* =========================================
   ICON
========================================= */

.industry-icon{

    position:absolute;

    left:50%;

    top:158px;

    transform:translateX(-50%);

    width:65px;
    height:65px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #4f7cff,
    #5b27ff);

    border:3px solid #091a63;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:24px;

    box-shadow:
    0 0 25px rgba(92,125,255,.45);
}

/* =========================================
   TITLE
========================================= */

.industry-card h3{

    color:#fff;

    font-size:24px;

    font-weight:700;

    text-align:center;

    margin-top:50px;

    margin-bottom:12px;

    padding:0 15px;
}

/* =========================================
   DESCRIPTION
========================================= */

.industry-card p{

    color:#c7d2e8;

    text-align:center;

    line-height:1.7;

    font-size:14px;

    padding:0 20px 24px;

    margin:0;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .industries-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .industries-header h2{

        font-size:38px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .industries-section{

        padding:55px 10px;
    }

    .industries-grid{

        grid-template-columns:1fr;
    }

    .industries-header h2{

        font-size:30px;
    }

    .industries-header p{

        font-size:14px;
    }

    .industry-image{

        height:200px;
    }
}


/* ════════════════════════════════════════════════════════════════════
   PREMIUM FORM ROW  ·  .st-formrow  (row-330)
   Clean, trustworthy, founder-led, high-converting, minimal 3D accent
   ════════════════════════════════════════════════════════════════════ */

/* ── Section shell ── */
.st-formrow {
    position: relative;
    overflow: hidden;
    padding: 96px 24px;

    background:
        radial-gradient(ellipse 70% 60% at 15% 50%, rgba(0,86,204,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 90% 40%, rgba(0,194,255,.12) 0%, transparent 65%),
        linear-gradient(160deg, #010d2a 0%, #011848 50%, #02204e 100%);
}

/* ── Ambient glow orbs ── */
.st-fr-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    opacity: .55;
    animation: st-fr-drift 14s ease-in-out infinite alternate;
}
.st-fr-orb--1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(0,86,204,.45), transparent 70%);
    top: -140px; left: -120px;
    animation-duration: 17s;
}
.st-fr-orb--2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(0,194,255,.35), transparent 70%);
    bottom: -100px; right: -80px;
    animation-duration: 12s;
    animation-direction: alternate-reverse;
}
@keyframes st-fr-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.08); }
}

/* ── Two-column inner ── */
.st-fr-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ═══════════════════════════════
   LEFT: COPY / TRUST BLOCK
   ═══════════════════════════════ */

/* Shift entire left copy section 4px left */
.st-fr-copy {
    margin-left: 0;
}

/* Eyebrow badge */
.st-fr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #7dd3fc;
    background: rgba(125, 211, 252, .1);
    border: 1px solid rgba(125, 211, 252, .25);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

/* Pulsing live dot */
.st-fr-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 0 0 rgba(34, 211, 238, .6);
    animation: st-fr-pulse 2s ease-out infinite;
    display: inline-block;
    flex-shrink: 0;
}
@keyframes st-fr-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 211, 238, .6); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

/* Headline */
.st-fr-headline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.18;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin-bottom: 20px;
}
.st-fr-headline em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(90deg, #60a5fa, #38bdf8, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sub-copy */
.st-fr-sub {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 440px;
}
.st-fr-sub strong { color: #e2e8f0; }

/* ── Quick Stats ── */
.st-fr-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    padding: 16px 20px;
    max-width: 455px;
    width: 100%;
}
.st-fr-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 2px;
}
.st-fr-stat-num {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.st-fr-stat-lbl {
    font-size: 10.5px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.st-fr-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* ── Founder strip ── */
/* ── Old single founder (kept for compatibility) ── */
.st-fr-founder {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 16px 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 440px;
    transition: border-color .4s ease;
}
.st-fr-founder:hover { border-color: rgba(96, 165, 250, .3); }

/* ── Dual Founder Wrap ── */
.st-fr-founders-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 455px;
    width: 100%;
    transition: border-color .4s ease;
}
.st-fr-founders-wrap:hover { border-color: rgba(96,165,250,.25); }

/* Each founder block */
.st-fr-founder-card {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

/* & divider */
.st-fr-founders-and {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 14px;
    flex-shrink: 0;
}
.st-fr-founders-and span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Founder info text */
.st-fr-founder-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.st-fr-founder-info strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    color: #e2e8f0;
    line-height: 1.2;
}
.st-fr-role {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 500;
}
.st-fr-role-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 600;
    color: #7dd3fc;
    background: rgba(125,211,252,.1);
    border: 1px solid rgba(125,211,252,.2);
    border-radius: 50px;
    padding: 2px 8px;
    margin-top: 3px;
    width: fit-content;
}
.st-fr-role-tag i { font-size: 9px; }

/* Shared quote block below both founders */
.st-fr-founders-quote {
    max-width: 455px;
    width: 100%;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    position: relative;
}
.st-fr-quote-icon {
    color: #3b82f6;
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 6px;
    display: block;
}
.st-fr-founders-quote p {
    font-size: 13px;
    color: #7dd3fc;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Horizontal row variant for exp-badges */
.st-fr-exp-badges--row {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 6px 14px !important;
}
.st-fr-exp-badges--row span {
    font-size: 11px !important;
}

.st-fr-avatar {
    position: relative;
    flex-shrink: 0;
    width: 52px; height: 52px;
}
.st-fr-avatar-initials {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: .5px;
    position: relative;
    z-index: 1;
}
.st-fr-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #60a5fa, #06b6d4) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: st-fr-ring-spin 5s linear infinite;
}
@keyframes st-fr-ring-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Verified badge on avatar */
.st-fr-verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #22d3ee, #60a5fa);
    border-radius: 50%;
    border: 2px solid #011848;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 8px;
    color: #fff;
}

/* Experience badges inside founder strip */
.st-fr-exp-badges {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 6px;
}
.st-fr-exp-badges span {
    font-size: 11.5px;
    color: #7dd3fc;
    font-style: normal !important;
    display: flex;
    align-items: center;
    gap: 5px;
}
.st-fr-exp-badges i {
    color: #22d3ee;
    font-size: 10px;
}

.st-fr-founder-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.st-fr-founder-text strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: #e2e8f0;
}
.st-fr-founder-text span {
    font-size: 13.5px;
    color: #7dd3fc;
    font-style: italic;
}

/* ── Trust badges row ── */
.st-fr-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.st-fr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: #cbd5e1;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    padding: 8px 16px;
    transition: all .35s ease;
}
.st-fr-badge i {
    color: #38bdf8;
    font-size: 12px;
}
.st-fr-badge:hover {
    background: rgba(56, 189, 248, .1);
    border-color: rgba(56, 189, 248, .35);
    color: #e0f2fe;
    transform: translateY(-2px);
}


/* ═══════════════════════════════
   RIGHT: GLASS FORM CARD
   ═══════════════════════════════ */

/* ── Card Wrap (positions dashboard behind card) ── */
.st-fr-card-wrap {
    position: relative;
}

/* ── Slot Badge ── */
.st-fr-slot-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12.5px;
    padding: 7px 18px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(249,115,22,.45);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    animation: st-slot-pulse 2.5s ease-in-out infinite;
}
@keyframes st-slot-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(249,115,22,.45); }
    50%       { box-shadow: 0 4px 32px rgba(249,115,22,.75); }
}
.st-fr-slot-fire { font-size: 14px; }

/* ── Floating Dashboard Mockup ── */
.st-fr-dashboard {
    position: absolute;
    inset: -30px -50px -40px -50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
    filter: blur(2px);
    opacity: 0.4;
}
.st-dash-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
}
.st-dash-mini-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    backdrop-filter: blur(10px);
}
.st-dash-icon { font-size: 18px; flex-shrink: 0; }
.st-dash-mini-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #e2e8f0;
}
.st-dash-mini-card small {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.st-dash-chart-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
}
.st-dash-chart-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}
.st-dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}
.st-dash-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
    border-radius: 4px 4px 0 0;
    position: relative;
}
.st-dash-bar--active { background: linear-gradient(180deg, #22d3ee, #0284c7); }
.st-dash-bar span {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: #64748b;
    white-space: nowrap;
}
.st-dash-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 10px 16px;
    backdrop-filter: blur(10px);
}
.st-dash-g-icon { font-size: 20px; color: #ea4335; flex-shrink: 0; }
.st-dash-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.st-dash-reviews span { font-size: 12px; color: #94a3b8; font-weight: 600; }

.st-fr-card {
    position: relative;
    background: rgba(20, 52, 140, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 28px;
    padding: 44px 42px 42px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.35),
        0 0 40px rgba(0,180,255,.15),
        0 0 0 1px rgba(255,255,255,.06) inset,
        0 1px 0 rgba(255,255,255,.18) inset;
    overflow: visible;
    transition: box-shadow .5s ease, border-color .5s ease;
    z-index: 2;
    position: relative;
}
.st-fr-card:hover {
    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        0 0 60px rgba(0,180,255,.25),
        0 0 0 1px rgba(96,165,250,.2) inset,
        0 1px 0 rgba(255,255,255,.22) inset;
    border-color: rgba(96,165,250,.3);
}

/* ── CSS-only 3D accent cube ── */
.st-fr-cube {
    position: absolute;
    top: -32px;
    right: -28px;
    width: 56px; height: 56px;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(-30deg);
    animation: st-fr-cube-spin 14s linear infinite;
    pointer-events: none;
    z-index: 3;
}
@keyframes st-fr-cube-spin {
    0%   { transform: rotateX(-20deg) rotateY(-30deg); }
    100% { transform: rotateX(340deg) rotateY(330deg); }
}
.st-fr-cube-face {
    position: absolute;
    width: 56px; height: 56px;
    border: 1.5px solid rgba(96, 165, 250, .5);
    border-radius: 8px;
}
.st-fr-cube-face--front  { transform: translateZ(28px);  background: rgba(96,165,250,.08); }
.st-fr-cube-face--back   { transform: translateZ(-28px) rotateY(180deg); background: rgba(56,189,248,.06); }
.st-fr-cube-face--left   { transform: rotateY(-90deg) translateZ(28px); background: rgba(99,102,241,.07); }
.st-fr-cube-face--right  { transform: rotateY(90deg)  translateZ(28px); background: rgba(6,182,212,.07); }
.st-fr-cube-face--top    { transform: rotateX(90deg)  translateZ(28px); background: rgba(167,139,250,.06); }
.st-fr-cube-face--bottom { transform: rotateX(-90deg) translateZ(28px); background: rgba(14,165,233,.06); }

/* ── Card header ── */
.st-fr-card-header {
    margin-bottom: 28px;
}
.st-fr-card-header h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: #ffffff;
    letter-spacing: -.5px;
    margin-bottom: 6px;
}
.st-fr-card-header p {
    font-size: 13.5px;
    color: #94a3b8;
    font-weight: 500;
}

/* ── Form layout ── */
.st-fr-form { display: flex; flex-direction: column; gap: 22px; }

.st-fr-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* 3-column variant */
.st-fr-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

/* Textarea inside input-wrap */
.st-fr-textarea-wrap textarea {
    width: 100%;
    padding: 13px 16px 13px 42px;
    background: rgba(15, 23, 42, .55);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #e2e8f0;
    outline: none;
    resize: none;
    height: 90px;
    line-height: 1.6;
    transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
    -webkit-appearance: none;
    appearance: none;
}
.st-fr-textarea-wrap textarea::placeholder { color: #475569; }
.st-fr-textarea-wrap textarea:focus {
    border-color: rgba(96, 165, 250, .6);
    background: rgba(15, 23, 42, .75);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, .12), 0 4px 20px rgba(0,0,0,.2);
}
.st-fr-textarea-wrap > i:first-child {
    top: 14px !important;
    align-self: flex-start;
}

.st-fr-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.st-fr-field label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: #94a3b8;
    letter-spacing: .3px;
}
.st-fr-field label span { color: #60a5fa; margin-left: 2px; }

/* ── Input / Select wrap ── */
.st-fr-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.st-fr-input-wrap > i:first-child {
    position: absolute;
    left: 16px;
    color: #475569;
    font-size: 13px;
    pointer-events: none;
    transition: color .3s ease;
    z-index: 1;
}
.st-fr-input-wrap:focus-within > i:first-child { color: #60a5fa; }

.st-fr-input-wrap input,
.st-fr-input-wrap select {
    width: 100%;
    padding: 13px 16px 13px 42px;
    background: rgba(15, 23, 42, .55);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #e2e8f0;
    outline: none;
    transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
    -webkit-appearance: none;
    appearance: none;
}
.st-fr-input-wrap input::placeholder { color: #475569; }

.st-fr-input-wrap input:focus,
.st-fr-input-wrap select:focus {
    border-color: rgba(96, 165, 250, .6);
    background: rgba(15, 23, 42, .75);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, .12), 0 4px 20px rgba(0,0,0,.2);
}

/* Validation states */
.st-fr-input-wrap input:required:valid { border-color: rgba(34, 197, 94, .4); }
.st-fr-input-wrap input:invalid:not(:placeholder-shown) { border-color: rgba(239, 68, 68, .5); }

/* Select styles */
.st-fr-select-wrap select {
    color: #e2e8f0;
    cursor: pointer;
    padding-right: 40px;
}
.st-fr-select-wrap select option { background: #0f172a; color: #e2e8f0; }
.st-fr-select-arrow {
    position: absolute !important;
    right: 14px;
    color: #475569 !important;
    font-size: 11px !important;
    pointer-events: none;
    transition: transform .35s ease !important;
}
.st-fr-select-wrap:focus-within .st-fr-select-arrow { transform: rotate(180deg) !important; }

/* ── Submit button ── */
.st-fr-submit {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 26px;
    background: linear-gradient(135deg, #25d366 0%, #1da851 50%, #128c3e 100%);
    border: none;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15.5px;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .3), 0 2px 6px rgba(0,0,0,.2);
    transition: transform .35s cubic-bezier(.16,1,.3,1),
                box-shadow .35s cubic-bezier(.16,1,.3,1);
    letter-spacing: .2px;
    margin-top: 14px;
}
.st-fr-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
    pointer-events: none;
}
.st-fr-submit::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200%; padding-top: 200%;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    transition: transform .6s ease, opacity .6s ease;
    opacity: 0;
    pointer-events: none;
}
.st-fr-submit:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.st-fr-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, .4), 0 4px 10px rgba(0,0,0,.25);
}
.st-fr-submit:active { transform: translateY(-1px); }

/* Pulse animation on WhatsApp button */
@keyframes st-btn-pulse {
    0%, 100% {
        box-shadow: 0 8px 28px rgba(37,211,102,.3), 0 2px 6px rgba(0,0,0,.2);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.12), 0 2px 6px rgba(0,0,0,.2);
    }
}
.st-fr-submit {
    animation: st-btn-pulse 2s ease-in-out infinite;
}
.st-fr-submit:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, .45), 0 4px 10px rgba(0,0,0,.25);
}

.st-fr-submit-text {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.st-fr-submit-text .fab { font-size: 20px; }

.st-fr-submit-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform .35s ease;
}
.st-fr-submit:hover .st-fr-submit-arrow { transform: translateX(4px); }

/* ══════════════════════════════════════
   CUSTOM SELECT DROPDOWN
   ══════════════════════════════════════ */
.st-custom-select {
    position: relative;
    width: 100%;
}

/* Trigger — matches input style */
.st-cs-trigger {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 13px 16px 13px 42px;
    background: rgba(15, 23, 42, .55);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #475569;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.st-cs-trigger:hover,
.st-cs-trigger:focus {
    border-color: rgba(96, 165, 250, .6);
    background: rgba(15, 23, 42, .75);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, .12);
    outline: none;
}
.st-custom-select.is-open .st-cs-trigger {
    border-color: rgba(96, 165, 250, .6);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(15, 23, 42, .75);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, .12);
}
.st-cs-trigger.has-value { color: #e2e8f0; }

.st-cs-icon {
    position: absolute;
    left: 16px;
    color: #475569;
    font-size: 13px;
    pointer-events: none;
    transition: color .3s ease;
}
.st-cs-trigger:focus .st-cs-icon,
.st-custom-select.is-open .st-cs-icon { color: #60a5fa; }

.st-cs-value { flex: 1; }

.st-cs-arrow {
    font-size: 11px;
    color: #475569;
    transition: transform .3s ease, color .3s ease;
    margin-left: auto;
}
.st-custom-select.is-open .st-cs-arrow {
    transform: rotate(180deg);
    color: #60a5fa;
}

/* Dropdown panel */
.st-cs-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 20, 50, 0.97);
    border: 1px solid rgba(96, 165, 250, .35);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 20px rgba(0,120,255,.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-height: 260px;
    overflow-y: auto;
}
.st-custom-select.is-open .st-cs-dropdown {
    display: block;
    animation: st-cs-slide .2s ease;
}
@keyframes st-cs-slide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scrollbar */
.st-cs-dropdown::-webkit-scrollbar { width: 4px; }
.st-cs-dropdown::-webkit-scrollbar-track { background: transparent; }
.st-cs-dropdown::-webkit-scrollbar-thumb { background: rgba(96,165,250,.3); border-radius: 4px; }

/* Options */
.st-cs-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 14px;
    color: #94a3b8;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.st-cs-option:last-child { border-bottom: none; }
.st-cs-option i { font-size: 12px; color: #475569; flex-shrink: 0; width: 14px; }
.st-cs-option:hover {
    background: rgba(96, 165, 250, .1);
    color: #e2e8f0;
    padding-left: 22px;
}
.st-cs-option:hover i { color: #60a5fa; }
.st-cs-option.is-selected {
    background: rgba(96, 165, 250, .15);
    color: #60a5fa;
    font-weight: 600;
}
.st-cs-option.is-selected i { color: #60a5fa; }
.st-cs-placeholder { color: #475569; font-style: italic; }

/* ── Privacy note ── */
.st-fr-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-top: 10px;
}
.st-fr-privacy i { color: #38bdf8; font-size: 11px; }

/* ── Success state ── */
.st-fr-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
    animation: st-fr-fade-in .5s ease;
}
.st-fr-success[hidden] { display: none; }
.st-fr-success-icon { font-size: 52px; color: #22c55e; animation: st-fr-pop .5s cubic-bezier(.175,.885,.32,1.275); }
.st-fr-success h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: #ffffff;
}
.st-fr-success p { font-size: 15px; color: #94a3b8; }
@keyframes st-fr-pop {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
}
@keyframes st-fr-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .st-fr-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .st-fr-copy { text-align: center; }
    .st-fr-eyebrow { justify-content: center; }
    .st-fr-founder { max-width: 100%; justify-content: center; }
    .st-fr-badges { justify-content: center; }
    .st-fr-sub { max-width: 100%; }
    .st-fr-cube { top: -26px; right: -16px; width: 44px; height: 44px; }
    .st-fr-cube-face { width: 44px; height: 44px; }
    .st-fr-cube-face--front,
    .st-fr-cube-face--back { transform: translateZ(22px); }
    .st-fr-cube-face--back  { transform: translateZ(-22px) rotateY(180deg); }
    .st-fr-cube-face--left  { transform: rotateY(-90deg) translateZ(22px); }
    .st-fr-cube-face--right { transform: rotateY(90deg)  translateZ(22px); }
    .st-fr-cube-face--top   { transform: rotateX(90deg)  translateZ(22px); }
    .st-fr-cube-face--bottom{ transform: rotateX(-90deg) translateZ(22px); }
}

/* Mobile */
@media (max-width: 640px) {
    .st-formrow { padding: 72px 20px; }

    .st-fr-card {
        padding: 32px 24px 36px;
        border-radius: 22px;
    }

    .st-fr-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .st-fr-headline { font-size: 26px; letter-spacing: -.5px; }

    .st-fr-submit {
        font-size: 14.5px;
        padding: 15px 20px;
    }

    .st-fr-cube { display: none; }

    .st-fr-badges { gap: 8px; }
    .st-fr-badge { font-size: 12px; padding: 7px 13px; }
}

/* Very small phones */
@media (max-width: 380px) {
    .st-fr-headline { font-size: 23px; }
    .st-fr-card { padding: 28px 18px 30px; }
    .st-fr-submit { font-size: 13.5px; }
}


/* ════════════════════════════════════════════════════════════════════
   ABOUT US SECTION  ·  .st-about
   White background · Mouse-tracking 3D ecosystem
   ════════════════════════════════════════════════════════════════════ */

/* ── Section shell ── */
.st-about {
    background: #ffffff;
    padding: 100px 24px 110px;
    position: relative;
    overflow: hidden;
}

/* Subtle top/bottom separator lines */
.st-about::before,
.st-about::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,86,204,.12), transparent);
}
.st-about::before { top: 0; }
.st-about::after  { bottom: 0; }

/* ── Two-column inner ── */
.st-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: calc(50% - 600px - 13px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ══════════════════════════════════════
   LEFT: COPY BLOCK
   ══════════════════════════════════════ */

/* Eyebrow pill */
.st-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 86, 204, .07);
    border: 1px solid rgba(0, 86, 204, .15);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.st-about-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: st-about-blink 2s ease-in-out infinite;
}
@keyframes st-about-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
}

/* Headline */
.st-about-h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(26px, 2.9vw, 42px);
    line-height: 1.26;
    letter-spacing: -0.3px;
    color: #0d1117;
    margin-bottom: 18px;
}

/* Blue gradient text + underline */
.st-about-blue {
    background: linear-gradient(90deg, #0056cc, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
.st-about-blue::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #0056cc, #0ea5e9);
    border-radius: 2px;
    animation: st-about-underline 1.2s cubic-bezier(.16,1,.3,1) .4s both;
    transform-origin: left;
}
@keyframes st-about-underline {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Desc */
.st-about-desc {
    font-size: 16px;
    color: #4b586e;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}

/* Checklist */
.st-about-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 36px;
}
.st-about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
}
.st-about-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056cc, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,86,204,.2);
}

/* Stats row */
.st-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    max-width: 440px;          /* aligns with CTA + social proof row */
}
.st-about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 10px 6px 10px;   /* compact */
    background: #f6f9ff;
    border: 1px solid rgba(0,86,204,.07);
    border-radius: 10px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.st-about-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,86,204,.09);
}
.st-about-stat-icon {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: rgba(0,86,204,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--primary);
}
.st-about-stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    color: #0a0f1e;
    line-height: 1;
}
.st-about-stat-lbl {
    font-size: 9.5px;
    color: #7e8f9f;
    font-weight: 600;
}

/* CTA button */
.st-about-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.st-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0056cc, #0ea5e9);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,86,204,.22);
    transition: transform .35s ease, box-shadow .35s ease;
    flex-shrink: 0;
    cursor: pointer;
}
.st-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,86,204,.32);
}
.st-about-cta i { transition: transform .35s ease; }
.st-about-cta:hover i { transform: translateX(5px); }

/* Quote strip */
.st-about-quote {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: #f6f9ff;
    border: 1px solid rgba(0,86,204,.1);
    border-left: 3px solid var(--primary);
    border-radius: 14px;
}
.st-about-quote-mark {
    font-family: 'Georgia', serif;
    font-size: 48px;
    line-height: .7;
    color: var(--primary);
    opacity: .25;
    flex-shrink: 0;
    margin-top: 4px;
}
.st-about-quote-body p {
    font-size: 14.5px;
    color: #4b586e;
    line-height: 1.6;
    margin-bottom: 12px;
}
.st-about-quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.st-about-quote-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056cc, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.st-about-quote-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0a0f1e;
}
.st-about-quote-author span {
    font-size: 12px;
    color: #7e8f9f;
}


/* ══════════════════════════════════════
   RIGHT: 3D ECOSYSTEM SCENE
   ══════════════════════════════════════ */

.st-about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
    position: relative;
}

/* Scene wrapper — receives mouse-tracking transform */
.st-eco-scene {
    position: relative;
    width: 560px;
    height: 560px;
    transform-style: preserve-3d;
    perspective: 900px;
    transition: transform .08s linear;
    margin-top: -60px;
}

/* ── Central hub ── */
.st-eco-hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.st-eco-hub-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(0,86,204,.18);
}
.st-eco-hub-ring--1 {
    width: 120px; height: 120px;
    animation: st-eco-ring-expand 3s ease-in-out infinite;
}
.st-eco-hub-ring--2 {
    width: 120px; height: 120px;
    animation: st-eco-ring-expand 3s ease-in-out .7s infinite;
    opacity: .6;
}
.st-eco-hub-ring--3 {
    width: 120px; height: 120px;
    animation: st-eco-ring-expand 3s ease-in-out 1.4s infinite;
    opacity: .35;
}
@keyframes st-eco-ring-expand {
    0%   { transform: translate(-50%, -50%) scale(1);    opacity: .6; }
    100% { transform: translate(-50%, -50%) scale(2.2);  opacity: 0; }
}

/* Hub rings are positioned relative to .st-eco-hub so reset */
.st-eco-hub-ring {
    position: absolute;
    top: 50%; left: 50%;
}

.st-eco-hub-logo {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 40px rgba(0,86,204,.3),
        0 0 0 6px rgba(0,86,204,.08),
        inset 0 2px 6px rgba(255,255,255,.3);
    z-index: 2;
    position: relative;
    overflow: hidden;
}
.st-eco-hub-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* ── Orbit rings (decorative dashed circles) ── */
.st-eco-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(0,86,204,.12);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.st-eco-orbit--1 { width: 320px; height: 320px; animation: st-eco-orbit-spin 20s linear infinite; }
.st-eco-orbit--2 { width: 460px; height: 460px; animation: st-eco-orbit-spin 30s linear infinite reverse; }
@keyframes st-eco-orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Service bubbles ── */
.st-eco-bubble {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 18;           /* always above chart & metric cards */
    cursor: default;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.st-eco-bubble:hover { transform: scale(1.15) !important; z-index: 20; }

.st-eco-bubble-inner {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.12), inset 0 2px 4px rgba(255,255,255,.25);
    transition: box-shadow .3s ease;
}
.st-eco-bubble:hover .st-eco-bubble-inner {
    box-shadow: 0 16px 40px rgba(0,0,0,.18), inset 0 2px 4px rgba(255,255,255,.25);
}

.st-eco-bubble span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: #4b586e;
    letter-spacing: .3px;
}

/* Bubble positions & colors */
/* b1 — SEO: top-center */
.st-eco-b1 { top: 2%;  left: 50%; transform: translateX(-50%); animation: st-eco-float-x 5s ease-in-out infinite; }
.st-eco-b1 .st-eco-bubble-inner { background: linear-gradient(135deg, #0056cc, #4285f4); }
.st-eco-b1.st-eco-b1-png .st-eco-bubble-inner {
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0,0,0,.10), inset 0 1px 3px rgba(0,0,0,.04);
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-eco-b1-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

/* b2 — Google Ads: right-top — white bg so PNG shows correctly */
.st-eco-b2 { top: 22%; right: 1%; animation: st-eco-float 6s ease-in-out .8s infinite; }
.st-eco-b2.st-eco-b2-svg .st-eco-bubble-inner {
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0,0,0,.10), inset 0 1px 3px rgba(0,0,0,.04);
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-eco-b2-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

/* b3 — Social Media: right-bottom */
.st-eco-b3 { bottom: 22%; right: 1%; animation: st-eco-float 5.5s ease-in-out 1.6s infinite; }
.st-eco-b3 .st-eco-bubble-inner { background: linear-gradient(135deg, #e91e63, #ff5722); }

/* b4 — Web Dev: bottom-center — ON the outer orbit ring */
.st-eco-b4 { bottom: 3%; left: 50%; transform: translateX(-50%); animation: st-eco-float-x 6.5s ease-in-out 0.4s infinite; }
.st-eco-b4 .st-eco-bubble-inner { background: linear-gradient(135deg, #7c3aed, #a78bfa); }

/* b5 — Google Profile Creation: left-top */
.st-eco-b5 { top: 22%; left: 1%; animation: st-eco-float 5.8s ease-in-out 1.2s infinite; }
.st-eco-b5 .st-eco-bubble-inner { background: linear-gradient(135deg, #f97316, #fbbf24); }
.st-eco-b5.st-eco-b5-png .st-eco-bubble-inner {
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0,0,0,.10), inset 0 1px 3px rgba(0,0,0,.04);
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-eco-b5-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

@keyframes st-eco-float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
/* translateX-safe float for b1 & b4 */
.st-eco-b1 { animation: st-eco-float-x 5s ease-in-out infinite; }
.st-eco-b4 { animation: st-eco-float-x 6.5s ease-in-out 0.4s infinite; }
@keyframes st-eco-float-x {
    0%   { transform: translateX(-50%) translateY(0px); }
    50%  { transform: translateX(-50%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0px); }
}

/* ── Floating metric cards ── */
.st-eco-metric {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid rgba(0,86,204,.1);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,86,204,.1);
    font-size: 12px;
    z-index: 12;           /* below bubbles (18) but above orbit/hub */
    transition: transform .3s ease, box-shadow .3s ease;
}
.st-eco-metric:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 36px rgba(0,86,204,.15);
}
.st-eco-metric i {
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}
.st-eco-metric strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: #0a0f1e;
}
.st-eco-metric span {
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
}

/* m1 (ROAS) — left-middle, below Branding bubble */
.st-eco-m1 {
    top: 52%; left: -8%;
    animation: st-eco-float 7s ease-in-out infinite;
}
/* m2 (#1 Ranking) — bottom-left, clear of all bubbles */
.st-eco-m2 {
    bottom: 8%; left: 2%;
    animation: st-eco-float 8s ease-in-out 1s infinite;
}

/* ── Floating dot particles ── */
.st-eco-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    animation: st-eco-particle 6s ease-in-out infinite;
}
.st-eco-dot--1 { width:8px;  height:8px;  top:18%;  left:18%;  opacity:.5;  animation-delay:0s;   background:#0056cc; }
.st-eco-dot--2 { width:5px;  height:5px;  top:72%;  left:75%;  opacity:.35; animation-delay:1.2s; background:#0ea5e9; }
.st-eco-dot--3 { width:10px; height:10px; top:35%;  right:18%; opacity:.4;  animation-delay:2s;   background:#34a853; }
.st-eco-dot--4 { width:6px;  height:6px;  bottom:20%; left:30%; opacity:.45; animation-delay:0.6s; background:#f59e0b; }
.st-eco-dot--5 { width:7px;  height:7px;  top:55%;  left:12%;  opacity:.3;  animation-delay:3s;   background:#e91e63; }
@keyframes st-eco-particle {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(8px, -12px) scale(1.2); }
    66%      { transform: translate(-6px, 6px) scale(.8); }
}

/* ── Bottom-right bar chart — moved off centre so it never hides the Web Dev bubble ── */
.st-eco-chart {
    position: absolute;
    bottom: 2%;
    right: 3%;
    left: auto;
    transform: none;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 88px;
    width: 160px;
    padding: 10px 14px 0;
    background: #ffffff;
    border: 1px solid rgba(0,86,204,.1);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,86,204,.08);
    z-index: 10;           /* below bubbles (18) */
}
.st-eco-bar {
    flex: 1;
    background: var(--c);
    height: var(--h);
    border-radius: 4px 4px 0 0;
    opacity: .85;
    animation: st-eco-bar-grow 1.2s cubic-bezier(.16,1,.3,1) both;
    transform-origin: bottom;
}
@keyframes st-eco-bar-grow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}
.st-eco-arrow {
    position: absolute;
    width: 90px;
    top: 6px; right: 8px;
    pointer-events: none;
    opacity: .7;
}


/* ══════════════════════════════════════
   RESPONSIVE (eco-scene & st-about visual)
   → moved to responsives.css
   ══════════════════════════════════════ */


/* ══════════════════════════════════════
   SOCIAL PROOF STRIP
   ══════════════════════════════════════ */

.st-about-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: st-proof-fadein .8s ease .3s both;
}
@keyframes st-proof-fadein {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Stacked avatars */
.st-about-avatars {
    display: flex;
    align-items: center;
}
.st-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #ffffff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    transition: transform .25s ease, z-index .25s;
    position: relative;
    z-index: 1;
}
.st-av:first-child { margin-left: 0; }
.st-about-avatars:hover .st-av { margin-left: -5px; }   /* expand on hover */
.st-av:hover { transform: translateY(-4px) scale(1.1); z-index: 10; }

/* Thin divider */
.st-about-social-proof::before {
    content: '';
    width: 1px;
    height: 32px;
    background: rgba(0,86,204,.15);
    flex-shrink: 0;
}

/* Text block */
.st-about-proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.st-about-proof-text strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: #0a0f1e;
    line-height: 1.15;
}
.st-about-proof-text span {
    font-size: 11.5px;
    color: #7e8f9f;
    font-weight: 500;
}

/* st-about-cta-row mobile → moved to responsives.css */



.logo-text{
    display:inline-block;
    font-size:14px;
    font-weight:500;
}

.logo-text sup{
    font-size:10px;
    position:relative;
    top: 4px;
    left:1px;
    vertical-align:baseline;
}







/* ════════════════════════════════════════════════════════════════════
   CONTACT PAGE  ·  body.st-contact-page
   Breadcrumb, Hero, Contact Methods, Benefits — all base desktop styles
   ════════════════════════════════════════════════════════════════════ */

/* ── Page background ── */
body.st-contact-page {
    background: var(--bg-secondary);
}

body.st-contact-page #canvas-container {
    height: 133px;
}

body.st-contact-page main {
    padding-top: 100px;
    background: transparent;
}

/* ──────────────────────────────
   BREADCRUMB
   ────────────────────────────── */
.st-contact-breadcrumb {
    text-align: center;
    padding: 68px 0 80px;
    background:
        linear-gradient(180deg, rgba(2,34,82,.72) 0%, rgba(1,24,72,.78) 50%, rgba(0,14,46,.85) 100%),
        url('../images/breadcram.png') center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.st-contact-breadcrumb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.st-contact-breadcrumb-trail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    padding: 9px 18px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.st-contact-breadcrumb-trail a {
    color: #60a5fa;
    font-weight: 700;
    cursor: pointer;
}
.st-contact-breadcrumb-trail a:hover { text-decoration: underline; }

.st-contact-breadcrumb-trail span[aria-hidden] {
    color: rgba(255,255,255,.45);
    font-size: 12px;
}

.st-contact-breadcrumb-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.6rem, 5vw, 4rem);
    letter-spacing: -1.5px;
    color: #ffffff;
    line-height: 1.08;
    margin-top: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #e0edff 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* ──────────────────────────────
   HERO SECTION
   ────────────────────────────── */
.st-contact-hero {
    padding: 54px 0 80px;
}

.st-contact-hero-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.st-contact-hero-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    padding: 44px 48px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(0,86,204,.05);
    align-items: center;
}

.st-contact-hero-copy {
    max-width: 540px;
    padding-top: 8px;
}

/* Badge pill */
.st-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(0,86,204,.06);
    border: 1px solid rgba(0,86,204,.12);
    padding: 8px 16px;
    border-radius: 50px;
}

.st-contact-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--primary);
    animation: st-badge-pulse 2s ease-in-out infinite;
}
@keyframes st-badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.7); }
}

/* Title */
.st-contact-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    letter-spacing: -1px;
    line-height: 1.08;
    color: var(--text-main);
    margin: 16px 0 14px;
}
.st-contact-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.st-contact-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.72;
    max-width: 480px;
    margin-bottom: 22px;
}

/* Action buttons row */
.st-contact-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.st-contact-primary,
.st-contact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    cursor: pointer;
    transition: all .35s cubic-bezier(.16,1,.3,1);
    min-height: 72px;
}

.st-contact-primary {
    background: linear-gradient(135deg, #022252, #0056cc);
    color: #fff;
    box-shadow: 0 8px 28px rgba(2,34,82,.22);
}
.st-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(2,34,82,.32);
}

.st-contact-secondary {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid rgba(0,86,204,.12);
    box-shadow: 0 4px 16px rgba(0,86,204,.06);
}
.st-contact-secondary:hover {
    border-color: rgba(0,86,204,.22);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,86,204,.12);
}

.st-contact-btn-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.st-contact-btn-icon--green { background: rgba(37,211,102,.12); color: #25d366; }

.st-contact-btn-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.st-contact-btn-copy strong { font-size: 14px; font-weight: 700; }
.st-contact-btn-copy small {
    font-size: 11.5px;
    opacity: .72;
    font-weight: 500;
}

/* Hero points */
.st-contact-hero-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.st-contact-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}
.st-contact-point i {
    color: var(--primary);
    font-size: 13px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Hero right panel ── */
.st-contact-hero-panel {
    background: linear-gradient(135deg, #022252, #011848);
    border-radius: 26px;
    padding: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.st-contact-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.st-contact-panel-logo {
    width: 150px;
    height: auto;
    filter: brightness(10);
    opacity: .9;
}

.st-contact-panel-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
}
.st-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: st-badge-pulse 2s ease-in-out infinite;
}

.st-contact-panel-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 22px;
}

.st-contact-panel-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.st-contact-panel-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #60a5fa;
    flex-shrink: 0;
}

.st-contact-panel-item small {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: block;
}
.st-contact-panel-item strong {
    font-size: 14.5px;
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

.st-contact-panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}
.st-contact-panel-metrics div {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 14px 8px;
}
.st-contact-panel-metrics strong {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    display: block;
    line-height: 1.1;
}
.st-contact-panel-metrics span {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    font-weight: 600;
}


/* ──────────────────────────────
   CONTACT METHODS SECTION
   ────────────────────────────── */
.st-contact-methods {
    padding: 20px 0 80px;
}

.st-contact-section-head {
    text-align: center;
    margin-bottom: 38px;
}

.st-contact-mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: rgba(0,86,204,.05);
    border: 1px solid rgba(0,86,204,.1);
    padding: 9px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.st-contact-section-head h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    color: var(--text-main);
    letter-spacing: -.5px;
    line-height: 1.22;
    margin-bottom: 10px;
}

.st-highlight-connect {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.st-contact-section-head p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Methods container card */
.st-contact-methods .container {
    max-width: 1320px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 36px 36px 30px;
    box-shadow: 0 8px 40px rgba(0,86,204,.04);
}

/* Grid */
.st-contact-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

/* Method card */
.st-contact-method-card {
    position: relative;
    padding: 28px 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    transition: all .4s cubic-bezier(.16,1,.3,1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.st-contact-method-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,86,204,.08);
}

.st-card-dots {
    position: absolute;
    top: 14px; right: 14px;
    width: 28px; height: 6px;
    background:
        radial-gradient(circle, var(--text-light) 1.5px, transparent 1.5px) 0 0 / 8px 6px;
    opacity: .25;
}

/* Icon wrapper */
.st-contact-method-icon-wrap {
    width: 66px; height: 66px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
}
.st-contact-method-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: .12;
}

.st-method-icon--blue  { background: rgba(0,86,204,.08); }
.st-method-icon--blue::before  { background: linear-gradient(135deg, #0056cc, #3b82f6); }

.st-method-icon--green { background: rgba(37,211,102,.08); }
.st-method-icon--green::before { background: linear-gradient(135deg, #25d366, #4ade80); }

.st-method-icon--mail  { background: rgba(249,115,22,.08); }
.st-method-icon--mail::before  { background: linear-gradient(135deg, #f97316, #fbbf24); }

.st-method-icon--purple{ background: rgba(124,58,237,.08); }
.st-method-icon--purple::before{ background: linear-gradient(135deg, #7c3aed, #a78bfa); }

.st-contact-method-icon {
    width: 50px; height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.st-method-icon--blue  .st-contact-method-icon { background: linear-gradient(135deg, #0056cc, #3b82f6); }
.st-method-icon--green .st-contact-method-icon { background: linear-gradient(135deg, #25d366, #4ade80); }
.st-method-icon--mail  .st-contact-method-icon { background: linear-gradient(135deg, #f97316, #fbbf24); }
.st-method-icon--purple .st-contact-method-icon{ background: linear-gradient(135deg, #7c3aed, #a78bfa); }

.st-contact-method-card h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.st-contact-method-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    min-height: 46px;
}

/* CTA link */
.st-method-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    background: rgba(0,86,204,.06);
    border: 1px solid rgba(0,86,204,.1);
    padding: 0 18px;
    min-height: 46px;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s ease;
}
.st-method-cta:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.st-method-cta i { font-size: 14px; }

/* Meta info */
.st-method-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}
.st-method-meta i { font-size: 11px; color: var(--primary); }


/* ── Trust bar ── */
.st-contact-methods-trust {
    margin-top: 24px;
    padding: 20px 26px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.st-trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.st-trust-worldmap {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Crect fill='none'/%3E%3C/svg%3E")
        center / cover no-repeat;
    opacity: .03;
}

.st-trust-google-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.st-trust-google-icon svg { display: block; }

.st-trust-google-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.st-trust-google-info strong {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--text-main);
    line-height: 1;
}
.st-trust-stars {
    font-size: 14px;
    color: #f59e0b;
    letter-spacing: 1px;
}
.st-trust-google-info span {
    font-size: 11.5px;
    color: var(--text-light);
    font-weight: 500;
}

/* ──────────────────────────────
   CONTACT BENEFIT LIST (inside form section)
   ────────────────────────────── */
.st-contact-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.st-contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(0,86,204,.03);
    border: 1px solid rgba(0,86,204,.06);
    border-radius: 16px;
    transition: all .3s ease;
}
.st-contact-benefit:hover {
    border-color: rgba(0,86,204,.12);
    box-shadow: 0 6px 20px rgba(0,86,204,.06);
}

.st-contact-benefit i {
    color: #22c55e;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.st-contact-benefit strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: #e2e8f0;
    display: block;
    margin-bottom: 4px;
}

.st-contact-benefit p {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
}

/* ── Contact form row specific overrides ── */
.st-contact-formrow {
    margin-top: 0;
}









/* Portfolio Section CSS */
.st-portfolio-section {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.st-portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Filter Groups */
.st-portfolio-filter-group {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 10px;
}
.st-portfolio-filter-group::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge */
}
.st-portfolio-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.st-portfolio-btn:hover,
.st-portfolio-btn.active {
    background-color: rgba(66, 20, 107, 0.4);
    border-color: rgba(144, 76, 217, 0.8);
    color: #ffffff;
}
/* Secondary Filter Group (All, Brand Documentaries etc) */
.st-portfolio-filter-group-sub {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 10px;
    flex-grow: 1;
    scroll-behavior: smooth;
}
.st-portfolio-filter-group-sub::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge */
}
.st-portfolio-filter-wrapper.st-sub-wrapper {
    margin-bottom: 45px;
}
.st-portfolio-btn-sub {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #cccccc;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.st-portfolio-btn-sub:hover,
.st-portfolio-btn-sub.active {
    background-color: #2b1442;
    border-color: #46206b;
    color: #ffffff;
}
/* Portfolio Grid */
.st-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .st-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .st-portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* Portfolio Card */
.st-portfolio-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease;
    display: block; /* If used as link */
    text-decoration: none;
    color: inherit;
}
.st-portfolio-card:hover {
    transform: translateY(-5px);
}
.st-portfolio-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #222;
}
.st-portfolio-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.st-portfolio-card:hover .st-portfolio-card-img-wrapper img {
    transform: scale(1.05);
}
.st-portfolio-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    z-index: 2;
}
/* Hover Overlay */
.st-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    z-index: 3;
}
.st-portfolio-card:hover .st-portfolio-overlay {
    opacity: 1;
}
.st-portfolio-overlay-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    text-align: center;
}
.st-portfolio-card:hover .st-portfolio-overlay-circle {
    transform: scale(1);
}
/* Card Content */
.st-portfolio-card-content {
    padding: 20px;
}
.st-portfolio-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
}

.st-portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .86);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.st-portfolio-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.st-portfolio-lightbox__inner {
    position: relative;
    width: min(980px, 100%);
    max-height: 88vh;
    transform: scale(.96);
    transition: transform .25s ease;
}

.st-portfolio-lightbox.is-open .st-portfolio-lightbox__inner {
    transform: scale(1);
}

.st-portfolio-lightbox__image {
    display: block;
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 16px;
    background: #111111;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.st-portfolio-lightbox__close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .78);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

body.st-lightbox-open {
    overflow: hidden;
}

/* Filter Scroll Wrapper */
.st-portfolio-filter-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    max-width: 100%;
    padding: 0 45px;
}
/* Premium Filter Divider Line */
.st-portfolio-divider {
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 15%, rgba(255, 255, 255, 0.3) 85%, rgba(255, 255, 255, 0) 100%);
    margin: 0 0 25px 0;
    width: 100%;
}
.st-portfolio-filter-wrapper .st-portfolio-filter-group {
    margin-bottom: 0;
    flex-grow: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.st-filter-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.st-filter-scroll-btn:hover {
    background-color: rgba(66, 20, 107, 0.4);
    border-color: rgba(144, 76, 217, 0.8);
}
.st-filter-scroll-btn.st-scroll-left {
    left: 0;
}
.st-filter-scroll-btn.st-scroll-right {
    right: 0;
}
@media (max-width: 768px) {
    .st-portfolio-filter-wrapper {
        padding: 0 35px;
    }
    .st-filter-scroll-btn {
        display: flex;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Mobile quick actions are mobile-only; desktop stays clean */
.st-mobile-quick-actions {
    display: none;
}

.st-mobile-quote-modal {
    display: none;
}
