:root {
    --primary-color: #265397;
    --primary-dark: #1a3c6e;
    --primary-light: #eef3fa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f8faff;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.loader-wrapper {
    position: fixed;
    inset: 0px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    width: 250px;
}

.loader-logo {
    margin-bottom: 30px;
}

.animated-logo {
    width: 250px;
    height: auto;
}

.path-1 {
    animation: 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0s infinite normal none running revealLeft;
}

.path-2 {
    animation: 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s infinite normal none running revealRight;
}

@keyframes revealRight {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    15% {
        opacity: 1;
        transform: translateY(0px);
    }

    75% {
        opacity: 1;
        transform: translateY(0px);
    }

    90% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes revealLeft {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    15% {
        opacity: 0;
        transform: translateY(15px);
    }

    30% {
        opacity: 1;
        transform: translateY(0px);
    }

    75% {
        opacity: 1;
        transform: translateY(0px);
    }

    90% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.animated-logo {
    animation: 4s ease-in-out 0s infinite normal none running floatingLogo;
}

@keyframes floatingLogo {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.loader-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.loader-progress {
    width: 0px;
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    animation: 3s ease-out 0s 1 normal forwards running loadBar;
}

.loader-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes loadBar {
    0% {
        width: 0px;
    }

    100% {
        width: 100%;
    }
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: Cairo, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
}

body.overflow-hidden {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0px auto;
}

.navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    padding: 30px 0px;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    padding: 15px 0px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.logo span {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
}

.navbar.scrolled .logo span {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(0px);
    text-shadow: rgba(255, 255, 255, 0.8) 0px 0px 10px;
}

.navbar.scrolled .logo img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(85%) saturate(746%) hue-rotate(185deg) brightness(92%) contrast(90%);
}

.navbar.scrolled .logo span {
    color: var(--primary-color);
    text-shadow: rgba(255, 255, 255, 0.8) 0px 0px 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 10px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0px;
    width: 0px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--primary-color);
    text-shadow: none;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-dark);
}

.btn-primary {
    background: rgba(38, 83, 151, 0.8);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: rgba(38, 83, 151, 0.3) 0px 4px 15px;
    border: none;
    cursor: pointer;
    color: var(--white) !important;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: rgba(38, 83, 151, 0.4) 0px 6px 20px;
}

.btn-outline {
    border: 2px solid var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--white) !important;
}

.btn-outline:hover {
    background: var(--white);
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

.hero {
    position: relative;
    min-height: 100dvh;
    justify-content: center;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 160px;
    contain: layout;
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 83, 151, 0.9) 0%, rgba(17, 17, 17, 0.7) 100%);
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    min-height: 400px;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 46px;
}

.hero-badge p {
    font-weight: 600;
    line-height: 1.2;
    opacity: 1;
    color: var(--white);
    font-size: 0.95rem !important;
    margin: 0px !important;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 10px 30px;
    min-height: 2.4em;
}

.hero-content h1 span {
    display: inline-block;
    color: var(--white);
    -webkit-text-stroke: 0px;
    position: relative;
}

.hero-content h1 span::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 100%;
    height: 15px;
    background: var(--primary-color);
    z-index: -1;
    opacity: 0.6;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 45px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-btns a {
    width: 15rem;
    text-align: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    gap: 40px;
}

.hero-stats-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 350px;
    margin-left: 50px;
    position: relative;
}

.h-stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    padding: 22px;
    border-radius: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-image: initial;
    border-left: 4px solid var(--primary-color);
    text-align: center;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.h-stat-box:nth-child(1) {
    align-self: flex-start;
}

.h-stat-box:nth-child(2) {
    align-self: flex-end;
}

.h-stat-box:nth-child(3) {
    align-self: center;
}

.h-stat-box:nth-child(1).revealed {
    transform: translate3d(20px, 0px, 0px) rotate(-2deg) !important;
}

.h-stat-box:nth-child(2).revealed {
    transform: translate3d(-40px, 0px, 0px) rotate(3deg) !important;
}

.h-stat-box:nth-child(3).revealed {
    transform: translate3d(10px, 0px, 0px) rotate(345deg) !important;
}

.h-stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 50px;
    z-index: 10;
    transform: scale(1.1) rotate(0deg) !important;
}

.h-stat-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.h-stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 600;
    color: var(--white);
    margin: 0px !important;
}

section {
    opacity: 1;
    overflow: hidden;
}

section .container {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

section.reveal-down .container {
    transform: translate3d(0px, 25px, 0px);
}

section.reveal-up .container {
    transform: translate3d(0px, -25px, 0px);
}

section.section-active .container {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}

#hero .container {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.reveal-item {
    opacity: 0.4;
    filter: blur(8px);
    transition: 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.9s ease-out;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
}

section.reveal-down .reveal-item {
    transform: translate3d(0px, 20px, 0px) scale(0.99);
}

section.reveal-up .reveal-item {
    transform: translate3d(0px, -20px, 0px) scale(0.99);
}

.reveal-item.revealed {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0px, 0px, 0px) scale(1) !important;
}

.hero-content p.reveal-item.revealed {
    opacity: 0.9;
}

.navbar .logo img {
    transition-delay: 0.1s;
}

.navbar .logo span {
    transition-delay: 0.3s;
}

.navbar .nav-links a:nth-child(1) {
    transition-delay: 0.5s;
}

.navbar .nav-links a:nth-child(2) {
    transition-delay: 0.6s;
}

.navbar .nav-links a:nth-child(3) {
    transition-delay: 0.7s;
}

.navbar .nav-links a:nth-child(4) {
    transition-delay: 0.8s;
}

.navbar .nav-links a:nth-child(5) {
    transition-delay: 0.9s;
}

.navbar .nav-links a:nth-child(6) {
    transition-delay: 1s;
}

.navbar .nav-links a:nth-child(7) {
    transition-delay: 1.1s;
}

.navbar .logo img, .navbar .logo span, .navbar .nav-links a {
    opacity: 0;
    transform: translateY(-15px);
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.revealed .logo img, .navbar.revealed .logo span, .navbar.revealed .nav-links a {
    opacity: 1;
    transform: translateY(0px);
}

.scroll-indicator {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: 0.8s ease-out;
}

.scroll-indicator.revealed {
    opacity: 0.7;
    transform: translateX(-50%) translateY(0px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: 2s ease 0s infinite normal none running scrollWheel;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

.about {
    background: var(--white);
    position: relative;
    overflow: visible;
    padding-top: 20px;
    margin-bottom: 80px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.about-bg-decoration {
    position: absolute;
    left: -100px;
    top: 0px;
    width: 100%;
    height: 130%;
    background-image: url("assets/bg-obj/about-us-background.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to right top, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0) 80%);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
    border-right: 4px solid var(--primary-color);
    padding-right: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.a-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.f-icon {
    font-size: 1.5rem;
    background: var(--primary-light);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.a-feature:hover .f-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
}

.f-text h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.f-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.description {
    color: var(--text-muted);
    line-height: 1.8;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0px auto;
}

.image-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 30px 60px;
}

.image-inner::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(38, 83, 151, 0.25) 100%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.about-image:hover .image-inner img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: rgba(38, 83, 151, 0.3) 0px 10px 20px;
}

.exp-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 1rem;
    font-weight: 900;
}

.section-header {
    position: relative;
    margin-bottom: 30px;
}

.section-header::after {
    display: none;
}

.sub-title {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.25rem;
    background: var(--primary-light);
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-block;
}

.section-header > * {
    position: relative;
    z-index: 1;
}

.section-header.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .lead-text {
        border-right: none;
        border-bottom: 4px solid var(--primary-color);
        padding-right: 0px;
        padding-bottom: 15px;
    }

    .a-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image {
        max-width: 100%;
    }

    .image-inner {
        height: 400px;
    }
}

.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("assets/bg-obj/hero.webp") 0% 0% / cover;
    opacity: 0.05;
    pointer-events: none;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--white);
    color: var(--primary-color);
    transform: rotateY(180deg);
}

.stat-info h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats {
        padding: 80px 0px;
    }

    .stats-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 30px 15px;
    }

    .stat-info h3 {
        font-size: 2rem;
    }
}

.services {
    background: rgb(252, 253, 254);
    padding: 120px 0px;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(38, 83, 151, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.services::after {
    content: "";
    position: absolute;
    inset: 0px;
    background-image: radial-gradient(rgba(38, 83, 151, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(transparent, black 10%, black 90%, transparent);
    pointer-events: none;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    counter-reset: service-count 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card.modern {
    background: rgb(26, 60, 110);
    color: var(--white);
    padding: 30px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 250px;
    counter-increment: service-count 1;
}

.service-card.modern::after {
    content: "";
    position: absolute;
    inset: 0px;
    background-size: cover;
    background-position: center center;
    opacity: 0.65;
    transition: 0.6s;
    z-index: -1;
    transform: scale(1);
}

.service-bg-overlay {
    position: absolute;
    inset: 0px;
    background: radial-gradient(circle, rgba(26, 60, 110, 0.45) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 1;
    transition: 0.6s;
    z-index: 0;
}

.service-card.modern:hover::after {
    opacity: 0.85;
    transform: scale(1.08);
}

.service-card.modern:hover .service-bg-overlay {
    background: radial-gradient(circle, rgba(26, 60, 110, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.s-mobile-ads::after {
    background-image: url("assets/services/service_mobile_ads.webp");
}

.s-led-clarity::after {
    background-image: url("assets/services/service_led_clarity.webp");
}

.s-campaign-mgmt::after {
    background-image: url("assets/services/service_campaign_mgmt.webp");
}

.s-gps-reports::after {
    background-image: url("assets/services/service_gps_reports.webp");
}

.s-direct-engagement::after {
    background-image: url("assets/services/service_direct_engagement.webp");
}

.s-visual-design::after {
    background-image: url("assets/services/service_visual_design.webp");
}

.service-card.modern h3 {
    font-size: 1.35rem;
    font-weight: 850;
    margin-bottom: 12px;
    color: var(--white);
    text-shadow: rgba(255, 255, 255, 0.4) 0px 0px 15px, rgba(0, 0, 0, 0.9) 0px 2px 5px;
    filter: drop-shadow(rgba(255, 255, 255, 0.2) 0px 0px 5px);
}

.service-card.modern p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 3px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.service-card.modern .card-features span {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 10px;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px;
}

.service-card.modern:hover h3, .service-card.modern:hover .card-features span {
    color: var(--white) !important;
}

.service-card.modern:hover .card-features span {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card.modern .card-decor {
    color: rgba(255, 255, 255, 0.1);
}

.service-card.modern:hover .card-decor {
    color: rgba(255, 255, 255, 0.2) !important;
}

.service-card.modern::before {
    content: "0" counter(service-count);
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(38, 83, 151, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: 0.6s;
}

.service-card.modern:hover {
    transform: translateY(-12px);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 40px 70px;
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card.modern:hover::before {
    transform: translateY(-10px);
    color: rgba(255, 255, 255, 0.1);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.card-features span {
    background: rgba(38, 83, 151, 0.04);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(38, 83, 151, 0.06);
    transition: var(--transition);
}

.card-features span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.service-card.modern:hover .card-features span {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.service-card.modern:hover .card-features span::before {
    background: var(--white);
}

.service-card.modern.blue .card-features span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-card.modern.blue .card-features span::before {
    background: var(--white);
}

.service-card.modern.blue:hover .card-features span {
    background: var(--white);
    color: var(--primary-color);
}

.service-card.modern.blue:hover .card-features span::before {
    background: var(--primary-color);
}

.card-decor {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 10rem;
    color: rgba(38, 83, 151, 0.03);
    pointer-events: none;
    z-index: 0;
    transition: var(--transition);
    transform: rotate(-10deg);
}

.service-card.modern.blue .card-decor {
    color: rgba(255, 255, 255, 0.05);
}

.service-card.modern:hover .card-decor {
    transform: scale(1.1) rotate(0deg);
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.modern:nth-child(1), .service-card.modern:nth-child(4) {
        grid-column: span 1;
    }

    .service-card.modern {
        padding: 30px;
    }

    .card-features span {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

.why-us {
    padding: 100px 0px;
    background: var(--white);
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 30px;
}

.main-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: rgba(38, 83, 151, 0.15) 0px 40px 80px;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    transition: var(--transition);
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-badge span {
    font-weight: 800;
    color: var(--text-dark);
}

.floating-badge.top {
    top: 10%;
    left: -20px;
}

.floating-badge.bottom {
    bottom: 10%;
    right: -20px;
}

.why-image:hover .floating-badge {
    transform: translateY(-5px);
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    border-radius: 25px;
    background: var(--bg-light);
    transition: var(--transition);
}

.why-item:hover {
    background: var(--white);
    box-shadow: rgba(38, 83, 151, 0.08) 0px 20px 40px;
    transform: translateX(-10px);
}

.item-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px;
}

.item-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 800;
}

.item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-image {
        order: 2;
    }

    .floating-badge {
        padding: 15px 20px;
    }
}

.contact {
    padding: 120px 0px;
    background: var(--bg-light);
}

.contact {
    padding: 120px 0px 60px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-content-center {
    max-width: 900px;
    margin: 0px auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0px;
}

.contact-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 40px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    cursor: pointer;
}

.contact-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: rgba(38, 83, 151, 0.15) 0px 20px 50px;
    border-color: rgba(38, 83, 151, 0.2);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(38, 83, 151, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: 0.3s;
}

.contact-card-modern:hover .icon-circle {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.contact-card-modern h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.contact-card-modern p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.social-connect {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-connect h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.social-icons-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 20px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 1.1rem;
}

.social-btn i {
    font-size: 1.4rem;
}

.social-btn:hover {
    transform: translateY(-5px);
    color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 25px;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, rgb(240, 148, 51), rgb(230, 104, 60), rgb(220, 39, 67), rgb(204, 35, 102), rgb(188, 24, 136));
}

.social-btn.tiktok:hover {
    background: rgb(0, 0, 0);
}

.social-btn.whatsapp:hover {
    background: rgb(37, 211, 102);
}

.footer-note {
    margin-top: 80px;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-cars-decor {
    position: absolute;
    inset: 0px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.car-decor {
    position: absolute;
    width: 280px;
    opacity: 0.5;
}

.car-1 {
    top: -17px;
    left: -24px;
    width: 200px;
    transform: rotate(25deg);
}

.car-2 {
    bottom: -20px;
    width: 350px;
    right: 100px;
    transform: rotate(-15deg);
}

.car-3 {
    top: 25%;
    right: -50px;
    transform: rotate(45deg) scale(0.8);
}

@keyframes carFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--r));
    }

    50% {
        transform: translateY(-15px) rotate(var(--r));
    }
}

.car-1 {
    --r: 159deg;
    animation: 8s ease-in-out 0s infinite alternate none running carFloat;
}

.car-2 {
    --r: 100deg;
    animation: 10s ease-in-out 0s infinite alternate-reverse none running carFloat;
}

.car-3 {
    --r: 7deg;
    animation: 12s ease-in-out 0s infinite alternate none running carFloat;
}

@media (max-width: 991px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-info .section-header h2 {
        font-size: 2.22rem;
    }
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-stats-side {
        display: none;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 100%;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        gap: 30px;
        display: flex !important;
    }

    .nav-links.active {
        right: 0px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .nav-links a {
        font-size: 1.8rem;
        color: var(--text-dark) !important;
        text-shadow: none !important;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.team {
    padding: 80px 0px;
    background: rgb(251, 253, 255);
    position: relative;
}

.team::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(38, 83, 151, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    align-items: stretch;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 25px;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: rgba(38, 83, 151, 0.1) 0px 30px 60px;
    border-color: rgba(38, 83, 151, 0.1);
}

.member-image {
    width: 100%;
    height: 275px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"%23265397\" opacity=\"0.2\"><path d=\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\"/></svg>") center center / 40px no-repeat rgb(240, 243, 247);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.member-image::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--primary-color);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
    transition: 0.4s;
}

.team-card:hover .member-image::before {
    opacity: 0.1;
}

.member-image::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to top, rgba(38, 83, 151, 0.4) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.team-card:hover .member-image img {
    transform: scale(1.1) rotate(1deg);
}

.member-overlay {
    position: absolute;
    inset: 0px;
    background: rgba(38, 83, 151, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: 0.4s;
}

.team-card:hover .member-overlay {
    opacity: 0.25;
}

.member-info {
    text-align: center;
}

.role {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.drivers-block {
    background: linear-gradient(135deg, rgb(26, 60, 110) 0%, rgb(38, 83, 151) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.drivers-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drivers-text {
    margin-bottom: 30px;
}

.drivers-text h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-align: center;
}

.drivers-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}

.drivers-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    flex-grow: 1;
}

.mini-driver {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 175px;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"white\" opacity=\"0.2\"><path d=\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\"/></svg>") center center / 30px no-repeat rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-driver::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--primary-color);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.mini-driver img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.mini-driver:hover img {
    transform: scale(1.1);
}

.more-drivers {
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
}

.more-drivers:hover {
    background: rgb(240, 247, 255);
    transform: scale(0.98);
}

.more-content {
    text-align: center;
}

.more-content .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.more-content .label {
    font-size: 0.9rem;
    font-weight: 800;
}

.more-drivers i {
    font-size: 1.2rem;
    margin-top: 10px;
    animation: 2s ease 0s infinite normal none running bounceLeft;
}

@keyframes bounceLeft {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0px);
    }

    40% {
        transform: translateX(-5px);
    }

    60% {
        transform: translateX(-3px);
    }
}

@media (max-width: 1200px) {
    .container {
        width: 92%;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-stats-side {
        width: 300px;
        margin-left: 20px;
    }

    .h-stat-num {
        font-size: 2.2rem;
    }

    .about-wrapper {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 40px;
        flex: 1 1 0%;
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .hero-stats-side {
        width: 100%;
        flex-flow: wrap;
        justify-content: center;
        margin-left: 0px;
        margin-top: 60px;
        gap: 20px;
    }

    .h-stat-box {
        width: calc(50% - 15px);
        min-width: 140px;
        border-right: none;
        border-bottom: 2px solid var(--primary-color);
        padding: 15px;
        align-self: center !important;
        transform: none !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-image {
        max-width: 500px;
    }

    .about-content {
        align-items: center;
    }

    .lead-text {
        border-right: none;
        border-bottom: 4px solid var(--primary-color);
        padding-right: 0px;
        padding-bottom: 10px;
    }

    .a-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .experience-badge {
        right: -30px;
        bottom: -20px;
    }

    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-stack {
        padding: 20px;
        max-width: 500px;
        margin: 0px auto;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header.navbar {
        padding: 20px 0px;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border-bottom: none;
    }

    header.navbar.scrolled {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        padding: 12px 0px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .logo span {
        color: var(--white);
    }

    .navbar.scrolled .logo span {
        color: var(--primary-color);
        opacity: 1;
        transform: translateX(0px);
    }

    .logo img {
        filter: none;
    }

    .navbar.scrolled .logo img {
        filter: brightness(0) saturate(100%) invert(26%) sepia(85%) saturate(746%) hue-rotate(185deg) brightness(92%) contrast(90%);
    }

    .menu-toggle span {
        background: var(--white);
    }

    .navbar.scrolled .menu-toggle span {
        background: var(--primary-color);
    }

    .hero {
        padding-top: 80px;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-btns a {
        width: 100%;
    }

    .h-stat-box {
        width: calc(50% - 15px);
        min-width: 140px;
        padding: 15px;
    }

    .h-stat-num {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.modern {
        min-height: auto;
        padding: 35px 25px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header.navbar {
        padding: 12px 0px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
        word-break: keep-all;
    }

    .hero-badge {
        padding: 6px 16px;
        margin-bottom: 15px;
    }

    .hero-badge p {
        font-size: 0.8rem !important;
    }

    .hero-btns {
        gap: 12px;
    }

    .h-stat-box {
        width: 100%;
        padding: 12px;
    }

    .h-stat-num {
        font-size: 1.6rem;
    }

    .hero-scroll {
        transform: scale(0.8);
        bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .sub-title {
        font-size: 1rem;
    }

    .image-stack .main-img {
        border-radius: 20px;
    }

    .floating-badge {
        padding: 12px 15px;
        font-size: 0.8rem;
    }

    .floating-badge.top {
        left: -10px;
    }

    .floating-badge.bottom {
        right: -10px;
    }
}
