:root {
    --primary: #2563eb;
    --primary-light: #38bdf8;
    --primary-gradient: linear-gradient(90deg, #3B6BFF 0%, #08BCFF 100%);
    --secondary: #1e293b;
    --text: #64748b;
    --text-dark: #000000;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSide {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -15px);
    }
}

@keyframes softPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes rotateCCW {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(-315deg);
    }
}

@keyframes rotateCW {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(405deg);
    }
}

@keyframes borderRun {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes reflection {
    0% {
        left: -150%;
        top: -150%;
    }

    100% {
        left: 150%;
        top: 150%;
    }
}

@keyframes shardFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(45deg);
    }

    33% {
        transform: translate(15px, -25px) rotate(55deg);
    }

    66% {
        transform: translate(-10px, 15px) rotate(35deg);
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(120vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    50% {
        transform: translateY(50vh) translateX(50px);
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-20vh) translateX(-20px);
        opacity: 0;
    }
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float3D {

    0%,
    100% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg) translateY(0);
    }

    50% {
        transform: rotateX(10deg) rotateY(10deg) rotateZ(45deg) translateY(-15px);
    }
}

.animate-morph {
    animation: morph 8s ease-in-out infinite alternate;
}

.animate-twinkle {
    animation: twinkle 3s ease-in-out infinite;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.bg-left-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: auto;
    opacity: 0.8;
}

@media (max-width: 991px) {

    .bg-left-top,
    .bg-right-top {
        width: 300px;
        opacity: 0.4;
    }
}

@media (max-width: 767px) {

    .bg-left-top,
    .bg-right-top {
        width: 200px;
        opacity: 0.2;
        display: block;
    }
}

.bg-right-top {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 600px;
    height: auto;
    opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    /* Matching Bootstrap xxl container but with custom padding */
    margin: 0 auto;
    padding: 0 24px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #3B6BFF 0%, #08BCFF 100%);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(59, 107, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 107, 255, 0.45);
}

/* Header Styles */
.header.navbar {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.navbar.nav-up {
    top: -120px;
}

@media (max-width: 767px) {
    .header.navbar {
        padding: 5px 0 0;
        margin-bottom: 0 !important;
        border-bottom: none !important;
    }
}

.header.navbar .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 10px 15px;
    transition: var(--transition);
}

.header.navbar .nav-link:hover,
.header.navbar .nav-link.active {
    color: #38bdf8;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    margin-left: -31px;
}

@media (max-width: 767px) {
    .logo img {
        height: 63px;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-quote {
    background: linear-gradient(90deg, #3B6BFF 0%, #08BCFF 100%);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(59, 107, 255, 0.25);
    white-space: nowrap;
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(59, 107, 255, 0.4);
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 30px;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* ============================================
   Brand Statement Section (Advanced Asymmetrical + Animations)
   ============================================ */
.brand-statement-section {
    position: relative;
    padding: 150px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.brand-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-watermark {
    position: absolute;
    top: 40%;
    left: 5%;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.02);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.brand-decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    z-index: 0;
    animation: blobMove 25s infinite alternate ease-in-out;
}

.brand-decor-1 {
    width: 600px;
    height: 600px;
    background: #3b6bff;
    top: -200px;
    right: -100px;
}

.brand-decor-2 {
    width: 500px;
    height: 500px;
    background: #08bcff;
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes blobMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 60px) scale(1.2);
    }
}

.brand-visual-pillar {
    position: relative;
    z-index: 2;
}

.brand-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(59, 107, 255, 0.08);
    border: 1px solid rgba(59, 107, 255, 0.15);
    border-radius: 100px;
    color: #3b6bff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.text-gradient {
    background: linear-gradient(90deg, #3B6BFF 0%, #08BCFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.brand-main-heading-asym {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
    margin-top: 15px;
    font-family: 'Funnel Display', sans-serif;
    min-height: 1.2em;
    /* Prevent layout shift during typing */
}

.kinetic-char {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(5px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: pre;
    /* Maintain spaces */
}

.kinetic-char.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Pillar Animations */
.brand-pillar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #64748b;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.pillar-item.active {
    color: #3b6bff;
}

.pillar-dot {
    width: 8px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s ease;
    animation: dotPulse 3s infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.pillar-item.active .pillar-dot {
    background: #3b6bff;
    box-shadow: 0 0 15px rgba(59, 107, 255, 0.5);
    animation: activeDotPulse 2s infinite;
}

@keyframes activeDotPulse {

    0%,
    100% {
        transform: scale(1.5);
        box-shadow: 0 0 15px rgba(59, 107, 255, 0.5);
    }

    50% {
        transform: scale(1.8);
        box-shadow: 0 0 25px rgba(59, 107, 255, 0.8);
    }
}

/* Narrative Stack Animations */
.brand-narrative-stack {
    position: relative;
    padding-left: 40px;
}

.narrative-card {
    border-radius: 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
    /* Hidden initially for entrance */
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-primary {
    background: #3178FF;
    padding: 60px;
    color: #ffffff;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.2);
    margin-bottom: -40px;
    margin-right: 40px;
    transform: translateX(-50px);
    /* Entrance offset */
}

.card-primary .text-large {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
}

.card-primary strong {
    color: #02141b;
    font-weight: 800;
}

.card-secondary {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 50px 60px;
    border: 1px solid rgba(241, 245, 249, 0.8);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.05);
    margin-left: 60px;
    z-index: 2;
    transform: translateX(50px);
    /* Entrance offset */
}

.brand-anim.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.card-secondary .text-standard {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
}

.card-accent-bar {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b6bff, #08bcff);
    margin-top: 30px;
    border-radius: 10px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.brand-anim.visible .card-accent-bar {
    width: 60px;
}


.card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 107, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glowFloat 10s infinite alternate ease-in-out;
}

@keyframes glowFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(30px, -20px) scale(1.2);
        opacity: 1;
    }
}

/* Scroll Parallax Script Helper */
.brand-watermark.parallax-move {
    transform: translateY(-50%) translateZ(0);
    /* Driven by JS below */
}

/* Responsive */
@media (max-width: 991px) {
    .brand-statement-section {
        padding: 80px 0;
    }

    .brand-narrative-stack {
        padding-left: 0;
        margin-top: 50px;
    }

    .card-primary {
        margin-right: 0;
        padding: 40px;
        margin-bottom: 20px;
    }

    .card-secondary {
        margin-left: 0;
        padding: 40px;
    }

    .brand-watermark {
        display: none;
    }
}

@media (max-width: 575px) {
    .brand-main-heading-asym {
        font-size: 32px;
    }

    .card-primary .text-large {
        font-size: 18px;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0 120px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-blob-soft {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(59, 107, 255, 0.15) 0%, rgba(8, 188, 255, 0.1) 100%);
    filter: blur(40px);
    z-index: 1;
    animation: softPulse 10s ease-in-out infinite, morph 15s ease-in-out infinite alternate;
}

.top-right-blob {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, rgba(8, 188, 255, 0.1) 0%, rgba(59, 107, 255, 0.15) 100%);
    filter: blur(50px);
    z-index: 1;
    animation: softPulse 12s ease-in-out infinite reverse, morph 18s ease-in-out infinite alternate-reverse;
}

/* Bubbles Styling */
.hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(59, 107, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: bubbleRise 15s linear infinite;
    backdrop-filter: blur(1px);
}

.b-1 {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.b-2 {
    width: 20px;
    height: 20px;
    left: 25%;
    animation-duration: 14s;
    animation-delay: -2s;
}

.b-3 {
    width: 60px;
    height: 60px;
    left: 40%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.b-4 {
    width: 30px;
    height: 30px;
    left: 55%;
    animation-duration: 16s;
    animation-delay: -1s;
}

.b-5 {
    width: 50px;
    height: 50px;
    left: 70%;
    animation-duration: 20s;
    animation-delay: -8s;
}

.b-6 {
    width: 25px;
    height: 25px;
    left: 85%;
    animation-duration: 15s;
    animation-delay: -3s;
}

.b-7 {
    width: 45px;
    height: 45px;
    left: 15%;
    animation-duration: 19s;
    animation-delay: -6s;
}

.b-8 {
    width: 35px;
    height: 35px;
    left: 80%;
    animation-duration: 17s;
    animation-delay: -4s;
}

.b-9 {
    width: 15px;
    height: 15px;
    left: 50%;
    animation-duration: 13s;
    animation-delay: -7s;
}

.b-10 {
    width: 55px;
    height: 55px;
    left: 30%;
    animation-duration: 21s;
    animation-delay: -9s;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 0 0 50%;
    position: relative;
}

.hero-text-slider {
    position: relative;
    min-height: 380px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

@media (max-width: 991px) {
    .hero-text-slider {
        min-height: auto;
        margin-bottom: 30px;
    }

    .hero-slide {
        position: relative;
        display: none;
    }

    .hero-slide.active {
        display: block;
    }
}

.hero-decorations {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.decor-x {
    font-size: 24px;
    color: #3B82F6;
    animation: float 4s ease-in-out infinite;
}

.decor-x-outline {
    font-size: 24px;
    color: #3B82F6;
    opacity: 0.5;
    animation: float 4s ease-in-out infinite 1s;
}

.headline-model {
    font-size: 61px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: #000;
    max-width: 600px;
    font-family: "Funnel Display", sans-serif;
}

@media (max-width: 767px) {
    .headline-model {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
}

.subline-model {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 45px;
    max-width: 480px;
    line-height: 1.7;
}

.btn-get-touch {
    background: linear-gradient(90deg, #2D6BFF 0%, #00B4FF 50%, #2D6BFF 100%);
    background-size: 200% auto;
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(45, 107, 255, 0.3);
    animation: shimmer 4s linear infinite;
}

.btn-get-touch:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(45, 107, 255, 0.45);
}

.hero-image-area {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-image-diamond {
    width: 520px;
    height: 520px;
    background: #ffffff;
    border-radius: 160px;
    transform: rotate(45deg);
    overflow: hidden;
    /* Changed back to hidden for the glow/clipping effect */
    position: relative;
    z-index: 5;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border: 15px solid #fff;
    animation: float3D 8s ease-in-out infinite;
}

@media (max-width: 767px) {
    .hero-image-diamond {
        width: 300px;
        height: 300px;
        border-radius: 80px;
        border-width: 8px;
    }
}

/* Glowing Border Beam */
.diamond-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent, #3B6BFF, #08BCFF, transparent 30%);
    z-index: -1;
    animation: borderRun 4s linear infinite;
}

.hero-image-diamond::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #fff;
    border-radius: 150px;
    z-index: -1;
}

.diamond-border {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border: 2px dashed rgba(59, 107, 255, 0.3);
    border-radius: 180px;
    pointer-events: none;
    z-index: -2;
    /* Moved behind glow */
}

.border-1 {
    animation: rotateCW 20s linear infinite;
}

.border-2 {
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border: 1.5px solid rgba(8, 188, 255, 0.2);
    border-radius: 200px;
    animation: rotateCCW 30s linear infinite;
}

.border-3 {
    top: -70px;
    left: -70px;
    right: -70px;
    bottom: -70px;
    border: 1px dotted rgba(59, 107, 255, 0.15);
    border-radius: 220px;
    animation: rotateCW 40s linear infinite;
}

.image-inner {
    width: 142%;
    height: 142%;
    transform: rotate(-45deg);
    position: absolute;
    top: -21%;
    left: -21%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 160px;
    overflow: hidden;
}

.reflection-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    z-index: 2;
}

.image-inner.active .reflection-sweep {
    animation: reflection 3s ease-in-out infinite;
}

.image-inner.active {
    opacity: 1;
    z-index: 1;
    transform: rotate(-45deg) scale(1.1) translateX(0);
}

/* Floating Shards */
.shard {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(59, 107, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(59, 107, 255, 0.2);
    border-radius: 8px;
    z-index: 2;
    animation: shardFloat 10s ease-in-out infinite;
}

.shard-1 {
    top: 10%;
    left: 5%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.shard-2 {
    top: 80%;
    left: 15%;
    width: 25px;
    height: 25px;
    animation-delay: -2s;
}

.shard-3 {
    top: 20%;
    right: 5%;
    width: 35px;
    height: 35px;
    animation-delay: -4s;
}

.shard-4 {
    bottom: 15%;
    right: 10%;
    width: 20px;
    height: 20px;
    animation-delay: -6s;
}

/* Slide out effect */
.image-inner:not(.active) {
    transform: rotate(-45deg) scale(0.9) translateX(-20px);
}

.image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-decor-dot {
    position: absolute;
    top: -48px;
    left: 160px;
    width: 32px;
    height: 32px;
    background: #38bdf8;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-decor-grid {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 120px;
    background-image: radial-gradient(#3B82F6 2px, transparent 2px);
    background-size: 24px 24px;
    z-index: 4;
    opacity: 0.6;
    animation: twinkle 4s ease-in-out infinite;
}

/* Floating Stats Card */
.hero-stats-card {
    position: absolute;
    top: 20%;
    right: -40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatSide 6s ease-in-out infinite;
}

@media (max-width: 767px) {
    .hero-stats-card {
        top: auto;
        bottom: -20px;
        right: 10px;
        padding: 10px 15px;
        transform: scale(0.85);
    }
}

.stats-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stats-info h4 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text-dark);
}

.stats-info p {
    font-size: 13px;
    margin-bottom: 0;
    color: var(--text);
}

.hero-decor-orb {
    position: absolute;
    bottom: 30px;
    left: 100px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #09BBFF 0%, #2D80FF 100%);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(45, 128, 255, 0.4);
    animation: float 5s ease-in-out infinite;
}

@media (max-width: 767px) {
    .hero-decor-orb {
        width: 60px;
        height: 60px;
        left: 20px;
        bottom: 10px;
    }
}

.hero-decor-orb-2 {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 40px;
    height: 40px;
    background: #38bdf8;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Adjustments consolidated at the end of the file */

.hr-needs,
.features,
.video-section,
.staffing,
.services-carousel,
.steps-section {
    padding: 100px 0;
}

/* About Section - Journey Timeline */
.timeline-container {
    position: relative;
    padding: 0px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(59, 107, 255, 0) 0%,
            rgba(59, 107, 255, 1) 25%,
            rgba(8, 188, 255, 1) 50%,
            rgba(59, 107, 255, 1) 75%,
            rgba(59, 107, 255, 0) 100%);
    background-size: 100% 200%;
    animation: flowLine 4s linear infinite;
}

@keyframes flowLine {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 -200%;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px rgba(59, 107, 255, 0.3);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(59, 107, 255, 0.4);
    }

    70% {
        transform: translateX(-50%) scale(1.2);
        box-shadow: 0 0 0 10px rgba(59, 107, 255, 0);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(59, 107, 255, 0);
    }
}

.milestone-year {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.milestone-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.milestone-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.milestone-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.milestone-img:hover {
    transform: translateY(-10px) scale(1.02);
}

.milestone-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.milestone-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.client-trust-bar {
    background: #eeeeee;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
    .timeline-container::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
        text-align: left !important;
    }

    .milestone-icon {
        margin: 20px 0;
    }
}

.read-more-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 992px) {
    .read-more-wrapper {
        justify-content: flex-start;
        /* Keep left-aligned on desktop if desired, but I'll check if they wanted "meddle" as in true middle */
    }
}

/* User said meddle, so I'll try true middle for a bit to see if they like it, but usually text-start is better. 
   Actually, I'll go with full center for 'meddle' across all screens to be safe. */
.read-more-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(59, 107, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
}

.btn-read-more:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 107, 255, 0.2);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateY(2px);
}

.collapse:not(.show) {
    display: none;
}

.collapse.show {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.origami {
    position: absolute;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: floatSide 8s ease-in-out infinite;
}

.origami-1 {
    top: -40px;
    left: -40px;
    width: 120px;
}

.origami-2 {
    bottom: -40px;
    right: -40px;
    width: 100px;
    animation-delay: -2s;
}

.collage-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.collage-item:hover {
    transform: translateY(-10px);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-list li {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.benefit-list li i {
    color: #3B6BFF;
    font-size: 20px;
}

.about-stats-grid {
    display: flex;
    gap: 40px;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.stat-item .stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 575px) {
    .about-stats-grid {
        flex-direction: column;
        gap: 20px;
    }
}

.item-1 {
    width: 65%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 1;
}

.item-2 {
    width: 45%;
    height: 240px;
    bottom: 40px;
    left: 0;
    z-index: 3;
    border: 8px solid var(--white);
}

.item-3 {
    width: 55%;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.experience-badge {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: var(--white);
    border-radius: 30px;
    z-index: 5;
    text-align: center;
    border: 8px solid var(--white);
    transition: var(--transition);
}

.experience-badge h2 {
    font-size: 56px;
    line-height: 1;
}

.experience-badge h2 sup {
    font-size: 24px;
}

.experience-badge p {
    line-height: 1.2;
}

@media (min-width: 992px) {
    .experience-badge {
        position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
    }
}

.about-right {
    flex: 1;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 70px;
    letter-spacing: 1px;
}

.section-heading {
    font-size: 43px;
    font-family: "Funnel Display", sans-serif;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #000000;
    font-weight: 500;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin-top: 15px;
}

.section-desc {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.benefit-list {
    margin-bottom: 20px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

.benefit-list li i {
    color: #3b82f6;
    font-size: 20px;
}

.client-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 15px;
    color: #64748b;
}

.trust-text strong {
    color: #1e293b;
}

/* Decorative Shards (Origami) */
.origami {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.origami-1 {
    top: -62px;
    left: 358px;
    width: 80px;
    height: 60px;
    transform: rotate(4deg);
    animation: float 5s ease-in-out infinite;
}

.origami-2 {
    bottom: -12px;
    right: -108px;
    width: 120px;
    height: 100px;
    transform: rotate(-2deg);
    animation: float 5s ease-in-out infinite;
}

.world-map-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_Map_Blank.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* Benefits Section - New Model */
.benefits-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 70px 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.benefits-section .container {
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.section-tag-capsule {
    display: inline-block;
    padding: 6px 20px;
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading-model {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-family: 'Funnel Display', sans-serif;

}

.benefits-layout-model {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    width: 100%;
    flex: 1;
}

.benefit-col-side {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 5vh, 60px);
}

.benefit-col-side.left {
    text-align: right;
    align-items: flex-end;
    padding-right: 20px;
}

.benefit-col-side.right {
    text-align: left;
    align-items: flex-start;
}

.benefit-card-model {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    max-width: 400px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: left;
}

.benefit-card-model::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, #3B6BFF, #08BCFF, #3B6BFF);
    background-size: 200% auto;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.benefit-card-model:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 107, 255, 0.1);
    border-color: transparent;
}

.benefit-card-model:hover::before {
    opacity: 1;
    animation: borderFlow 3s linear infinite;
}



.card-icon-model {
    font-size: 28px;
    color: #08BCFF;
    margin-bottom: 20px;
}

.benefit-card-model h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.benefit-card-model p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Center Capsule */
.benefit-col-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.iphone-device-wrapper {
    position: relative;
    width: auto;
    height: 65vh;
    aspect-ratio: 320 / 650;
    margin: 0 auto;
    z-index: 10;
}

.iphone-device {
    width: 100%;
    height: 100%;
    background: #1e293b;
    border: 6px solid #0f172a;
    border-radius: 55px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3), 0 0 0 4px #334155;
    overflow: hidden;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 13px;
    background: #0f172a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 20;
    display: none;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
}

.iphone-home-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    z-index: 20;
}

.benefits-scroller-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.benefits-scroller-track {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.benefit-scroll-item {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.benefit-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

/* Dynamic Background Decorations */
.benefits-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.benefit-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: morph 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3B6BFF 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #08BCFF 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.benefit-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 107, 255, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: softPulse 12s ease-in-out infinite;
}

.device-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 110%;
    background: radial-gradient(circle, rgba(59, 107, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Responsive adjustments for iPhone model */
@media (max-width: 991px) {
    .iphone-device-wrapper {
        width: 280px;
        height: 560px;
        margin-bottom: 40px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .benefits-layout-model {
        grid-template-columns: 1fr 320px 1fr;
    }
}

@media (max-width: 991px) {
    .benefits-layout-model {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefit-col-center {
        order: -1;
    }

    .benefit-capsule-wrapper {
        height: 500px;
        max-width: 320px;
        margin: 0 auto;
    }

    .benefit-col-side {
        text-align: center !important;
        align-items: center !important;
    }

    .section-heading-model {
        font-size: 32px;
    }
}

/* Vision Section */
.vision-section {
    padding: 26px 0 68px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.vision-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.vision-left {
    flex: 1;
}

.vision-image {
    width: 100%;
    height: 580px;
    border-radius: 40px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.vision-right {
    flex: 1;
}

.vision-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    position: relative;
    font-family: var(--font-heading);
}

.tab-btn.active {
    color: #3b82f6;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3b82f6;
}

.tab-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

.bg-watermark-bottom {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 500px;
    font-weight: 900;
    color: #f1f5f9;
    z-index: -1;
    pointer-events: none;
    letter-spacing: 100px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

/* Expertise Section */
.expertise-section {
    padding: 60px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.expertise-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.expertise-left {
    flex: 1;
    position: relative;
    z-index: 2;
}

.expertise-right {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.expertise-item {
    border-top: 1px solid #e2e8f0;
    padding: 30px 0;
    transition: var(--transition);
}

.expertise-item:last-child {
    border-bottom: 1px solid #e2e8f0;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    margin-bottom: 0;
    transition: var(--transition);
}

.expertise-item.active .item-header {
    margin-bottom: 25px;
}

.item-num {
    font-size: 18px;
    font-weight: 700;
    color: #94a3b8;
    font-family: var(--font-heading);
}

.expertise-item h3 {
    font-size: 24px;
    color: #1e293b;
    margin: 0;
}

.item-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.expertise-item.active .item-content {
    max-height: 500px;
    opacity: 1;
}

.item-content img {
    width: 696px;
    max-width: 100%;
    height: 233px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.item-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.bg-curve {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 600px;
    height: 800px;
    background: radial-gradient(circle, #f1f5f9 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.8;
    transform: translateY(-50%);
}

/* Services Section */
.services-section {
    padding: 58px 0;
    background: linear-gradient(180deg, #AFC6E6fe 0%, #ffffff 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 60px 0;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    padding: 40px 30px 60px;
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(90deg, #3B6BFF, #08BCFF, #3B6BFF);
    background-size: 200% auto;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 107, 255, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
    animation: borderFlow 3s linear infinite;
}

.service-icon {
    font-size: 32px;
    color: #3b82f6;
    margin-bottom: 25px;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e293b;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.card-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 24px 0;
}

.card-arrow a {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #1e293b;
    font-size: 14px;
    transition: var(--transition);
}

.service-card:hover .card-arrow a {
    transform: translateX(3px);
    color: #3b82f6;
}

.services-footer {
    max-width: 800px;
    margin: 60px auto 0;
}

.footer-desc {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.8;
}

.other-services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.service-item-mini {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.service-item-mini:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.service-icon-circle {
    min-width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.service-item-mini:hover .service-icon-circle {
    background: var(--primary-color);
    color: #ffffff;
}

.service-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e293b;
}

.service-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.process-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.process-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.process-left {
    flex: 1.2;
}

.process-right {
    flex: 1;
}

.process-steps-grid {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    margin: 40px 0 50px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.step-item:hover .step-icon {
    background: #3b82f6;
    color: var(--white);
    transform: translateY(-5px);
}

.step-info h3 {
    font-size: 18px;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
}

.split-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
}

.image-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.image-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-split-1 {
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 25%, 0 75%);
}

.image-split-2 {
    z-index: 1;
    clip-path: polygon(100% 35%, 100% 100%, 0 100%, 0 85%);
}

.split-image-container:hover .image-split-1 {
    transform: scale(1.02);
}

.split-image-container:hover .image-split-2 {
    transform: scale(1.02);
}

/* Main Footer */
.main-footer {
    padding: 100px 0 0px;
    background: linear-gradient(135deg, #020b1f 0%, #061d4a 100%);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer-bg-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44%;
    height: auto;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.footer-shards {
    position: absolute;
    top: 0;
    left: 769px;
    width: 55%;
    height: 95%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 150px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    max-height: 80px;
    filter: brightness(0) invert(1);
}

.brand-text h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.brand-text p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.arabic-text {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
}

.footer-info {
    flex: 1.2;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.social-links a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-size: 15px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

.office-address {
    font-size: 15px;
    margin-bottom: 25px;
}

.office-help {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.office-phone {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.office-email {
    font-size: 15px;
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.crafted-by {
    font-size: 14px;
}

.heart {
    color: #ef4444;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition);
}

.back-to-top i {
    width: 36px;
    height: 36px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.back-to-top:hover {
    opacity: 0.8;
}

.back-to-top:hover i {
    background: #ffffff;
    color: #020b1f;
}

/* Responsive */
@media (max-width: 1200px) {
    .headline-model {
        font-size: 52px;
    }

    .section-heading {
        font-size: 38px;
    }
}

@media (max-width: 991px) {

    /* Hero Section Responsive Consolidated */
    .hero {
        padding-top: 0 !important;
        padding-bottom: 40px !important;
        margin-top: 11px !important;
        /* Pull up to meet the header */
        text-align: center;
        min-height: auto !important;
        position: relative;
        overflow: hidden;
        background: #ffffff;
        display: block !important;
        z-index: 5;
    }

    .hero-blob-soft,
    .top-right-blob {
        display: none !important;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(115deg, #ffffff 40%, #EEF5FF 40%);
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 10;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .hero-content {
        margin: 0 auto 5px;
        display: contents;
        flex-direction: column;
        align-items: center;
        padding-top: 0 !important;
    }

    .hero-decorations {
        margin-bottom: 10px !important;
        display: flex;
        align-items: center;
        justify-content: center !important;
        padding-top: 0 !important;
    }

    .headline-model {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 700;
        color: #000;
        margin-bottom: 20px !important;
    }

    .subline-model {
        font-size: 18px;
        max-width: 95%;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
        color: #4b5563;
        line-height: 1.5;
        font-weight: 400;
    }

    .hero-image-wrapper {
        margin: 0 auto;
    }

    .hero-image-area {
        flex-direction: column;
        align-items: center;
        margin-top: 40px !important;
        position: relative;
    }

    .hero-image-wrapper {
        margin-bottom: 30px;
        position: relative;
    }

    .hero-image-diamond {
        width: 340px;
        height: 340px;
        border-radius: 110px;
        margin: 0 auto;
        border-width: 10px;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
        z-index: 5;
        transform: translateX(20px) rotate(45deg) !important;
    }

    .hero-decor-grid {
        display: block;
        top: -60px;
        left: 50%;
        transform: translateX(-40%);
        width: 220px;
        height: 120px;
        opacity: 0.4;
        z-index: 1;
        background-image: radial-gradient(#3B82F6 2px, transparent 2px);
        background-size: 24px 24px;
    }

    .hero-decor-orb {
        width: 110px;
        height: 110px;
        left: -20px;
        bottom: -20px;
        display: block;
        z-index: 10;
        background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
    }

    .hero-decor-dot {
        display: block;
        width: 32px;
        height: 32px;
        top: 60px;
        left: -15px;
        background: #38bdf8;
        z-index: 10;
        box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
    }

    .hero-decor-orb-2 {
        display: none;
    }

    .hero-blob-soft {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
    }

    .section-heading {
        font-size: 25px;
    }

    .experience-badge h2 {
        font-size: 36px;
    }

    .expertise-container {
        flex-direction: column;
        gap: 40px;
    }

    .expertise-left,
    .expertise-right {
        width: 100%;
        flex: none;
    }

    .bg-watermark-bottom {
        font-size: 80px;
        letter-spacing: 10px;
        opacity: 0.05;
        bottom: 20px;
    }

    .service-card {
        padding: 30px 20px 50px;
    }

    .footer-col {
        text-align: center;
    }

    .main-footer {
        padding: 60px 0 30px;
        text-align: center;
        background: #020b1f;
        /* Darker base color */
    }

    .footer-bg-globe {
        width: 100% !important;
        opacity: 0.15 !important;
        top: 40% !important;
    }

    .footer-description {
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        max-width: 100% !important;
        text-align: left;
        padding: 0 0px;
        margin-bottom: 30px;
    }

    .footer-col {
        text-align: left !important;
    }

    .footer-col h4 {
        color: #ffffff;
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 700;
        text-align: left;
        padding: 0 10px;
    }

    .footer-col ul {
        padding: 0 10px;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        color: #ffffff;
        opacity: 1;
        font-weight: 500;
        font-size: 16px;
    }

    .office-address {
        color: #ffffff;
        font-size: 17px;
        font-weight: 500;
        text-align: left;
        margin-bottom: 30px !important;
    }

    .contact-label {
        color: rgba(255, 255, 255, 0.8) !important;
        font-weight: 600 !important;
        font-size: 15px !important;
        text-transform: none !important;
    }

    .contact-phone {
        color: #ffffff !important;
        font-size: 16px !important;
        margin-top: 5px;
    }

    .contact-email {
        color: #ffffff !important;
        font-size: 18px !important;
        font-weight: 500;
    }

    .social-links {
        margin-top: 40px;
    }

    .social-links a {
        font-size: 28px;
        color: #ffffff;
    }

    .footer-divider {
        margin: 30px 0 15px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        height: 1px !important;
    }

    .footer-bottom {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0px 0 !important;
        border: none !important;
        gap: 10px !important;
    }

    .crafted-by {
        font-size: 13px !important;
        white-space: nowrap;
    }

    .back-to-top {
        font-size: 13px !important;
        white-space: nowrap;
    }

    .back-to-top i {
        font-size: 18px !important;
    }

    .collage-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        height: auto;
        margin-top: 40px;
    }

    .collage-item,
    .experience-badge {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
        border-radius: 20px !important;
        border: none !important;
    }

    .collage-item img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 20px;
    }

    .item-2 img {
        height: 180px;
    }

    .experience-badge {
        height: 180px !important;
        padding: 15px;
        border-radius: 20px !important;
    }

    .experience-badge h2 {
        font-size: 32px !important;
    }

    .experience-badge p {
        font-size: 11px !important;
    }

    /* Grid layout to match model image */
    .item-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .experience-badge {
        grid-column: 2;
        grid-row: 1;
    }

    .item-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .item-3 {
        grid-column: 2;
        grid-row: 2;
    }

    /* Global Section Padding for Mobile */
    .about-section,
    .benefits-section,
    .vision-section,
    .expertise-section,
    .services-section,
    .process-section {
        padding: 50px 0 !important;
    }

    /* Vision Section Responsive */
    .vision-section {
        text-align: center;
    }

    .vision-right .section-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .vision-image {
        height: 400px;
        clip-path: none;
        border-radius: 30px;
    }

    .vision-tabs {
        justify-content: center;
        gap: 20px;
    }

    /* Benefits Section Responsive */
    .benefits-section {
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-card {
        padding: 40px 30px;
    }

    .card-number {
        font-size: 80px;
    }

    /* Expertise Section Responsive */
    .expertise-section {
        text-align: center;
    }

    .expertise-left .section-tag {
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
        padding: 8px 24px;
        border-radius: 50px;
        border: 1px solid #e2e8f0;
        background: transparent;
        color: #64748b;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 30px;
    }

    .expertise-left .section-heading {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .expertise-left .section-desc {
        font-size: 16px;
        line-height: 1.8;
        color: #64748b;
        margin-bottom: 30px;
        text-align: left;
    }

    .expertise-right {
        text-align: left;
        margin-top: 40px;
    }

    .expertise-item {
        border-top: 1px solid #eee;
        padding: 25px 0;
    }

    .item-header h3 {
        font-size: 20px;
        font-weight: 700;
    }

    .item-num {
        font-size: 18px;
        color: #94a3b8;
    }
}

/* ============================================
   Process Section Model
   ============================================ */
.process-section {
    padding: 20px 0;
    background-color: #ffffff;
}

/* ---- Tag Pill ---- */
.section-tag-pill {
    display: inline-block;
    padding: 7px 22px;
    border-radius: 50px;
    border: 1.5px solid #d1d5db;
    background: transparent;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* ---- Big Heading ---- */
.section-heading-model-lg {
    font-size: 42px;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -1px;
    font-family: 'Funnel Display', sans-serif;
    margin-bottom: 18px;
}

/* ---- Sub description ---- */
.process-desc-model {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 40px;
}

/* ---- Steps Grid ---- */
.process-steps-grid {
    margin: 0 0 40px;
}

/* Each step item: icon box + label */
.process-step-item-model {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 12px 0;
}

/* Icon box — matches the blue document icon in model */
.process-step-icon-model {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg, #e8f0fe 0%, #dbeafe 100%);
    border: 2px solid #bfdbfe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2563eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

.process-step-item-model:hover .process-step-icon-model {
    background: linear-gradient(145deg, #2563eb 0%, #38bdf8 100%);
    border-color: #2563eb;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Step label text */
.process-step-info-model {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-step-info-model h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ---- Get Started Button ---- */
.btn-get-started-model {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #3b6bff 0%, #08bcff 100%);
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(59, 107, 255, 0.35);
    text-decoration: none;
}

.btn-get-started-model:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(59, 107, 255, 0.5);
    color: #ffffff;
}

/* ---- Right-side image ---- */
.process-image-mask-wrapper {
    position: relative;
    padding-left: 20px;
}

.process-image-mask {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.diagonal-cut-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 40px;
    background: #ffffff;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 2;
}

.process-main-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .process-section {
        text-align: center;
    }

    .section-heading-model-lg {
        font-size: 26px;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .process-desc-model {
        font-size: 15px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .process-step-item-model {
        justify-content: flex-start;
        text-align: left;
    }

    .process-image-mask-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .process-main-img {
        height: 320px;
    }

    .process-step-info-model h3 {
        font-size: 15px;
    }

    .process-step-icon-model {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-image-diamond {
        width: 260px;
        height: 260px;
        border-radius: 60px;
    }

    .collage-item img {
        height: 180px;
    }

    .item-2 img,
    .experience-badge {
        height: 140px !important;
    }

    .experience-badge h2 {
        font-size: 24px !important;
    }

    .experience-badge p {
        font-size: 9px !important;
    }
}

/* ============================================
   Footer Model Styling
   ============================================ */
.footer-model {
    background: linear-gradient(135deg, #02235B 0%, #011638 100%);
    padding: 50px 0 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-overlay-model {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* ============================================
   Footer - Premium Editorial Model
   ============================================ */
.footer-model {
    position: relative;
    padding: 50px 0 0;
    background-color: #0f172a;
    color: #ffffff;
    overflow: hidden;
}

.footer-logo-model {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description-model {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-description-model p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-align: left;
}

.footer-identity-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.footer-heading-model {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Funnel Display', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-list-model {
    list-style: none;
    padding: 0;
}

.footer-list-model li {
    margin-bottom: 8px;
}

.footer-list-model li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-list-model li a:hover {
    color: #08bcff;
    padding-left: 8px;
}

.footer-social-model {
    display: flex;
    gap: 15px;
}

.footer-social-model a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-model a:hover {
    background: #3b6bff;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 107, 255, 0.3);
    border-color: transparent;
}

.office-details-model p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.phone-model {
    color: #ffffff !important;
    font-weight: 700;
}

.footer-divider-model {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 25px 0;
}

.footer-bottom-model {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.crafted-by-model {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.heart-model {
    color: #ff6b6b;
    display: inline-block;
    margin: 0 4px;
    font-size: 16px;
    animation: heartBeat 2s infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.crafted-by-model a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    margin-left: 2px;
    transition: all 0.3s ease;
}

.crafted-by-model a:hover {
    color: #08bcff !important;
    text-shadow: 0 0 10px rgba(8, 188, 255, 0.3);
}

.back-to-top-model {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.back-to-top-model:hover {
    opacity: 1;
    color: #08bcff;
}


/* Footer Responsive */
@media (max-width: 991px) {
    .footer-description-model {
        margin-left: 0;
        text-align: left;
        margin-top: 20px;
        max-width: 100%;
    }

    .read-more-footer {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .footer-model {
        padding: 50px 0 0;
    }

    .footer-logo-model {
        height: 70px;
    }

    .footer-heading-model {
        font-size: 18px;
        margin-bottom: 18px;
        margin-top: 30px;
    }

    .footer-bottom-model {
        flex-direction: column !important;
        gap: 12px;
        text-align: center;
    }

    .footer-bg-img-1,
    .footer-bg-img-2 {
        height: 50% !important;
    }

    .back-to-top-model {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 48px;
        height: 48px;
        background: #3b6bff;
        border-radius: 50px;
        justify-content: center;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        padding: 0;
        overflow: hidden;
    }

    .back-to-top-model i {
        font-size: 22px;
        margin: 0;
        margin-left: 7px;
    }

    .back-to-top-model .back-text {
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .back-to-top-model:hover {
        width: 135px;
        padding: 0 18px;
        justify-content: center;
    }

    .back-to-top-model:hover .back-text {
        max-width: 100px;
        opacity: 1;
        margin-left: 8px;
    }
}