body{overflow-x: hidden;}
.code-typewriter {
    display: inline-block;
    font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
    font-size: 1.08rem;
    color: #b6c6e6;
    border-right: 2.5px solid #4fc9f0;
    white-space: pre;
    overflow: hidden;
    width: 0;
    animation: code-typewriter-anim 6s steps(60, end) infinite alternate, code-typewriter-cursor 0.7s steps(1) infinite;
}
@keyframes code-typewriter-anim {
    0% { width: 0; }
    10% { width: 8ch; }
    20% { width: 18ch; }
    30% { width: 32ch; }
    40% { width: 44ch; }
    50% { width: 60ch; }
    60% { width: 44ch; }
    70% { width: 32ch; }
    80% { width: 18ch; }
    90% { width: 8ch; }
    100% { width: 0; }
}
@keyframes code-typewriter-cursor {
    0%, 100% { border-color: #4fc9f0; }
    50% { border-color: transparent; }
}
/* Animated words background for about-image-1 */
.about-image-bg-wrapper {
    position: relative;
    display: inline-block;
}
.about-image-words-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}
.about-image-bg-wrapper .about-image-fixed {
    position: relative;
    z-index: 1;
}
.about-image-words-bg .word {
    position: absolute;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    /* color: #0eee59; */
    color: #8ac5a5;
    opacity: 0.18;
    filter: blur(0.5px);
    user-select: none;
    pointer-events: none;
    text-shadow: 0 2px 12px #1e96fc22;
    mix-blend-mode: lighten;
}
/* Individual word animation, size, and path */
.about-image-words-bg .word1 { font-size: 2.2rem; top: 10%; left: -30%; animation: word-move-1 12s linear infinite; }
.about-image-words-bg .word2 { font-size: 1.5rem; top: 30%; left: -40%; animation: word-move-2 14s linear infinite; }
.about-image-words-bg .word3 { font-size: 2.5rem; top: 60%; left: -35%; animation: word-move-3 16s linear infinite; }
.about-image-words-bg .word4 { font-size: 1.2rem; top: 80%; left: -25%; animation: word-move-4 13s linear infinite; }
.about-image-words-bg .word5 { font-size: 2.1rem; top: 50%; left: -45%; animation: word-move-5 15s linear infinite; }
.about-image-words-bg .word6 { font-size: 1.7rem; top: 20%; left: -20%; animation: word-move-6 17s linear infinite; }
.about-image-words-bg .word7 { font-size: 1.4rem; top: 70%; left: -50%; animation: word-move-7 18s linear infinite; }
.about-image-words-bg .word8 { font-size: 1.3rem; top: 40%; left: -15%; animation: word-move-8 19s linear infinite; }
.about-image-words-bg .word9 { font-size: 2.0rem; top: 85%; left: -30%; animation: word-move-9 16s linear infinite; }
.about-image-words-bg .word10 { font-size: 1.8rem; top: 60%; left: -10%; animation: word-move-10 20s linear infinite; }
@keyframes word-move-1 {
    0% { transform: translateX(0) scale(1) rotate(-5deg); opacity: 0.18; }
    10% { opacity: 0.32; }
    80% { opacity: 0.32; }
    100% { transform: translateX(220%) scale(1.1) rotate(5deg); opacity: 0; }
}
@keyframes word-move-2 {
    0% { transform: translateX(0) scale(0.9) rotate(3deg); opacity: 0.13; }
    10% { opacity: 0.22; }
    80% { opacity: 0.22; }
    100% { transform: translateX(260%) scale(1.05) rotate(-2deg); opacity: 0; }
}
@keyframes word-move-3 {
    0% { transform: translateX(0) scale(1.2) rotate(-8deg); opacity: 0.18; }
    10% { opacity: 0.28; }
    80% { opacity: 0.28; }
    100% { transform: translateX(200%) scale(1.25) rotate(8deg); opacity: 0; }
}
@keyframes word-move-4 {
    0% { transform: translateX(0) scale(0.8) rotate(2deg); opacity: 0.10; }
    10% { opacity: 0.18; }
    80% { opacity: 0.18; }
    100% { transform: translateX(230%) scale(0.95) rotate(-2deg); opacity: 0; }
}
@keyframes word-move-5 {
    0% { transform: translateX(0) scale(1.1) rotate(-4deg); opacity: 0.15; }
    10% { opacity: 0.25; }
    80% { opacity: 0.25; }
    100% { transform: translateX(250%) scale(1.15) rotate(4deg); opacity: 0; }
}
@keyframes word-move-6 {
    0% { transform: translateX(0) scale(1) rotate(1deg); opacity: 0.13; }
    10% { opacity: 0.22; }
    80% { opacity: 0.22; }
    100% { transform: translateX(200%) scale(1.1) rotate(-1deg); opacity: 0; }
}
@keyframes word-move-7 {
    0% { transform: translateX(0) scale(1.15) rotate(-6deg); opacity: 0.16; }
    10% { opacity: 0.28; }
    80% { opacity: 0.28; }
    100% { transform: translateX(240%) scale(1.2) rotate(6deg); opacity: 0; }
}
@keyframes word-move-8 {
    0% { transform: translateX(0) scale(0.95) rotate(2deg); opacity: 0.11; }
    10% { opacity: 0.19; }
    80% { opacity: 0.19; }
    100% { transform: translateX(180%) scale(1) rotate(-2deg); opacity: 0; }
}
@keyframes word-move-9 {
    0% { transform: translateX(0) scale(1.05) rotate(-3deg); opacity: 0.14; }
    10% { opacity: 0.22; }
    80% { opacity: 0.22; }
    100% { transform: translateX(210%) scale(1.1) rotate(3deg); opacity: 0; }
}
@keyframes word-move-10 {
    0% { transform: translateX(0) scale(1) rotate(0deg); opacity: 0.13; }
    10% { opacity: 0.21; }
    80% { opacity: 0.21; }
    100% { transform: translateX(180%) scale(1.05) rotate(0deg); opacity: 0; }
}
/* ===================================================================
   1. ROOT VARIABLES & DEFAULTS
   =================================================================== */
:root {
    /* Dark Purple Theme */
    --bg-dark-purple: #0C012A;
    --bg-mid-purple: #2E1055;
    --bg-light-purple: #46266d;
    --accent-glow: #00d4ff;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #c0b8d5;
    --accent-yellow: #FFC947;
    --card-bg: rgba(38, 22, 71, 0.4);
    --card-border: rgba(255, 255, 255, 0.1);

    /* Dark Blue Theme */
    --bs-dark-blue: #02040f;
    --bs-dark-card: #4752e3;
    --bs-primary-blue: #3A506B;
    --bs-light-gray: #F8F9FA;
    --bs-white: #FFFFFF;
    --bs-font-sans-serif: 'Poppins', sans-serif;
    --caret: currentcolor;
}

body {
    background-color: black;
    color: var(--bs-light-gray);
    font-family: var(--bs-font-sans-serif);
}

/* ===================================================================
   2. GENERAL & UTILITY STYLES
   =================================================================== */

/* --- Images --- */
img,
.client-logo,
.blog-card img {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s;
    will-change: transform;
}

img:hover,
.client-logo:hover,
.blog-card img:hover {
    transform: scale(1.07) rotate(-2deg);
    position: relative;
    z-index: 2;
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.85;
}

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

/* --- Section Titles --- */
.section-title,
.section-title-header {
    /* font-family: Lato, sans-serif; */
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: capitalize;
}

.section-title {
    color: #2ff396;
}

.section-title-header {
    color: #efeef4;
}

.section-title.text-light {
    color: var(--bs-white);
}

.section-title.text-dark {
    color: var(--bs-dark-blue);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 14px;
    border: none;
    border-radius: 999em;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact {
    background-color: #a9e056;
    color: #000000;
    box-shadow: 0 0 15px 4px rgba(169, 224, 86, 0.55);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px 8px rgba(169, 224, 86, 0.75);
}

.btn-demo {
    background-color: #f0f0f0;
    color: #000000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-custom-purple {
    background-color: #6f42c1;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
}

.btn-custom-purple:hover {
    background-color: #5a359a;
    color: white;
}


/* --- Highlighted Text --- */
.highlight-text {
    display: inline-block;
    padding: 0.2em 0.6em;
    background: linear-gradient(135deg, #01f33d, #1eb2fc);
    background-size: 200%;
    background-position: center;
    color: white;
    border-radius: 38px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: background-position 0.5s ease-in-out;
}

.highlight-text:hover {
    background-position: right;
}

.highlight-text-card {
    display: inline-block;
    padding: 0.2em 0.6em;
    color: #20b163;
    border-radius: 38px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: rgb(209 209 210) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}


/* ===================================================================
   3. HEADER & NAVIGATION
   =================================================================== */
.navbar {
    background-color: var(--bs-dark-blue);
    padding: 1rem 0;
}

.header-logo {
    height: 42px;
    width: auto;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--bs-white);
    font-weight: 400;
}

.nav-link.active,
.nav-link:hover {
    color: var(--bs-white);
    font-weight: 600;
}

.navbar .btn-contact {
    background-color: var(--bs-white);
    color: var(--bs-dark-blue);
    font-weight: 600;
    border-radius: 2.5rem;
    padding: 0.5rem 1.5rem;
}

/* ===================================================================
   4. HERO SECTIONS
   =================================================================== */

/* --- Generic Hero Section --- */
.hero-section {
    background-image: url('/assets/images/hero-moving.gif');
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    /* background-size: 80%; */ 
}




.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}



.hero-section .btn-demo {
    background-color: var(--bs-white);
    color: var(--bs-dark-blue);
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.hero-section .btn-demo:hover {
    box-shadow: 0 8px 32px 0 rgba(58, 80, 107, 0.25);
    transform: scale(1.05);
}

/* Fade-in Animations */
.hero-section .container {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: heroFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.hero-section .display-4 {
    opacity: 0;
    transform: translateY(-30px);
    animation: heroTitleIn 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

.hero-section .lead {
    opacity: 0;
    transform: translateY(30px);
    animation: heroLeadIn 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

.hero-section .btn-demo {
    opacity: 0;
    transform: scale(0.9);
    animation: heroBtnIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1.1s forwards;
}

.hero-section::before {
    animation: heroOverlayFade 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards;
    opacity: 0;
}


/* --- Creative Web Dev Hero --- */
.creative-hero-section {
    font-family: 'Poppins', sans-serif;
    /* background-image: linear-gradient(to bottom, #02040f 30%, #051203 50%, #02040f 100%); */
    color: #ffffff;
    overflow-x: hidden;
    padding: 1rem 1rem;
    position: relative;
}

.creative-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.08;
    z-index: 0;
}

.creative-hero-content {
    position: relative;
    z-index: 2;
}

.creative-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.creative-title-accent1,
.creative-title-accent2 {
    font-weight: 900;
}

.creative-title-accent1 {
    color: #00af22;
    text-shadow: 0 2px 12px #4fc9f055;
}

.creative-title-accent2 {
    color: #0285d2;
    text-shadow: 0 2px 12px #A162F755;
}

.creative-subtitle {
    color: #d1d1d1;
    margin-bottom: 2rem;
}

.creative-btn-hire {
    background: linear-gradient(135deg, #00af22, #0285d2);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 15px rgb(2 213 105 / 50%);
    margin-right: 1rem;
}

.creative-btn-play {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00af22;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    border: none;
}

.creative-stats {
    margin-top: 4rem;
}

.creative-stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.creative-image-area {
    position: relative;
    text-align: center;
    z-index: 2;
}

.creative-image-area img {
    max-width: 100%;
    height: auto;
}

.creative-logos {
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.creative-logos img {
    height: 40px;
    margin: 1rem;
    opacity: 0.8;
}

/* --- Blog Hero --- */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1200x400/808080/FFFFFF?text=Blog+Banner');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    border-radius: 1rem;
}

/* --- Typewriter Effect --- */
.type-text {
    font-size: 9vmin;
    font-family: Lato, sans-serif;
    font-weight: 800;
    text-align: left;
    margin: 1rem 0 1rem 2rem;
    background: linear-gradient(to right, #6ce105, #0576e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 6px 32px rgba(0, 0, 0, 0.25), 0 1.5px 0 rgba(0, 0, 0, 0.08);
}

.typewriter::before {
    content: "";
    animation: typing 13.5s infinite;
}

.typewriter::after {
    content: "";
    border-right: 1px solid var(--caret);
    animation: blink 0.5s linear infinite;
}

.typewriter.thick::after {
    border-right: 1ch solid var(--caret);
}

.typewriter.nocaret::after {
    border-right: 0;
}


/* ===================================================================
   5. CONTENT SECTIONS
   =================================================================== */

.section-light {
    background-color: #E9EBF8;
    color: var(--bs-dark-blue);
}

/* --- Client Logo Section --- */
.client-section {
    background: linear-gradient(to bottom, #000000, #02040f);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 40px 0;
}

.client-section img {
    max-height: 58px;
    width: auto;
    margin: 1rem;
}

/* --- Split Image/CTA Section --- */
.split-section {
    background-color: var(--bs-dark-card);
    border-radius: 1rem;
    overflow: hidden;
}

.split-section .img-side {
    background: url('https://via.placeholder.com/600x450/808080/FFFFFF?text=Cybernet+Solutions') no-repeat center center;
    background-size: cover;
    min-height: 300px;
}

.split-section .cta-side {
    padding: 4rem;
}

.split-section .btn-dark {
    background-color: var(--bs-primary-blue);
    border: none;
    border-radius: 0.5rem;
    padding: 0.8rem 2.5rem;
}

/* --- Stats Section --- */
.stats-section {
    background-color: var(--bs-dark-blue);
    background-image: url('https://via.placeholder.com/1920x400/0B132B/FFFFFF?text=+');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--bs-white);
}

.stats-section h3 {
    font-size: 3rem;
    font-weight: 700;
}

/* --- About Section --- */
.about-section {
    padding: 2.5rem 0;
}

.about-section h1 {
    font-weight: 700;
}

.about-section p {
    font-size: 1rem;
    color: #d1d1d1;
}

.about-image-fixed {
    width: 400px;
    max-width: 100%;
    min-width: 220px;
    margin: 0 auto;
    display: block;
    opacity: 85%;
}


/* ===================================================================
   6. CARDS & GRIDS
   =================================================================== */

/* --- Base Card Styles --- */
.card-custom,
.card-custom-light,
.card-plan,
.blog-card,
.modern-card,
.bank-card {
    border: none;
    height: 100%;
}

.card-custom,
.blog-card {
    background-color: var(--bs-dark-card);
    color: var(--bs-light-gray);
    border-radius: 1rem;
    padding: 1.5rem;
}

/* --- Custom & Why Needed Cards --- */
.card-custom-light {
    background-color: var(--bs-white);
    color: var(--bs-dark-blue);
    border-radius: 1rem;
}

.card-why-needed {
    background-color: var(--bs-dark-blue);
    color: var(--bs-white);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
}

.card-why-needed.highlight {
    background-color: var(--bs-primary-blue);
}

.card-why-needed .icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-why-needed .icon-wrapper i {
    font-size: 1.8rem;
}

/* --- Plan Cards --- */
.card-plan {
    border-radius: 1rem;
    padding: 1.5rem;
}

.card-plan.dark {
    background-color: var(--bs-dark-card);
    color: var(--bs-white);
}

.card-plan.light {
    background-color: var(--bs-light-gray);
    color: var(--bs-dark-blue);
}

.plan-number {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background-color: var(--bs-primary-blue);
    color: var(--bs-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-plan ul {
    list-style-type: none;
    padding-left: 0;
}

.card-plan ul li::before {
    content: '•';
    color: var(--bs-primary-blue);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* --- Blog Cards --- */
.blog-card {
    background-color: var(--bs-dark-card);
}

.filter-btn {
    background-color: var(--bs-dark-card);
    border: 1px solid var(--bs-primary-blue);
    color: var(--bs-white);
    border-radius: 20px;
    margin: 0.25rem;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--bs-primary-blue);
    border-color: var(--bs-primary-blue);
}


/* --- Bank Style Card Grid --- */
.bank-style-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(180px, auto));
    gap: 2.2rem;
    margin: 2.5rem 0;
    align-items: stretch;
}

.bank-card {
    background: #fff;
    border-radius: 2.2rem;
    box-shadow: 0 8px 32px 0 rgba(58, 80, 107, 0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem;
    min-width: 0;
    min-height: 180px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.bank-card:hover {
    box-shadow: 0 16px 48px 0 rgba(58, 80, 107, 0.18);
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
}

.bank-card-lg {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
    background: #f7f8fa;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 0;
}

.bank-card-md {
    grid-row: 1 / 2;
    grid-column: span 1;
    min-height: 220px;
}

.bank-card-sm {
    min-height: 180px;
}

.bank-card-blue {
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(58, 80, 107, 0.18);
}

.bank-card-white {
    background: #fff;
    color: #1C2541;
}

.bank-card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bank-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-left: 1.2rem;
    color: #0f3218;
    animation: wave 2s ease-in-out infinite;
}

.bank-card-title .text-primary {
    color: #2563eb;
    font-weight: 800;
}

.bank-card-chip {
    width: 38px;
    height: 24px;
    margin: 0 auto 1.2rem auto;
    background: linear-gradient(90deg, #e0e7ef 0%, #bfc9d9 100%);
    border-radius: 6px;
}

.bank-card-balance-label {
    font-size: 1.01rem;
    color: #ededed;
    margin-bottom: 0.2rem;
}

.bank-card-balance {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ced4dd;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.bank-card-details {
    font-size: 1.01rem;
    color: #e0e7ef;
    margin-top: 0.2rem;
}

.bank-card-label {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: #222;
}

.bank-card-currency-value {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    color: #fdfcfc;
}

.bank-card-currency-up {
    color: #22c55e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.bank-card-currency-list {
    margin-bottom: 0.7rem;
}

.bank-card-currency-row {
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.bank-card-fee {
    font-size: 0.98rem;
    color: #888;
    margin-bottom: 0.7rem;
}

.bank-card-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 1.2rem;
    padding: 0.7rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    box-shadow: 0 2px 12px 0 rgba(58, 80, 107, 0.10);
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.bank-card-btn:hover {
    background: #1741b6;
    box-shadow: 0 8px 32px 0 rgba(58, 80, 107, 0.18);
}

.bank-card-chart {
    margin-top: 1.2rem;
}

.flag-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.responsive-bank-img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    display: block;
    border-bottom-left-radius: 2.2rem;
    border-bottom-right-radius: 2.2rem;
    object-fit: cover;
}

.bank-card-img {
    width: 100%;
}

/* --- Modern Card Grid --- */
.modern-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-template-rows: masonry;
    gap: 2.2rem;
    margin: 2.5rem 0;
    align-items: stretch;
}

.modern-card {
    border-radius: 2.2rem;
    padding: 2.2rem 1.7rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 32px 0 rgba(58, 80, 107, 0.18);
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s;
    position: relative;
    min-height: 220px;
    cursor: pointer;
    overflow: hidden;
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 48px 0 rgba(58, 80, 107, 0.28);
    z-index: 2;
}

.modern-card-lg {
    grid-row: span 2;
    min-height: 340px;
    font-size: 1.18rem;
}

.modern-card-md {
    min-height: 220px;
    font-size: 1.05rem;
}

.modern-card-sm {
    min-height: 160px;
    font-size: 0.98rem;
}

.modern-card i {
    font-size: 2.7rem !important;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    padding: 0.7rem 1.1rem;
    box-shadow: 0 2px 12px 0 rgba(58, 80, 107, 0.10);
}

.modern-card h5 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}

.modern-card p {
    font-size: 1.01rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #f3f3f3;
}

.gradient-blue {
    background: linear-gradient(135deg, #3A506B 0%, #5F8FFF 100%);
}

.gradient-green,
.gradient-purple,
.gradient-orange {
    color: #1C2541;
}

.gradient-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}

/* --- Themed Background Image Cards --- */
.app-dev-bg,
.crm-bg,
.marketing-bg,
.consultation-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2.2rem 1.7rem;
    border-radius: 2.2rem;
    box-shadow: 0 4px 24px 0 rgba(58, 80, 107, 0.10);
    position: relative;
}

.app-dev-bg,
.crm-bg {
    min-height: 270px;
}

.marketing-bg,
.consultation-bg {
    min-height: 80px;
}

.app-dev-bg {
    background-image: url('/assets/images/app-dev-4.png');
}

.crm-bg {
    background-image: url('/assets/images/crm-1.png');
}

.marketing-bg {
    background-image: url('/assets/images/digi-marketing.png');
}

.consultation-bg {
    background-image: url('/assets/images/it-conslutancy.png');
}


/* ===================================================================
   7. UNIQUE COMPONENTS
   =================================================================== */

/* --- Animated Titles --- */
.modern-app-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.modern-app-title .app-title-accent {
    color: #efeff4;
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px #4f46e522;
}

.ai-driven-modern-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    animation: fadeInUpTitle 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.05s both;
}

.ai-icon {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #237a56, #1c9e5a);
    border-radius: 0.5rem;
    padding: 0.1rem 0.5rem;
    box-shadow: 0 2px 12px 0 rgba(58, 80, 107, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, #237a56, #1c9e5a);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 800;
    margin-left: 1.2rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(90, 120, 255, 0.10);
    animation: gradientMove 4s ease-in-out infinite;
}


/* --- Terminal Window --- */
.terminal-wrapper {
    position: relative;
    padding: 3px;
    border-radius: 0.6rem;
    overflow: hidden;
}

.terminal-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: linear-gradient(135deg, #bdf090 0%, #a5e86a 12%, #88df3d 24%, #6ce105 36%, #58c971 48%, #4889fb 60%, #3a75f0 72%, #2f6fe8 84%, #0558e6 100%);
    z-index: -1;
    animation: rotateGradient 25s linear infinite;
}

.terminal-window {
    background-color: #1e1e1e;
    border-radius: 0.5rem;
    font-family: 'Menlo', 'Consolas', 'SF Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.terminal-header {
    background-color: #2d2d2d;
    border-bottom: 1px solid #333;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
}

.terminal-window pre {
    color: #d4d4d4;
    margin-bottom: 0;
    white-space: pre-wrap;
    word-break: break-all;
    font-size: 0.90rem;
}

.terminal-window code {
    padding: 0;
    background: none;
    color: inherit;
}

.terminal-comment {
    color: #888888;
}

.terminal-blur {
    filter: blur(4px);
    opacity: 0.6;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* --- Footer --- */
footer {
    background-color: #000;
    padding-top: 4rem;
    color: #ccc;
}

footer h5 {
    font-weight: 600;
    color: var(--bs-white);
}

footer .form-control {
    background-color: var(--bs-dark-card);
    border: 1px solid var(--bs-primary-blue);
    color: var(--bs-white);
}

footer .form-control::placeholder {
    color: #aaa;
}

footer .btn-subscribe {
    background-color: var(--bs-primary-blue);
    color: var(--bs-white);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--bs-primary-blue);
    border-radius: 50%;
    color: var(--bs-white);
    text-decoration: none;
    margin-left: 0.5rem;
    transition: background-color 0.3s;
}

footer .social-icon:hover {
    background-color: var(--bs-primary-blue);
}


/* ===================================================================
   8. DIGITAL MARKETING SECTION (Rise)
   =================================================================== */

.rise-marketing-section {
    position: relative;
    padding: 80px 0;
    background-image: linear-gradient(to bottom, #02040f 30%, #1a0734 50%, #02040f 100%);
    overflow: hidden;
}

/* .background-glow {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 212, 255, 0) 60%);
    opacity: 0.4;
    filter: blur(50px);
} */

.rise-marketing-section .container {
    position: relative;
    z-index: 2;
}

.top-client-info {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

.client-avatars {
    width: 160px;
    transform: rotate(70deg);
}

.client-avatars:hover {
    box-shadow: none !important;
}

.hero-headline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 20px;
}

.tag {
    position: absolute;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 201, 71, 0.2);
}

.tag::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.tag-marketing-expert {
    top: 5px;
    left: -60px;
    transform: rotate(-15deg);
}

.tag-marketing-expert::after {
    border-width: 10px 10px 0 0;
    border-color: var(--accent-yellow) transparent transparent transparent;
    bottom: -6px;
    right: 12px;
    transform: rotate(20deg);
}

.tag-seo-marketing {
    top: 5px;
    right: -20px;
    transform: rotate(10deg);
}

.tag-seo-marketing::after {
    content: '';
    position: absolute;
    border-width: 0 10px 10px 0;
    border-color: transparent var(--accent-yellow) transparent transparent;
    bottom: 12px;
    left: -6px;
    transform: rotate(-25deg);
}

.hero-headline {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: var(--text-light);
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-align: center;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.btn-seo-audit {
    background-color: var(--text-light);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 50px 0 0 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-seo-audit:hover {
    background-color: #f0f0f0;
    color: var(--text-dark);
}

.btn-arrow-icon {
    background-color: var(--text-light);
    color: var(--text-dark);
    padding: 10px;
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

.btn-arrow-icon .bx {
    font-size: 28px;
    background-color: var(--bg-mid-purple);
    color: var(--text-light);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cta-wrapper:hover .btn-arrow-icon .bx {
    transform: translateX(3px);
}

.info-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 30px;
    color: var(--text-light);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ppc-card {
    position: relative;
    overflow: hidden;
}

.card-icon-bg {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon-bg .bx {
    font-size: 32px;
    color: var(--text-light);
}

.ppc-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    flex-grow: 1;
}

.ppc-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.stats-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 184px; /* fixed height */
}

.stats-column .row {
    height: 100%;
}

.stats-column .row > div {
    display: flex;
    flex-direction: column;
}

.stats-column .row > div > .info-card {
    flex-grow: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-muted);
    margin: 0;
}

.stat-avatars {
    width: 90px;
    margin-top: 10px;
}

.business-partner-label {
    border: 1px dashed var(--text-muted);
    border-radius: 8px;
    padding: 5px 25px;
    margin-top: 10px;
}

.local-business-card h3 {
    font-weight: 600;
    font-size: 1.5rem;
}

.local-business-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.partner-logos {
    margin-top: 80px;
    padding: 25px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.logo-item img {
    max-height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    box-shadow: none;
}

/* --- Diagram Styles --- */
.diagram {
    position: relative;
    width: 100%;
    height: 180px;
    margin: auto;
    max-width: 250px;
}

.diagram .node {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.node-advertise {
    top: 10px;
    right: 0;
    background: rgba(255, 126, 126, 0.2);
    border-color: rgba(255, 126, 126, 0.5);
    color: #ffd1d1;
}

.node-marketing {
    top: 30px;
    left: -15px;
}

.node-gif {
    bottom: 35px;
    left: -10px;
}

.node-pdf {
    bottom: 0px;
    right: 50px;
}

.node-png {
    bottom: 30px;
    right: 0px;
}

.node-jpg {
    bottom: 60px;
    right: -15px;
}

.node-center-icon,
.node-chart-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.node-center-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #8859ff;
}

.node-center-icon i {
    font-size: 22px;
    color: white;
}

.node-chart-icon {
    bottom: 0;
    left: 30px;
}

.node-chart-icon i {
    font-size: 22px;
    color: var(--text-muted);
}

.diagram-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
}

.diagram-lines line {
    stroke: var(--text-light);
    stroke-width: 1;
}

/* --- Pill Diagram --- */
.diagram-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f0f0f0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-advertise {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    top: 20px;
    right: 15px;
    transform: rotate(15deg);
    border: 2px solid transparent;
    background-clip: padding-box;
    z-index: 1;
}

.pill-advertise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px; /* Match border width */
    border-radius: inherit;
    /* background: linear-gradient(100deg, #F9B234, #F5554D); */
}

.pill-marketing {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    gap: 12px;
    top: 85px;
    left: 8px;
    transform: rotate(-35deg);
}

.pill-marketing .dot {
    width: 12px;
    height: 12px;
}

.pill-files {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 25px 15px;
    border-radius: 50px;
    gap: 20px;
    top: 65px;
    right: 45px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(180deg);
    font-size: 0.9rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pill-icons {
    gap: 10px;
    padding: 5px 10px;
    border-radius: 50px;
    bottom: 65px;
    left: 80px;
    transform: rotate(-35deg);
}

.pill-icons i {
    font-size: 20px;
}

.pill-icons .bxs-toggle-right {
    color: #B993FF;
    transform: rotate(180deg);
}

.pill-icons .bxs-magic-wand {
    color: #e0e0e0;
}

.pill-gif {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 500;
    bottom: 250px;
    left: 15px;
    border-width: 2px;
    background: linear-gradient(135deg, #FFC947, #F37D34);
    border: none;
    box-shadow: 0 0 15px rgba(255, 195, 71, 0.3);
}

.pill-camera {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #A162F7 0%, #6F42C1 100%);
    border: none;
    box-shadow: 0 0 25px rgba(161, 98, 247, 0.4);
}

.pill-camera i {
    font-size: 36px;
    color: white;
}


/* ===================================================================
   9. ANIMATIONS & KEYFRAMES
   =================================================================== */

/* --- Floating Images --- */
.floating-img {
    position: absolute;
    width: 50px;
    height: 50px;
    object-fit: cover;
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 8px 32px 0 rgba(58, 80, 107, 0.18);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-img-1 {
    left: 8vw;
    top: -120px;
    animation: floatDown1 7s infinite alternate 0.2s;
}

.floating-img-2 {
    right: 10vw;
    top: -100px;
    animation: floatDown2 8.5s infinite alternate 0.7s;
}

.floating-img-3 {
    left: 50vw;
    top: -140px;
    animation: floatDown3 9.5s infinite alternate 1.2s;
}

/* --- Rocket Launch --- */
.bank-card-img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    margin: auto auto 1.2rem auto;
    position: relative;
    border-radius: 20px;
}

.animation-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1.5rem;
    z-index: 1;
}

.animated-rocket {
    position: absolute;
    z-index: 2;
    width: 18%;
    left: 41%;
    animation: rocket-launch-animation 3s linear infinite 3s;
}

/* --- Dropping Texts --- */
.dropping-texts > div {
    font-size: 20px;
    opacity: 0;
    position: absolute;
    font-weight: 400;
    left: 30%;
    transform: translateX(-30%);
    background-image: radial-gradient(circle, #bb8ff8 0%, #625679 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 60px 25px -20px rgba(0, 0, 0, 0.3);
    margin: 0;
    white-space: nowrap;
}

.dropping-texts > div:nth-child(1) {
    animation: roll 5s linear infinite 0s;
}

.dropping-texts > div:nth-child(2) {
    animation: roll 5s linear infinite 1s;
}

.dropping-texts > div:nth-child(3) {
    animation: roll 5s linear infinite 2s;
}

.dropping-texts > div:nth-child(4) {
    animation: roll2 5s linear infinite 3s;
}

/* --- Keyframes --- */
@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLeadIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBtnIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroOverlayFade {
    to {
        opacity: 1;
    }
}

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

@keyframes typing {
    0.0000%,
    27.3488% {
        content: "";
    }
    1.1395%,
    26.2093% {
        content: "< S";
    }
    2.2791%,
    25.0698% {
        content: "< Su";
    }
    3.4186%,
    23.9302% {
        content: "< Suc";
    }
    4.5581%,
    22.7907% {
        content: "< Succ";
    }
    5.6977%,
    21.6512% {
        content: "< Succe";
    }
    6.8372%,
    20.5116% {
        content: "< Succes";
    }
    7.9767%,
    19.3721% {
        content: "< Success />";
    }
    
    30.7674%,
    51.2791% {
        content: "";
    }
    31.9070%,
    50.1395% {
        content: "< G";
    }
    33.0465%,
    49.0000% {
        content: "< Gr";
    }
    34.1860%,
    47.8605% {
        content: "< Gro";
    }
    35.3256%,
    46.7209% {
        content: "< Grow";
    }
    36.4651%,
    45.5814% {
        content: "< Growt";
    }
    37.6047%,
    44.4419% {
        content: "< Growth />";
    }
    54.6977%,
    75.2093% {
        content: "";
    }
    55.8372%,
    74.0698% {
        content: "< D";
    }
    56.9767%,
    72.9302% {
        content: "Dr";
    }
    58.1163%,
    71.7907% {
        content: "< Dre";
    }
    59.2558%,
    70.6512% {
        content: "< Drea";
    }
    60.3953%,
    69.5116% {
        content: "< Dream";
    }
    61.5349%,
    68.3721% {
        content: "< Dreams />";
    }
    78.6279%,
    96.8605% {
        content: "";
    }
    79.7674%,
    95.7209% {
        content: "< V";
    }
    80.9070%,
    94.5814% {
        content: "< Vi";
    }
    82.0465%,
    93.4419% {
        content: "< Vis";
    }
    83.1860%,
    92.3023% {
        content: "< Visi";
    }
    84.3256%,
    91.1628% {
        content: "< Visio";
    }
    85.5256%,
    90.1228% {
        content: "< Vision />";
    }
}

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

@keyframes sequencePopup {
    0%,
    100% {
        content: "Success";
    }
    25% {
        content: "Growth";
    }
    50% {
        content: "Dreams";
    }
    75% {
        content: "Vision";
    }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

@keyframes rotateGradient {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes floatDown1 {
    0% {
        top: -120px;
        transform: scale(1) rotate(-8deg);
        opacity: 0.7;
    }
    40% {
        opacity: 1;
    }
    100% {
        top: 60vh;
        transform: scale(1.15) rotate(8deg);
        opacity: 0.85;
    }
}

@keyframes floatDown2 {
    0% {
        top: -100px;
        transform: scale(1) rotate(10deg);
        opacity: 0.7;
    }
    40% {
        opacity: 1;
    }
    100% {
        top: 55vh;
        transform: scale(1.1) rotate(-10deg);
        opacity: 0.85;
    }
}

@keyframes floatDown3 {
    0% {
        top: -140px;
        transform: scale(0.95) rotate(0deg);
        opacity: 0.7;
    }
    40% {
        opacity: 1;
    }
    100% {
        top: 65vh;
        transform: scale(1.2) rotate(12deg);
        opacity: 0.85;
    }
}

@keyframes rocket-launch-animation {
    0% {
        bottom: 35%;
        left: 41%;
        transform: scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        bottom: 60%;
        transform: scale(1);
        opacity: 1;
    }
    99% {
        bottom: 100%;
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
    }
}

@keyframes roll {
    0% {
        font-size: 0px;
        opacity: 0;
        margin-left: -50px;
        margin-top: 0px;
        transform: rotate(-25deg);
    }
    3% {
        opacity: 1;
        transform: rotate(0deg);
    }
    5% {
        font-size: 48px;
        opacity: 1;
        margin-left: 0px;
        margin-top: 0px;
    }
    20% {
        font-size: 48px;
        opacity: 1;
        margin-left: 0px;
        margin-top: 0px;
        transform: rotate(0deg);
    }
    27% {
        font-size: 0px;
        opacity: 0.5;
        margin-left: 40px;
        margin-top: 150px;
    }
    100% {
        font-size: 0px;
        opacity: 0;
        margin-left: -50px;
        margin-top: 0px;
        transform: rotate(15deg);
    }
}

@keyframes roll2 {
    0% {
        font-size: 0px;
        opacity: 0;
        margin-left: -50px;
        margin-top: 0px;
        transform: rotate(-25deg);
    }
    3% {
        opacity: 1;
        transform: rotate(0deg);
    }
    5% {
        font-size: 48px;
        opacity: 1;
        margin-left: 0px;
        margin-top: 0px;
    }
    30% {
        font-size: 48px;
        opacity: 1;
        margin-left: 0px;
        margin-top: 0px;
        transform: rotate(0deg);
    }
    37% {
        font-size: 1500px;
        opacity: 0;
        margin-left: -1000px;
        margin-top: -800px;
    }
    100% {
        font-size: 0px;
        opacity: 0;
        margin-left: -50px;
        margin-top: 0px;
        transform: rotate(15deg);
    }
}

@keyframes bg {
    0% { background: #ff0075; }
    3% { background: #0094ff; }
    20% { background: #0094ff; }
    23% { background: #b200ff; }
    40% { background: #b200ff; }
    43% { background: #8BC34A; }
    60% { background: #8BC34A; }
    63% { background: #F44336; }
    80% { background: #F44336; }
    83% { background: #F44336; }
    100% { background: #F44336; }
}


/* ===================================================================
   10. MEDIA QUERIES & RESPONSIVE DESIGN
   =================================================================== */

@media (prefers-reduced-motion) {
    .typewriter::after {
        animation: none;
    }
    .typewriter::before {
        content: "developer";
        animation: sequencePopup 12s linear infinite;
    }
}

@media (max-width: 1200px) {
    .tag-marketing-expert {
        left: -30px;
    }
    .tag-seo-marketing {
        right: 10px;
    }
    .stats-card {
        min-height: 165px;
    }
}

@media (max-width: 991.98px) {
    .about-image-fixed {
        width: 320px;
    }
    .rise-marketing-section {
        padding: 60px 0;
    }
    .hero-headline {
        font-size: 2.8rem;
    }
    .tag {
        display: none;
    }
    .local-business-card {
        margin-top: 0;
    }
    .stats-column {
        order: -1; /* Make stats appear before PPC on tablet */
    }
}

@media (max-width: 767.98px) {
    .about-image-fixed {
        width: 180px;
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    .hero-subheadline {
        font-size: 1rem;
    }
    .stats-column {
        order: 0; /* Reset order for mobile stacking */
    }
    .stats-card {
        min-height: auto;
    }
    .stats-column .row > div {
        flex-basis: 50%; /* 2 cards per row */
    }
}

@media (max-width: 576px) {
    .rise-marketing-section {
        padding: 40px 0;
    }
    .hero-headline {
        font-size: 1.6rem;
    }
    .hero-subheadline {
        font-size: 0.9rem;
    }
    .hero-subheadline br {
        display: none;
    }
    .cta-wrapper {
        margin-bottom: 40px;
    }
    .btn-seo-audit {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .stats-column .row > div {
        flex-basis: 100%; /* stack stat cards */
    }
    .partner-logos {
        justify-content: center;
        gap: 40px;
    }
    .logo-item img {
        max-height: 24px;
    }
}

.talent-hero-section {
            background-color: #050505;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        /* Gradient overlay for the subtle background colors */
        .talent-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -10%;
            width: 60%;
            height: 100%;
            /* background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(189, 238, 71, 0.15), transparent); */
            z-index: 1;
        }

        .talent-hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 60%;
            height: 100%;
            /* background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(98, 54, 255, 0.1), transparent); */
            z-index: 1;
        }

        .talent-hero-section .container {
            position: relative;
            z-index: 3;
        }

        /*--------------------------------------------------
        [ARCH AND DECORATIVE LINES]
        ----------------------------------------------------*/
        .arch-overlay {
            position: absolute;
            top: 5rem;
            left: 10%;
            width: 80%;
            height: 15rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top-left-radius: 50vw;
            border-top-right-radius: 50vw;
            border-bottom: 0;
            z-index: 2;
        }

        .arch-line {
            position: absolute;
            top: 0;
            width: 1px;
            height: 3rem;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .arch-line.line-1 { left: 15%; }
        .arch-line.line-2 { left: 30%; height: 4rem; }
        .arch-line.line-3 { left: 50%; transform: translateX(-50%); height: 4.5rem; }
        .arch-line.line-4 { right: 30%; height: 4rem; }
        .arch-line.line-5 { right: 15%; }

        /*--------------------------------------------------
        [LOGO, TEXT AND TYPOGRAPHY]
        ----------------------------------------------------*/
        .hero-logo-img {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background-color: #000;
            border: 4px solid #111;
            padding: 8px;
            box-shadow: 0 0 20px rgba(0, 255, 132, 0.15);
        }

        .hero-title {
            font-weight: 700;
            color: #e0e0e0;
            line-height: 1.3;
            font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
        }

        .text-green {
            color: #bdee47;
        }

        .text-cyan {
            color: #3ee6ae;
        }

        .hero-subtitle {
            color: #9a9a9a;
            max-width: 620px;
            margin: 1.5rem auto 0;
            font-weight: 400;
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
        }

        /*--------------------------------------------------
        [CLIENT LOGOS]
        ----------------------------------------------------*/
        .client-logos-wrapper {
            margin-top: 6rem !important;
        }

        .client-logo-item img {
            max-height: 26px; /* Adjust size as needed */
            filter: grayscale(1) brightness(2);
            opacity: 0.9;
            width: auto;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .talent-hero-section {
                padding: 4rem 0;
            }
            .arch-overlay {
                top: 4rem;
                left: 5%;
                width: 90%;
            }
            .client-logos-wrapper {
                margin-top: 4rem !important;
            }
        }

        /* /////////////////// */

        /*
  Keyframes for the continuous flip animation.
  - Rotates the element a full 360 degrees on the Y-axis.
*/
@keyframes continuous-flip {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/*
  Image Flipper Styles
  - Establishes the 3D container for the flip effect.
*/
.hero-logo-container {
    perspective: 1000px;
    width: 72px;
    height: 72px;
    margin-left: auto;
    margin-right: auto;
}

/*
  The main element that will be flipped.
  - The `animation` property is applied here for a continuous loop.
*/
.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    /* Apply the infinite animation */
    animation: continuous-flip 5s ease-in-out infinite; /* 5s duration, smooth timing, loops forever */
}

/*
  Front and Back Face Styling
  - Positioned to stack on top of each other.
  - `backface-visibility: hidden` hides the non-visible side during rotation.
*/
.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/*
  Back Face initial state
  - Rotated 180 degrees so it's facing away initially.
*/
.back {
    transform: rotateY(180deg);
}

/*
  Ensure the image inside fits the container
*/
.hero-logo-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #000;
    border: 4px solid #111;
    padding: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 132, 0.15);
}


/* kkkkkkkkkkkkkkkkkkkkkkkkkkkkk */

.ai-hero-section {
            color: #e5e7eb;
            padding: 6rem 0;
            padding-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse 50% 50% at 90% 20%, rgba(227, 85, 25, 0.2), #000000 50%);
        }

        .ai-hero-container {
            position: relative;
            z-index: 1;
        }

        /* Top Pill/Badge */
        .ai-pill {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            background-color: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .ai-pill i {
            margin-right: 0.5rem;
            color: #ff983d;
        }

        /* Main Heading */
        .ai-hero-section h1 {
            font-size: clamp(2.5rem, 6vw, 3rem);
            font-weight: 600;
            line-height: 1.2;
            text-transform: uppercase;
            background: linear-gradient(180deg, #FFFFFF 30%, #a4a4a4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .ai-hero-section .lead {
            color: #d1d5db;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            font-weight: 300;
            max-width: 500px;
            margin-top: 1.5rem;
            margin-bottom: 2.5rem;
        }

        /* Buttons */
        .btn-get-started {
            background-color: #ffffff;
            color: #000000;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: transform 0.2s ease;
        }
        .btn-get-started:hover {
            transform: scale(1.05);
        }

        .btn-see-projects {
            background-color: rgba(31, 31, 31, 0.5);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            transition: background-color 0.2s ease;
        }
        .btn-see-projects:hover {
            background-color: rgba(31, 31, 31, 0.8);
            color: #ffffff;
        }

        /* Code Terminal Window */
        .code-terminal-wrapper {
            position: relative;
        }
        
        /* 
        UPDATED: Smoother glow effect for the terminal.
        - Increased the size of the pseudo-element to give the blur more room.
        - Switched to a radial-gradient for a more natural light source.
        - Significantly increased the blur radius for a soft, diffused look.
        */
        .code-terminal-wrapper::after {
            content: '';
            position: absolute;
            top: -25px; 
            left: -25px;
            right: -25px;
            bottom: -25px;
            background: radial-gradient(circle, rgba(255, 119, 0, 0.779), transparent 70%); 
            z-index: -1;
            filter: blur(75px);
            opacity: 0.95;
            border-radius: 35px;
        }
        
        .code-terminal {
            background-color: rgba(22, 17, 28, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            backdrop-filter: blur(20px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            z-index: 1;
            position: relative;
        }

        .code-terminal-header {
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .window-controls {
            display: flex;
        }

        .window-controls span {
            display: block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            margin-right: 0.5rem;
        }
        
        .window-url {
            flex-grow: 1;
            text-align: center;
            color: #9ca3af;
            font-size: 0.8rem;
            background: rgba(0,0,0,0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 5px;
            max-width: 200px;
            margin: 0 auto;
        }

        .code-terminal-body {
            display: flex;
            min-height: 450px;
        }

        .tabs-bar {
            background-color: rgba(0,0,0,0.1);
            padding: 0.5rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: #9ca3af;
        }

        .tab {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            border-radius: 6px 6px 0 0;
            cursor: pointer;
        }
        .tab.active {
            background-color: #110d15;
            color: #e5e7eb;
        }
        .tab i {
            margin-left: 0.5rem;
            opacity: 0.7;
        }

        .editor-content {
            display: flex;
            flex-grow: 1;
        }

        .sidebar {
            width: 150px;
            padding: 1rem;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: #d1d5db;
            flex-shrink: 0;
        }
        .sidebar-header {
            color: #9ca3af;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }
        .sidebar-files > div {
            padding: 0.2rem 0;
            cursor: pointer;
        }
        .sidebar-files .file-active {
            color: #fff;
        }

        .code-pane {
            flex-grow: 1;
            padding: 1rem;
            font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            line-height: 1.7;
            overflow-x: auto;
        }
        
        /* Syntax Highlighting */
        .code-pane .c-gray { color: #818181; }
        .code-pane .c-purple { color: #c991e1; }
        .code-pane .c-blue { color: #85c1f5; }
        .code-pane .c-orange { color: #ffb454; }
        .code-pane .c-white { color: #e5e7eb; }
        .code-pane .c-green { color: #b4d882; }


        .services-section {
            padding: 4rem 0;
        }

        .service-icon {
            font-size: 3.5rem; /* Icon size */
            color: #28a99b;      /* Icon color from image */
        }

        .service-heading {
            color: #434a72;      /* Heading color from image */
            font-weight: 700;   /* Bold heading */
        }

        .service-description {
            color: #434a72;      /* Text color from image */
            font-size: 1.1rem;
        }


        /* --- CTA Banner Section --- */
        .cta-banner {
            background: linear-gradient(90deg, rgba(25, 25, 255, 1) 0%,  rgb(0, 0, 0) 100%);
            border-radius: 1.5rem;
            color: white;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .cta-banner h1 {
            font-weight: 600;
            font-size: 2.8rem;
        }

        .cta-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-banner .btn-dark-blue {
            background-color: #000033;
            color: white;
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
        }

        .cta-banner .btn-link-white {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        
        .cta-banner .btn-link-white i {
            font-size: 0.8rem;
        }

        .cta-image-wrapper {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50%;
            height: 100%;
            /* background-image: url('https://i.ibb.co/68R4wYc/ab-M.png'); Background 'M' graphic */
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center right;
        }

        .cta-image-wrapper img {
            position: absolute;
            bottom: 0;
            right: 25%;
            height: 105%;
            width: auto;
        }

        /* --- Footer Section --- */
        .footer-section {
            padding-top: 5rem;
            padding-bottom: 3rem;
        }

        .footer-section h5 {
            font-weight: 700;
            color: #212529;
            margin-bottom: 1.25rem;
        }

        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            text-decoration: none;
            color: #6c757d;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #0d6efd;
        }

        .subscribe-form .form-control {
            background-color: #e9ecef;
            border: none;
            border-radius: 50px;
            padding: 0.75rem 1.25rem;
        }

        .subscribe-form .btn-subscribe {
            background-color: #0d6efd;
            color: white;
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
        }

        .privacy-text {
            color: #6c757d;
            font-size: 0.8rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .cta-image-wrapper {
                display: none; /* Hide image on medium and smaller screens */
            }
            .cta-banner {
                padding: 2.5rem;
                text-align: center;
            }
        }


.hero-headline {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    /* font-family: 'JetBrains Mono', 'Fira Code', 'Source Code Pro', monospace; */
    /* font-family: 'Cascadia Code', 'JetBrains Mono', 'Fira Code', 'Source Code Pro', monospace; */
    /* font-family: 'mononoki', monospace; */
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Entrance Animation */
.hero-line {
    display: block;
    opacity: 0;
    animation: fadeIn 1s forwards;
}
.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.6s; }

.italic-light {
    font-family: 'Satoshi', serif; /* Use a contrasting italic font */
    font-style: italic;
    font-weight: 300; /* Make it lighter */
    color: #a0a0a0;
}

.typewriter-container .typewriter {
    color: #00ff2a;
}

/* Blinking cursor */
.typewriter::after {
    content: '_';
    font-weight: 400;
    animation: blink 0.8s infinite;
    color: #26ff00;
}

/* Keyframe Animations */
@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes blink {
    50% { opacity: 0; }
}
.gradient-brackets {
    background: linear-gradient(135deg, #00ff22 0%, #00bfff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    display: inline-block;
    padding: 0 2px;
}

/* service section */

/* General styles for the section */
.futuristic-section {
    padding: 5rem 0;
    overflow: hidden;
    background-color: #000;
    font-family: 'Space Grotesk', sans-serif;
}

/* Styling for the arched card container */
.futuristic-section .arched-card {
    background-color: #000;
    border: 1px solid #333;
    border-radius: 150px 150px 20px 20px;
    padding: 2rem 1rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 10;
}

/* Hover effect for the card */
.futuristic-section .arched-card:hover {
    border-color: #39FF14;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.5);
    transform: translateY(-5px);
}

/* 3D icon styling */
.futuristic-section .arched-card .card-icon {
    width: 180px;
    /* height: 150px; */
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease-in-out;
}

/* Icon scaling on hover */
.futuristic-section .arched-card:hover .card-icon {
    transform: scale(1.1);
}

/* Neon green heading */
.futuristic-section .arched-card h3 {
    color: #39FF14;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* White description text */
.futuristic-section .arched-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* General arrow styling */
.futuristic-section .flow-arrow {
    position: absolute;
    font-size: 2rem;
    color: #39FF14;
    z-index: 1;
    display: none; /* Hidden by default; shown per breakpoint below */
    line-height: 1;
    text-shadow: 0 0 10px rgba(57,255,20,0.7), 0 0 20px rgba(57,255,20,0.4);
}

@keyframes arrowPulseRight {
    0%   { opacity: 0.3; transform: translate(20px, 50%); }
    50%  { opacity: 1;   transform: translate(28px, 50%); }
    100% { opacity: 0.3; transform: translate(20px, 50%); }
}

@keyframes arrowPulseDown {
    0%   { opacity: 0.3; transform: translate(-50%, 20px) rotate(90deg); }
    50%  { opacity: 1;   transform: translate(-50%, 28px) rotate(90deg); }
    100% { opacity: 0.3; transform: translate(-50%, 20px) rotate(90deg); }
}

/* === Arrow Positioning via Media Queries === */

/* Desktop (lg screens and up - 992px) */
@media (min-width: 992px) {
    .futuristic-section .arrow-desktop-right {
        display: block;
        bottom: 50%;
        left: 100%;
        animation: arrowPulseRight 1.4s ease-in-out infinite;
    }

    /* Down arrow only applies when rows wrap (not in a single 3-col row) */
    .futuristic-section .arrow-desktop-down {
        display: none;
    }

    /* Hide trailing right arrow on the last card */
    .futuristic-section .col-lg-4:last-child .arrow-desktop-right {
        display: none;
    }
}

/* Tablet (md screens - 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .futuristic-section .arrow-tablet-right {
        display: block;
        bottom: 50%;
        left: 100%;
        animation: arrowPulseRight 1.4s ease-in-out infinite;
        /* slightly tighter offset for smaller gutter */
        --pulse-start: translate(15px, 50%);
    }

    .futuristic-section .arrow-tablet-right {
        animation: arrowPulseRightTablet 1.4s ease-in-out infinite;
    }

    @keyframes arrowPulseRightTablet {
        0%   { opacity: 0.3; transform: translate(15px, 50%); }
        50%  { opacity: 1;   transform: translate(22px, 50%); }
        100% { opacity: 0.3; transform: translate(15px, 50%); }
    }

    .futuristic-section .arrow-tablet-down {
        display: none;
    }

    /* Hide trailing right arrow on the last tablet card */
    .futuristic-section .col-md-4:last-child .arrow-tablet-right {
        display: none;
    }
}

/* Mobile (sm screens and down - below 767.98px) */
@media (max-width: 767.98px) {
    /* Show down arrow on all cards except the very last */
    .futuristic-section .col-sm-12:not(:last-child) .arrow-mobile-down {
        display: block;
    }

    .futuristic-section .arrow-mobile-down {
        top: 100%;
        left: 50%;
        animation: arrowPulseDown 1.4s ease-in-out infinite;
    }
}

/* For web design images */
