@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --sti-blue-900: #00224b;
    --sti-blue-800: #003b7a;
    --sti-blue-700: #004d9e;
    --sti-blue-600: #005bac;
    --sti-blue-500: #0d6efd;
    --sti-blue-100: #ebf4fe;
    --sti-blue-50: #f4f8fd;
    --sti-yellow-500: #ffc72c;
    --sti-yellow-600: #e5b017;
    --sti-yellow-100: #fff9e6;
    --dark-900: #0f172a;
    --dark-800: #1e293b;
    --dark-700: #334155;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-200: #e2e8f0;
    --gray-100: #f8fafc;
    --white: #ffffff;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 45, 98, 0.08), 0 8px 10px -6px rgba(0, 45, 98, 0.04);
    --shadow-lg: 0 20px 35px -5px rgba(0, 45, 98, 0.12), 0 10px 15px -5px rgba(0, 45, 98, 0.06);
    --shadow-xl: 0 25px 50px -12px rgba(0, 34, 75, 0.22);
    --shadow-hover: 0 22px 45px -8px rgba(0, 91, 172, 0.25);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-800);
    background-color: #fbfcfe;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.main-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-normal);
    z-index: 1040;
}

.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 34, 75, 0.08);
}

.brand-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sti-blue-800);
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.brand-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link-custom {
    color: var(--dark-700);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link-custom:hover {
    color: var(--sti-blue-600);
    background-color: var(--sti-blue-50);
}

.btn-nav-login {
    background: var(--sti-yellow-500);
    color: var(--sti-blue-900);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 9px 24px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 4px 14px rgba(255, 199, 44, 0.4);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-nav-login:hover {
    background: #ffcf40;
    color: var(--sti-blue-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 199, 44, 0.55);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 34, 75, 0.95) 0%, rgba(0, 69, 142, 0.92) 50%, rgba(0, 91, 172, 0.85) 100%),
                url("../images/sti-building-bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    padding-top: 130px;
    padding-bottom: 0;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.hero-container {
    width: 100%;
}

.hero-row {
    align-items: flex-end;
}

.hero-left-content {
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-badge i {
    color: var(--sti-yellow-500);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title .text-gold {
    color: var(--sti-yellow-500);
    display: block;
    text-shadow: 0 2px 15px rgba(255, 199, 44, 0.35);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 540px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-hero-primary {
    background: var(--sti-yellow-500);
    color: var(--sti-blue-900);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 34px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 10px 25px rgba(255, 199, 44, 0.45);
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: #ffcf40;
    color: var(--sti-blue-900);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 199, 44, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
}

/* Feature Pills in Hero */
.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.hero-feature-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* Hero Image presentation grounded to bottom */
.hero-image-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    margin-bottom: 0;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 0;
    overflow: visible;
}

.hero-main-img {
    width: 100%;
    max-width: 680px;
    height: auto;
    display: block;
    margin-bottom: -2px;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.4));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.85) 92%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.85) 92%, rgba(0,0,0,0) 100%);
    transition: transform var(--transition-normal);
}

.hero-main-img:hover {
    transform: scale(1.02);
}

.hero-bottom-blend {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    background: linear-gradient(to top, rgba(0, 34, 75, 0.95) 0%, rgba(0, 34, 75, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

/* ==========================================================================
   QUICK STATS / FEATURES BAR
   ========================================================================== */
.stats-bar-wrapper {
    position: relative;
    z-index: 30;
    margin-top: -50px;
}

.stats-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 30px 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 15px;
    transition: transform var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.stat-item:hover .stat-icon-box {
    transform: scale(1.08) rotate(3deg);
}

.stat-icon-box.bg-1 {
    background: #e0f2fe;
    color: #0284c7;
}

.stat-icon-box.bg-2 {
    background: #fef3c7;
    color: #d97706;
}

.stat-icon-box.bg-3 {
    background: #dcfce7;
    color: #16a34a;
}

.stat-icon-box.bg-4 {
    background: #ede9fe;
    color: #7c3aed;
}

.stat-number {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark-900);
    line-height: 1.1;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTION HEADINGS & COMMONS
   ========================================================================== */
.section-wrapper {
    padding: 95px 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sti-blue-50);
    color: var(--sti-blue-600);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-900);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-title-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-accent-line {
    width: 60px;
    height: 4px;
    background: var(--sti-blue-600);
    border-radius: var(--radius-full);
    margin: 16px auto 20px;
}

/* ==========================================================================
   FEATURED BOOKS CARDS
   ========================================================================== */
.book-card-modern {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.book-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 91, 172, 0.25);
}

.book-cover-container {
    position: relative;
    height: 290px;
    background: #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.book-card-modern:hover .book-cover-img {
    transform: scale(1.06);
}

.book-badge-status {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(22, 163, 74, 0.92);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 5;
    letter-spacing: 0.3px;
}

.book-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 34, 75, 0.92) 0%, rgba(0, 34, 75, 0.7) 60%, rgba(0, 34, 75, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 10;
}

.book-card-modern:hover .book-card-overlay {
    opacity: 1;
}

.btn-book-action {
    background: var(--sti-yellow-500);
    color: var(--sti-blue-900);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 4px 14px rgba(255, 199, 44, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.btn-book-action:hover {
    background: #ffcf40;
    color: var(--sti-blue-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 199, 44, 0.55);
}

.book-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.book-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-author {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.book-footer-btn {
    margin-top: auto;
}

.btn-card-login {
    background: var(--sti-blue-50);
    color: var(--sti-blue-600);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(0, 91, 172, 0.15);
    transition: all var(--transition-fast);
}

.btn-card-login:hover {
    background: var(--sti-blue-600);
    color: var(--white);
    border-color: var(--sti-blue-600);
}

/* ==========================================================================
   NEW ARRIVALS CAROUSEL / SLIDER
   ========================================================================== */
.slider-container {
    position: relative;
    padding: 10px 4px 20px;
}

.slider-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-scroll::-webkit-scrollbar {
    display: none;
}

.slider-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.btn-slider-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--sti-blue-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-slider-nav:hover {
    background: var(--sti-blue-600);
    color: var(--white);
    border-color: var(--sti-blue-600);
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   LIBRARY SERVICES
   ========================================================================== */
.services-section {
    background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
}

.service-card-modern {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    padding: 32px 26px;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sti-blue-600), var(--sti-yellow-500));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 91, 172, 0.2);
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 22px;
    transition: all var(--transition-fast);
}

.service-card-modern:hover .service-icon-box {
    transform: scale(1.1) rotate(4deg);
}

.service-icon-box.blue { background: #e0f2fe; color: #0284c7; }
.service-icon-box.emerald { background: #d1fae5; color: #059669; }
.service-icon-box.indigo { background: #e0e7ff; color: #4338ca; }
.service-icon-box.amber { background: #fef3c7; color: #d97706; }
.service-icon-box.rose { background: #ffe4e6; color: #e11d48; }
.service-icon-box.purple { background: #f3e8ff; color: #7e22ce; }

.service-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

/* Service CTA Box */
.service-cta-banner {
    background: linear-gradient(135deg, var(--sti-blue-900) 0%, var(--sti-blue-700) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.service-cta-text h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.service-cta-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-wrap:hover .about-img {
    transform: scale(1.04);
}

.about-badge-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-800);
    margin-bottom: 16px;
}

.about-feature-item i {
    font-size: 1.25rem;
    color: #16a34a;
}

/* ==========================================================================
   FOOTER & BACK TO TOP
   ========================================================================== */
.footer-main {
    background: var(--dark-900);
    color: var(--gray-400);
    padding-top: 80px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h4 {
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2.5px;
    background: var(--sti-yellow-500);
    border-radius: var(--radius-full);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link-item {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link-item:hover {
    color: var(--sti-yellow-500);
    transform: translateX(5px);
}

.footer-hours-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 25px;
    font-size: 0.88rem;
}

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sti-blue-600);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 25px rgba(0, 91, 172, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 999;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-back-to-top:hover {
    background: var(--sti-yellow-500);
    color: var(--sti-blue-900);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(255, 199, 44, 0.5);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 0;
        text-align: center;
    }

    .hero-left-content {
        padding-bottom: 25px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-feature-pills {
        justify-content: center;
    }

    .hero-image-col {
        justify-content: center;
        margin-top: 10px;
    }

    .hero-image-wrap {
        justify-content: center;
    }

    .hero-main-img {
        max-width: 520px;
    }

    .stats-bar-wrapper {
        margin-top: -30px;
    }
}

@media (max-width: 767.98px) {
    .stats-card {
        padding: 20px 10px;
    }
    
    .section-wrapper {
        padding: 65px 0;
    }

    .hero-main-img {
        max-width: 100%;
    }
}
