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

:root {
    --primary-color: #d72631;
    --secondary-color: #243c5a;
    --accent-color: #f1f5f9;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --black: #0f172a;
    --glass: rgba(255, 255, 255, 0.97);
    --glass-border: rgba(255, 255, 255, 0.3);
    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --header-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   REUSABLE COMPONENTS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white) !important;
    box-shadow: 0 4px 14px 0 rgba(215, 38, 49, 0.39);
}

.btn-primary:hover {
    background-color: #b91d27;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 38, 49, 0.5);
    color: var(--white) !important;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white) !important;
}

.btn-secondary:hover {
    background-color: #1a2c42;
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* ============================================
   NAVBAR – FLOATING & ROUNDED (MetaMask Style)
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    pointer-events: none;
}

header .container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 10px 28px;
    box-shadow: var(--header-shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    pointer-events: auto;
    transform: translateZ(0);
}

header.scrolled {
    padding: 12px 0;
}

.logo img {
    height: 42px;
    display: block;
    transition: var(--transition);
}

/* Desktop Nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 9px 18px;
    border-radius: 50px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

/* The Contact button in nav must always be white */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary.active {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 22px;
    box-shadow: 0 4px 14px rgba(215, 38, 49, 0.35);
}

.nav-links a.btn-primary:hover {
    background-color: #b91d27;
    transform: translateY(-2px);
}

/* ============================================
   MOBILE HAMBURGER BUTTON
   ============================================ */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 1001;
    padding: 4px 8px;
    transition: var(--transition);
    line-height: 1;
}

/* ============================================
   MOBILE NAV MODAL
   ============================================ */

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(36, 60, 90, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-box {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 88%;
    max-width: 380px;
    background: var(--white);
    border-radius: 20px;
    padding: 50px 36px 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-box.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.mobile-nav-list li a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-nav-list li a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.mobile-nav-list li a i {
    font-size: 0.75rem;
    opacity: 0.5;
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ============================================
   HERO – VIDEO BACKGROUND
   ============================================ */

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(36, 60, 90, 0.92) 0%, rgba(36, 60, 90, 0.55) 100%);
    z-index: 1;
}

.hero-split .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-text {
    max-width: 750px;
    text-align: left;
    margin-left: 0;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   STATS STRIPE
   ============================================ */

.stripe-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.stat-card {
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card.large {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--primary-color), #ff4b57);
    color: var(--white);
}

.stat-card.light {
    background: var(--accent-color);
    color: var(--text-dark);
}

.stat-card.dark {
    background: var(--secondary-color);
    color: var(--white);
}

.stat-card .val {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-card .label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--accent-color);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .services-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .services-preview-grid {
        grid-template-columns: 1fr;
    }
    .about-text h2 {
        font-size: 2rem !important;
    }
    
        .about-image {
        max-width: 90% !important;
        margin: 0 auto !important;
    }
}

/* ============================================
   BLOG STYLES
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8edf2;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-card-img {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.4;
    flex-grow: 1;
}



@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual Blog styles moved to their respective HTML files for better autonomy */

/* ============================================
   CERTIFICATIONS (LANK BRANDED)
   ============================================ */

.cert-vilmar-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.experience-card {
    border-radius: 30px;
    padding: 60px 40px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.experience-card .years {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.experience-card .label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 12px;
    display: block;
    color: rgba(255, 255, 255, 0.85);
}

.cert-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.cert-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.cert-list-item i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ============================================
   CLIENT CAROUSEL
   ============================================ */

.clients-carousel {
    overflow: hidden;
    padding: 20px 0 40px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.client-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px 20px;
    width: 220px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e8edf2;
    flex-shrink: 0;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.client-card img {
    max-height: 70px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.client-card span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

/* 12 cards × 220px + 30px gaps = 12×250 = 3000px */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 12 - 30px * 12));
    }
}

/* ============================================
   WHATSAPP BUBBLE
   ============================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    background-color: #128c7e;
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 28px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-bottom: 14px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-nav-list a:hover {
    color: var(--white);
    transform: translateX(6px);
}

.footer-nav-list a i {
    font-size: 0.95rem;
    color: var(--white);
    width: 16px;
    flex-shrink: 0;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    align-items: flex-start;
}

.contact-info-list li i {
    color: var(--white);
    font-size: 1rem;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--white);
    color: var(--secondary-color) !important;
    border-radius: 50%;
    font-size: 1.15rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.social-links a:hover {
    transform: scale(1.12) translateY(-3px);
    background-color: var(--primary-color);
    color: var(--white) !important;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.developed-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.developed-by span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.developed-by img {
    height: 82px;
    object-fit: contain;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE – 1200px (Compact Nav)
   ============================================ */

@media (max-width: 1200px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stripe-split {
        gap: 50px;
    }
}

/* ============================================
   RESPONSIVE – 1024px
   ============================================ */

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

    .cert-vilmar-container {
        grid-template-columns: 260px 1fr;
        gap: 40px;
    }

    .nav-links a {
        font-size: 0.78rem;
        padding: 8px 13px;
    }
}

/* ============================================
   RESPONSIVE – 900px (Tablet breakpoint)
   ============================================ */

@media (max-width: 900px) {

    /* Hide desktop nav, show hamburger */
    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Hero */
    .hero-split {
        min-height: 100vh;
        align-items: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    /* Stats stripe */
    .stripe-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card.large {
        grid-row: unset;
        grid-column: 1 / -1;
    }

    /* Certifications */
    .cert-vilmar-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-card .years {
        font-size: 5rem;
    }

    .cert-list-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    /* Footer grid */
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .developed-by {
        align-items: center;
    }
}

/* ============================================
   RESPONSIVE – 640px (Mobile)
   ============================================ */

@media (max-width: 640px) {
    header {
        padding: 14px 0;
    }

    header .container {
        width: 92% !important;
        padding: 10px 20px;
        border-radius: 14px;
        margin: 0 auto !important;
    }

    .logo img {
        height: 36px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-btns .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card.large {
        grid-column: unset;
    }

    .stat-card .val {
        font-size: 2.2rem;
    }

    /* Service cards grid fix */
    [style*="grid-template-columns: repeat(auto-fit, minmax(350px"] {
        grid-template-columns: 1fr !important;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 2.2rem !important;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Footer */
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        padding: 24px 0;
        gap: 18px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        text-align: center;
    }

    .developed-by img {
        height: 44px;
    }

    /* Mobile menu adjustments */
    .mobile-nav-box {
        top: 80px;
        width: 92%;
        padding: 44px 28px 28px;
    }

    /* Carousel card size */
    .client-card {
        width: 180px;
        height: 140px;
        padding: 20px 16px 14px;
    }

    .client-card img {
        max-height: 55px;
        max-width: 130px;
    }

    /* Cert buttons */
    .cert-info-box .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-top: 12px;
    }

    /* Contact form grid */
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* WhatsApp */
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   RESPONSIVE – 400px (Small phones)
   ============================================ */

@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .experience-card .years {
        font-size: 4rem;
    }
}