/* ==========================================================================
   TASKTEL DESIGN SYSTEM & LAYOUT STYLES
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-blue: #0b4975;
    --primary-blue-hover: #073556;
    --accent-blue: #1665a0;
    --accent-blue-light: #2589cf;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-green: #10b981;

    /* Typography */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --anim-duration: 0.85s;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   NAVBAR & HEADER
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1.1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 48px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
    transition: transform 0.25s ease;
    filter: drop-shadow(0 2px 6px rgba(11, 73, 117, 0.08));
}

.logo:hover .header-logo-img {
    transform: scale(1.04);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.6rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f1f5f9;
    color: var(--accent-blue);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(11, 73, 117, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 73, 117, 0.35);
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ==========================================================================
   ABOUT US SECTION (FIRST SECTION)
   ========================================================================== */
.about-section {
    padding: 4.5rem 1.5rem 6rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(238, 242, 255, 0.6) 0%, rgba(248, 250, 252, 1) 90%);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ==========================================================================
   LEFT COLUMN: IMAGES & STATS CARD
   ========================================================================== */
.about-left-col {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    padding-top: 1rem;
}

/* Stat Card (Top Right) */
.stat-card {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 5;
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.3rem;
}

.trend-icon-wrap {
    width: 32px;
    height: 32px;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trend-svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

.stat-divider {
    height: 2px;
    background: linear-gradient(90deg, #60a5fa 0%, #e2e8f0 100%);
    margin: 1.2rem 0;
    border-radius: 2px;
}

/* Avatar Stack */
.avatar-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    transition: transform 0.2s ease;
}

.avatar:hover {
    transform: scale(1.18);
    z-index: 10;
}

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

.badge-avatar.bg-blue {
    background-color: #3b82f6;
}

.badge-avatar.bg-blue-dark {
    background-color: #1d4ed8;
}

/* Image Containers */
.image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
}

.image-box:hover {
    transform: scale(1.025);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.15);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Meeting Room Image (Bottom Left) */
.meeting-image-box {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 380px;
    align-self: end;
}

/* Dashboard Monitor Image (Bottom Right) */
.dashboard-image-box {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 280px;
}

/* Overlay Glow Effect */
.image-overlay-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* ==========================================================================
   RIGHT COLUMN: CONTENT STYLES
   ========================================================================== */
.about-right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow-tag {
    color: var(--accent-blue);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.main-heading {
    font-size: 3.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    letter-spacing: -1px;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.paragraph {
    font-size: 1.05rem;
    color:#0f172a;
    line-height: 1.7;
    font-weight: 400;
}

/* Demo Controls Bar */
.demo-controls {
    margin-top: 2.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-blue);
    border: 1px solid var(--border-color);
    padding: 0.65rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.btn-secondary i {
    transition: transform 0.4s ease;
}

.btn-secondary:hover i {
    transform: rotate(180deg);
}

.anim-status-badge {
    font-size: 0.82rem;
    color: var(--success-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}


/* ==========================================================================
   ENTRANCE ANIMATION ENGINE (LEFT & RIGHT SLIDE/FADE)
   ========================================================================== */

/* Left elements initial hidden state */
.animate-from-left {
    opacity: 0;
    transform: translateX(-90px);
    transition: opacity var(--anim-duration) var(--transition-smooth),
        transform var(--anim-duration) var(--transition-smooth);
    will-change: opacity, transform;
}

/* Right elements initial hidden state */
.animate-from-right {
    opacity: 0;
    transform: translateX(90px);
    transition: opacity var(--anim-duration) var(--transition-smooth),
        transform var(--anim-duration) var(--transition-smooth);
    will-change: opacity, transform;
}

/* Active / Triggered State */
.about-section.animated .animate-from-left,
.about-section.animated .animate-from-right {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.25s;
}

.delay-3 {
    transition-delay: 0.4s;
}

.delay-4 {
    transition-delay: 0.55s;
}

.delay-5 {
    transition-delay: 0.7s;
}

.delay-6 {
    transition-delay: 0.85s;
}

/* ==========================================================================
   SECTION 2: MISSION & VISION (CONNECTING PEOPLE)
   ========================================================================== */
.mission-vision-section {
    background: linear-gradient(135deg, #004bb4 0%, #002d72 100%);
    padding: 6rem 1.5rem 7rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.mv-container {
    max-width: 1320px;
    margin: 0 auto;
}

.mv-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 4.5rem;
}

.mv-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    white-space: nowrap;
}
.mv-subtitle {
    font-size: 1.15rem;
    color: rgba(224, 242, 254, 0.9);
    line-height: 1.65;
    font-weight: 400;
    white-space: normal;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Cards (Our Mission & Our Vision) */
.mv-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.2rem;
    color: var(--text-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
    position: relative;
    z-index: 5;
    min-height: 380px;
    justify-content: flex-start;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.35);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background-color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.card-eyebrow {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0284c7;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.card-desc {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.65;
    font-weight: 400;
}

/* =========================================================
   CENTER SHOWCASE - SINGLE 3D ROOM IMAGE
   ========================================================= */
.mv-center-showcase {
    position: relative;
    width: 100%;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.room-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.30));
    z-index: 2;
}

.room-image-wrapper::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.20) 0%, rgba(37, 99, 235, 0.10) 42%, transparent 72%);
    filter: blur(20px);
    z-index: -1;
    animation: roomGlow 5s ease-in-out infinite;
}

.room-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 20px;
    animation: roomFloat 5s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.room-image-wrapper:hover .room-img {
    transform: translateY(-8px) scale(1.025);
    filter: drop-shadow(0 20px 35px rgba(37, 99, 235, 0.18));
}

@keyframes roomFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes roomGlow {
    0%, 100% { transform: scale(0.92); opacity: 0.55; }
    50% { transform: scale(1.08); opacity: 0.90; }
}

/* Additional Animation Rules for Mission & Vision Section */
.animate-from-top {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity var(--anim-duration) var(--transition-smooth),
        transform var(--anim-duration) var(--transition-smooth);
    will-change: opacity, transform;
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity var(--anim-duration) var(--transition-smooth),
        transform var(--anim-duration) var(--transition-smooth);
    will-change: opacity, transform;
}

/* Section animated state */
.mission-vision-section.animated .animate-from-top,
.mission-vision-section.animated .animate-from-left,
.mission-vision-section.animated .animate-from-right,
.mission-vision-section.animated .animate-scale-up,
.clients-section.animated .animate-from-top,
.clients-section.animated .animate-scale-up {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* =========================================================
   MISSION & VISION RESPONSIVE LAYOUT
========================================================= */
@media (max-width: 1100px) {
    .mission-vision-section { padding: 5.5rem 1.25rem 6.5rem; }
    .mv-grid { grid-template-columns: 1fr 1.1fr 1fr; gap: 1.35rem; }
    .mv-card { min-height: 360px; padding: 2.4rem 1.7rem; }
    .card-title { font-size: 1.6rem; }
    .card-desc { font-size: 0.96rem; }
    .mv-center-showcase { min-height: 350px; }
}

@media (max-width: 900px) {
    .mv-header { margin-bottom: 3.5rem; }
    .mv-title { font-size: 2rem; }
    .mv-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 720px; margin: 0 auto; }
    .mv-card:first-child { order: 1; }
    .mv-center-showcase { order: 2; min-height: 330px; }
    .mv-card:last-child { order: 3; }
    .mv-card { min-height: auto; }
    .room-image-wrapper { max-width: 440px; }
}

@media (max-width: 768px) {
    .mission-vision-section { padding: 4.5rem 1rem 5.5rem; }
    .mv-header { margin-bottom: 3rem; }
    .mv-title { font-size: 1.75rem; white-space: normal; }
    .mv-subtitle { font-size: 1rem; }
    .mv-grid { gap: 1.5rem; }
    .mv-card { border-radius: 20px; padding: 2rem 1.5rem; }
    .mv-center-showcase { min-height: 300px; }
    .room-image-wrapper { max-width: 360px; }
    .room-image-wrapper::before { width: 220px; height: 220px; }
}

@media (max-width: 480px) {
    .mv-title { font-size: 1.5rem; }
    .mv-card { padding: 1.7rem 1.25rem; }
    .mv-center-showcase { min-height: 250px; }
    .room-image-wrapper { max-width: 310px; }
    .room-image-wrapper::before { width: 190px; height: 190px; }
}

/* =========================================================
   MILESTONES — PROFESSIONAL TIMELINE
========================================================= */

.milestones-section {
    position: relative;
    width: 100%;
    padding: 75px 0 90px;
    background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 45%, #f5f9ff 100%);
    overflow: hidden;
}

/* Subtle decorative orbs */
.milestones-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(23, 105, 224, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.milestones-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(172, 217, 0, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.milestones-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}


/* =========================================================
   HEADER
========================================================= */

.milestones-header {
    text-align: center;
    margin-bottom: 55px;
}

.milestones-label {
    display: block;

    margin-bottom: 10px;

    color: #2563eb;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.milestones-header h2 {
    margin: 0;

    color: #101d35;

    font-size: 32px;
    font-weight: 800;

    line-height: 1.25;

    letter-spacing: -0.5px;
}

.milestones-header p {
    max-width: 720px;

    margin: 12px auto 0;

    color: #8a95a8;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   TIMELINE
========================================================= */

.milestones-timeline {
    position: relative;
    width: 100%;
    z-index: 1;
}


/* =========================================================
   CENTER TIMELINE LINE — track
========================================================= */

.milestones-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(23, 105, 224, 0.12),
        rgba(23, 105, 224, 0.18) 50%,
        rgba(23, 105, 224, 0.08)
    );
    transform: translateX(-50%);
    z-index: 1;
}


/* Animated fill line */

.milestones-timeline::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 0;
    background: linear-gradient(
        to bottom,
        #1769e0,
        #3d8ef5,
        #1769e0
    );
    box-shadow:
        0 0 8px rgba(23, 105, 224, 0.45),
        0 0 20px rgba(23, 105, 224, 0.18);
    transform: translateX(-50%);
    z-index: 2;
    transition:
        height 2s
        cubic-bezier(0.22, 0.61, 0.36, 1);
}

.milestones-timeline.timeline-active::after {
    height: 100%;
}


/* =========================================================
   MILESTONE ROW
========================================================= */

.milestone-row {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr
        90px
        1fr;

    align-items: center;

    width: 100%;

    min-height: 225px;

    margin-bottom: 25px;

    z-index: 3;
}

.milestone-row:last-child {
    margin-bottom: 0;
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.milestone-image-side {
    display: flex;

    align-items: center;

    width: 100%;
}


/* Left image */

.left-row .milestone-image-side {
    justify-content: flex-start;
}


/* Right image */

.right-row .milestone-image-side {
    justify-content: flex-end;
}


/* =========================================================
   IMAGE CARD
========================================================= */

.milestone-image {
    position: relative;

    width: 420px;
    height: 225px;

    overflow: hidden;

    border-radius: 12px;

    background: #f3f6fa;

    border: 1px solid
        rgba(
            11,
            42,
            85,
            0.08
        );

    box-shadow:
        0 12px 32px
        rgba(
            11,
            42,
            85,
            0.12
        );

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


/* =========================================================
   IMAGE
========================================================= */

.milestone-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.65s
        cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        );
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.milestone-image:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 38px
        rgba(
            11,
            42,
            85,
            0.17
        );
}

.milestone-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   CENTER NUMBER
========================================================= */

.milestone-center {
    position: relative;

    height: 100%;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    padding-top: 4px;

    z-index: 10;
}


/* =========================================================
   NUMBER CIRCLE
========================================================= */

.milestone-number {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #ffffff;
    border: 3px solid #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    box-shadow:
        0 0 0 4px rgba(23, 105, 224, 0.12),
        0 9px 22px rgba(23, 105, 224, 0.25);
    z-index: 5;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
    /* Start hidden for pop animation */
    opacity: 0;
    transform: scale(0.5);
}

/* Ripple ring that pulses outward */
.milestone-number::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(23, 105, 224, 0.28);
    opacity: 0;
    animation: milestoneRipple 2.8s ease-out infinite;
    animation-play-state: paused;
}

/* Inner glass ring */
.milestone-number::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
}

/* Visible + popped state (added by JS IntersectionObserver) */
.milestone-number.number-visible {
    opacity: 1;
    transform: scale(1);
}

.milestone-number.number-visible::after {
    animation-play-state: running;
}

@keyframes milestoneRipple {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.55);
        opacity: 0;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}


/* =========================================================
   MILESTONE COLORS
========================================================= */

.milestone-row:nth-child(1)
.milestone-number {
    background: linear-gradient(
        145deg,
        #1264d9,
        #0750b8
    );
}

.milestone-row:nth-child(2)
.milestone-number {
    background: linear-gradient(
        145deg,
        #acd900,
        #8fbd00
    );
}

.milestone-row:nth-child(3)
.milestone-number {
    background: linear-gradient(
        145deg,
        #14b9e6,
        #0796c3
    );
}

.milestone-row:nth-child(4)
.milestone-number {
    background: linear-gradient(
        145deg,
        #c0009c,
        #9c007f
    );
}

.milestone-row:nth-child(5)
.milestone-number {
    background: linear-gradient(
        145deg,
        #1459bd,
        #0d4292
    );
}

.milestone-row:nth-child(6)
.milestone-number {
    background: linear-gradient(
        145deg,
        #acd900,
        #8fbd00
    );
}

.milestone-row:nth-child(7)
.milestone-number {
    background: linear-gradient(
        145deg,
        #14b9e6,
        #0796c3
    );
}


/* =========================================================
   NUMBER HOVER
========================================================= */

.milestone-row:hover .milestone-number {
    transform: scale(1.12);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.95),
        0 0 0 7px rgba(23, 105, 224, 0.2),
        0 14px 30px rgba(23, 105, 224, 0.32);
}


/* =========================================================
   CONTENT SIDE
========================================================= */

.milestone-content-side {
    width: 100%;
}


/* =========================================================
   CONTENT
========================================================= */

.milestone-content {
    width: 100%;
    max-width: 420px;
    position: relative;

    /* Glassmorphism card */
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(23, 105, 224, 0.12);
    border-top: 2px solid rgba(23, 105, 224, 0.45);
    border-radius: 14px;
    padding: 22px 24px;

    box-shadow:
        0 4px 16px rgba(23, 105, 224, 0.07),
        0 1px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    /* Shine sweep overlay */
    overflow: hidden;

    transition:
        transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.38s ease;
}

/* Shine sweep pseudo element */
.milestone-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 70%
    );
    transform: skewX(-18deg);
    transition: left 0.65s ease;
    pointer-events: none;
}

.milestone-content:hover::after {
    left: 130%;
}

.milestone-content:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 32px rgba(23, 105, 224, 0.13),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* Left image → right content */

.left-row .milestone-content {
    margin-left: 0;
    text-align: left;
}


/* Right image → left content */

.right-row .milestone-content {
    margin-left: auto;
    text-align: right;
}


/* =========================================================
   YEAR
========================================================= */

.milestone-year {
    display: block;

    margin-bottom: 7px;

    color: #1769e0;

    font-size: 12px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.3px;
}


/* =========================================================
   TITLE
========================================================= */

.milestone-content h3 {
    margin: 0 0 10px;

    color: #0b2a55;

    font-size: 18px;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: -0.2px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.milestone-content p {
    margin: 0;

    color: #738096;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   HOVER TEXT
========================================================= */

.left-row:hover
.milestone-content h3,

.right-row:hover
.milestone-content h3 {
    color: #1769e0;

    transition:
        color 0.3s ease;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.milestone-row {
    opacity: 0;
}

.milestone-row.left-row.show {
    animation:
        milestoneLeftReveal
        0.85s
        cubic-bezier(0.22, 0.61, 0.36, 1)
        both;
}

.milestone-row.right-row.show {
    animation:
        milestoneRightReveal
        0.85s
        cubic-bezier(0.22, 0.61, 0.36, 1)
        both;
}


@keyframes milestoneLeftReveal {
    from {
        opacity: 0;
        transform: translateX(-55px) scale(0.97);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}


@keyframes milestoneRightReveal {
    from {
        opacity: 0;
        transform: translateX(55px) scale(0.97);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}


/* =========================================================
   STAGGERED ANIMATION
========================================================= */

.milestone-row:nth-child(1) {
    animation-delay: 0.05s;
}

.milestone-row:nth-child(2) {
    animation-delay: 0.15s;
}

.milestone-row:nth-child(3) {
    animation-delay: 0.25s;
}

.milestone-row:nth-child(4) {
    animation-delay: 0.35s;
}

.milestone-row:nth-child(5) {
    animation-delay: 0.45s;
}

.milestone-row:nth-child(6) {
    animation-delay: 0.55s;
}

.milestone-row:nth-child(7) {
    animation-delay: 0.65s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .milestones-wrapper {
        max-width: 1000px;
    }

    .milestone-row {
        grid-template-columns:
            1fr
            75px
            1fr;

        min-height: 200px;
    }

    .milestone-image {
        width: 350px;
        height: 195px;
    }

    .milestone-content {
        max-width: 340px;
    }

    .milestone-content h3 {
        font-size: 16px;
    }

    .milestone-content p {
        font-size: 12px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .milestones-wrapper {
        padding: 0 25px;
    }

    .milestone-row {
        grid-template-columns:
            1fr
            65px
            1fr;

        min-height: 175px;
    }

    .milestone-image {
        width: 300px;
        height: 170px;
    }

    .milestone-content {
        max-width: 290px;
    }

    .milestone-content h3 {
        font-size: 15px;
    }

    .milestone-content p {
        font-size: 11px;
        line-height: 1.6;
    }

    .milestone-number {
        width: 46px;
        height: 46px;

        font-size: 11px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .milestones-section {
        padding: 55px 0 65px;
    }

    .milestones-wrapper {
        padding: 0 18px;
    }

    .milestones-header {
        margin-bottom: 40px;
    }

    .milestones-label {
        font-size: 10px;
    }

    .milestones-header h2 {
        font-size: 26px;
    }

    .milestones-header p {
        font-size: 11px;
        line-height: 1.6;
    }


    /* Mobile line */

    .milestones-timeline::before,
    .milestones-timeline::after {

        left: 22px;

        transform:
            translateX(-50%);
    }


    /* Mobile row */

    .milestone-row {

        display: grid;

        grid-template-columns:
            44px
            minmax(0, 1fr);

        min-height: auto;

        margin-bottom: 45px;

        align-items: start;
    }


    /* Number */

    .milestone-center {

        grid-column: 1;
        grid-row: 1 / span 2;

        padding-top: 0;

        justify-content: center;

        align-items: flex-start;
    }


    .milestone-number {

        width: 40px;
        height: 40px;

        font-size: 10px;

        border-width: 2px;
    }


    /* Image */

    .milestone-image-side {

        grid-column: 2;
        grid-row: 1;

        width: 100%;
    }

    .left-row .milestone-image-side,
    .right-row .milestone-image-side {

        justify-content: flex-start;
    }


    .milestone-image {

        width: 100%;
        height: 210px;

        border-radius: 10px;
    }


    /* Content */

    .milestone-content-side {

        grid-column: 2;
        grid-row: 2;

        padding-top: 15px;
    }


    .left-row .milestone-content,
    .right-row .milestone-content {

        max-width: none;

        margin-left: 0;

        text-align: left;

        padding: 16px 18px;

        border-radius: 12px;
    }


    .milestone-year {
        font-size: 10px;
    }


    .milestone-content h3 {
        font-size: 17px;

        margin-bottom: 7px;
    }


    .milestone-content p {
        font-size: 11px;

        line-height: 1.65;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .milestones-section {
        padding: 45px 0 55px;
    }

    .milestones-wrapper {
        padding: 0 14px;
    }

    .milestones-header {
        margin-bottom: 32px;
    }

    .milestones-header h2 {
        font-size: 23px;
    }

    .milestones-header p {
        font-size: 10px;
    }


    .milestones-timeline::before,
    .milestones-timeline::after {

        left: 19px;
    }


    .milestone-row {

        grid-template-columns:
            38px
            minmax(0, 1fr);

        margin-bottom: 38px;
    }


    .milestone-number {

        width: 34px;
        height: 34px;

        font-size: 9px;
    }


    .milestone-image {

        height: 180px;

        border-radius: 9px;
    }


    .milestone-content-side {

        padding-top: 13px;
    }


    .milestone-year {
        font-size: 9px;
    }


    .milestone-content h3 {
        font-size: 15px;
    }


    .milestone-content p {
        font-size: 10px;

        line-height: 1.6;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .milestone-row,
    .milestone-image,
    .milestone-image img,
    .milestone-number {

        animation: none !important;

        transition: none !important;
    }

    .milestones-timeline::after {

        transition: none !important;
    }
}

/* =========================================================
   AWARDS & RECOGNITION
========================================================= */

.awards-section {
    position: relative;

    width: 100%;

    padding: 75px 0 85px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.awards-container {
    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

    padding: 0 20px;
}


/* =========================================================
   HEADER
========================================================= */

.awards-header {
    text-align: center;

    margin-bottom: 48px;
}


.awards-label {
    display: block;

    margin-bottom: 8px;

    color: #2563eb;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.awards-header h2 {
    margin: 0 0 10px;

    color: #101828;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.25;
}


.awards-header p {
    max-width: 650px;

    margin: 0 auto;

    color: #98a2b3;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   CAROUSEL WRAPPER
========================================================= */

.awards-carousel-wrapper {
    position: relative;

    width: 100%;
}


/* =========================================================
   VIEWPORT
========================================================= */

.awards-viewport {
    position: relative;

    width: 100%;

    overflow: hidden;

    cursor: grab;

    padding: 8px 0 20px;
}


.awards-viewport.dragging {
    cursor: grabbing;
}


/* =========================================================
   TRACK
========================================================= */

.awards-track {
    display: flex;

    gap: 34px;

    width: max-content;

    will-change: transform;

    transform: translate3d(0, 0, 0);

    user-select: none;
}


/* =========================================================
   AWARD CARD
========================================================= */

.award-card {
    position: relative;

    flex: 0 0 226px;

    width: 226px;

    min-height: 250px;

    background: #ffffff;

    border: 1px solid #e8ebef;

    border-radius: 11px;

    overflow: hidden;

    box-shadow:
        0 4px 12px rgba(
            16,
            24,
            40,
            0.04
        );

    transition:
        transform 0.45s
            cubic-bezier(
                0.22,
                0.61,
                0.36,
                1
            ),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* =========================================================
   HOVER CARD
========================================================= */

.award-card:hover {

    transform:
        translateY(-8px)
        scale(1.015);

    border-color: #d9e4f5;

    box-shadow:
        0 18px 35px rgba(
            16,
            24,
            40,
            0.12
        );

    z-index: 5;
}


/* =========================================================
   IMAGE
========================================================= */

.award-image {

    position: relative;

    width: 100%;

    height: 153px;

    overflow: hidden;

    background: #f6f7f9;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   IMAGE
========================================================= */

.award-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 5px;

    transition:
        transform 0.7s
            cubic-bezier(
                0.22,
                0.61,
                0.36,
                1
            ),
        filter 0.5s ease;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.award-card:hover .award-image img {

    transform:
        scale(1.055);

    filter:
        brightness(1.02);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.award-image-overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.05),
            transparent 55%
        );

    opacity: 0;

    transition:
        opacity 0.45s ease;
}


.award-card:hover
.award-image-overlay {

    opacity: 1;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.award-content {

    padding: 14px 13px 13px;

    border-top: 1px solid #edf0f3;
}


/* =========================================================
   BRAND
========================================================= */

.award-brand {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 8px;

    color: #667085;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   BRAND DOT
========================================================= */

.brand-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #2563eb;

    flex-shrink: 0;
}


/* Logitech */

.award-brand.logitech {

    color: #2563eb;
}


.award-brand.logitech
.brand-dot {

    background: #2563eb;
}


/* Outlook */

.award-brand.outlook {

    color: #d21b86;
}


.award-brand.outlook
.brand-dot {

    background: #d21b86;
}


/* ClearOne */

.award-brand.clearone {

    color: #079455;
}


.award-brand.clearone
.brand-dot {

    background: #079455;
}


/* LG */

.award-brand.lg {

    color: #d92d20;
}


.award-brand.lg
.brand-dot {

    background: #d92d20;
}


/* =========================================================
   TITLE
========================================================= */

.award-content h3 {

    min-height: 40px;

    margin: 0;

    color: #1d2939;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.55;

    transition:
        color 0.3s ease;
}


.award-card:hover
.award-content h3 {

    color: #0b2a55;
}


/* =========================================================
   YEAR
========================================================= */

.award-year {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 13px;

    color: #98a2b3;

    font-size: 10px;

    line-height: 1;
}


.calendar-icon {

    font-size: 10px;

    opacity: 0.8;
}


/* =========================================================
   ARROW BUTTONS
========================================================= */

.award-arrow {

    position: absolute;

    top: 50%;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #e4e7ec;

    border-radius: 50%;

    background: #ffffff;

    color: #344054;

    font-size: 17px;

    cursor: pointer;

    z-index: 20;

    transform:
        translateY(-50%);

    box-shadow:
        0 6px 18px rgba(
            16,
            24,
            40,
            0.10
        );

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.award-prev {

    left: -18px;
}


.award-next {

    right: -18px;
}


.award-arrow:hover {

    background: #2563eb;

    color: #ffffff;

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 10px 25px rgba(
            37,
            99,
            235,
            0.22
        );
}


.award-arrow:active {

    transform:
        translateY(-50%)
        scale(0.94);
}


/* =========================================================
   PROGRESS INDICATORS
========================================================= */

.award-progress {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 18px;
}


.award-progress-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #d0d5dd;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.award-progress-dot.active {

    width: 20px;

    border-radius: 10px;

    background: #2563eb;
}


/* =========================================================
   CARD ENTRANCE ANIMATION
========================================================= */

.award-card {

    animation:
        awardCardReveal
        0.8s
        cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        )
        both;
}


@keyframes awardCardReveal {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }
}
/* =========================================================
   AWARDS & RECOGNITION
========================================================= */

.awards-section {
    width: 100%;
    padding: 85px 0 100px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.awards-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.awards-header {
    text-align: center;
    margin-bottom: 55px;

    opacity: 0;
    transform: translateY(30px);

    animation: awardsHeaderIn 1s ease forwards;
}


.awards-label {
    display: block;

    margin-bottom: 12px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.awards-header h2 {
    margin: 0 0 14px;

    color: #101828;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.2;
}


.awards-header p {
    max-width: 850px;

    margin: 0 auto;

    color: #98a2b3;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   HEADER ANIMATION
========================================================= */

@keyframes awardsHeaderIn {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

}


/* =========================================================
   VIEWPORT
========================================================= */

.awards-viewport {
    width: 100%;

    overflow: hidden;

    position: relative;

    padding: 15px 0 25px;

    box-sizing: border-box;
}


/*
    IMPORTANT

    This hides the 5th card completely.
    Only 4 cards are visible on desktop.
*/

.awards-viewport::before,
.awards-viewport::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 40px;

    z-index: 10;

    pointer-events: none;
}


/* =========================================================
   TRACK
========================================================= */

.awards-track {
    display: flex;

    align-items: stretch;

    gap: 28px;

    width: max-content;

    transform: translate3d(0, 0, 0);

    will-change: transform;
}


/* =========================================================
   AWARD CARD
========================================================= */

.award-card {

    /*
       4 cards visible
    */

    flex: 0 0 calc(
        (100vw - 60px - 84px) / 4
    );

    width: calc(
        (100vw - 60px - 84px) / 4
    );

    max-width: 330px;

    min-width: 280px;

    height: 355px;

    background: #ffffff;

    border: 1px solid #e4e7ec;

    border-radius: 14px;

    overflow: hidden;

    box-sizing: border-box;

    box-shadow:
        0 5px 15px rgba(16, 24, 40, 0.05);

    position: relative;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;

    flex-shrink: 0;
}


/* =========================================================
   CARD HOVER
========================================================= */

.award-card:hover {

    transform: translateY(-10px);

    border-color: #d0d5dd;

    box-shadow:
        0 20px 40px rgba(16, 24, 40, 0.12);
}


/* =========================================================
   IMAGE AREA
========================================================= */

.award-image {

    width: 100%;

    height: 205px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f7f8fa;

    overflow: hidden;

    position: relative;
}


/* =========================================================
   IMAGE
========================================================= */

.award-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 8px;

    box-sizing: border-box;

    transition:
        transform 0.7s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.award-card:hover .award-image img {

    transform: scale(1.06);
}


/* =========================================================
   IMAGE LIGHT EFFECT
========================================================= */

.award-image::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100%;

    top: 0;
    left: -150px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.45),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.8s ease;

    pointer-events: none;
}


.award-card:hover .award-image::after {

    left: 120%;
}


/* =========================================================
   CONTENT
========================================================= */

.award-content {

    height: 150px;

    padding: 19px 20px;

    box-sizing: border-box;

    border-top: 1px solid #edf0f3;

    background: #ffffff;
}


/* =========================================================
   BRAND
========================================================= */

.award-brand {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 11px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

    line-height: 1;

    color: #2563eb;
}


/* =========================================================
   BRAND COLORS
========================================================= */

.award-brand.logitech {
    color: #1671d9;
}

.award-brand.outlook {
    color: #c0268e;
}

.award-brand.clearone {
    color: #008c62;
}

.award-brand.lg {
    color: #d62929;
}

.award-brand.technology {
    color: #7c3aed;
}

.award-brand.industry {
    color: #ea580c;
}

.award-brand.partner {
    color: #0891b2;
}

.award-brand.business {
    color: #16a34a;
}


/* =========================================================
   DOT
========================================================= */

.brand-dot {

    width: 6px;
    height: 6px;

    min-width: 6px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.05);
}


/* =========================================================
   TITLE
========================================================= */

.award-content h3 {

    margin: 0;

    color: #1d2939;

    font-size: 16px;

    font-weight: 650;

    line-height: 1.45;

    min-height: 48px;
}


/* =========================================================
   YEAR
========================================================= */

.award-year {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 17px;

    color: #98a2b3;

    font-size: 13px;

    font-weight: 500;

    line-height: 1;
}


.calendar-icon {

    font-size: 12px;

    color: #98a2b3;
}


/* =========================================================
   CARD ENTRANCE
========================================================= */

.award-card {

    opacity: 0;

    animation:
        awardCardAppear
        0.8s
        ease
        forwards;
}


.award-card:nth-child(1) {
    animation-delay: 0.15s;
}

.award-card:nth-child(2) {
    animation-delay: 0.25s;
}

.award-card:nth-child(3) {
    animation-delay: 0.35s;
}

.award-card:nth-child(4) {
    animation-delay: 0.45s;
}

.award-card:nth-child(5) {
    animation-delay: 0.55s;
}

.award-card:nth-child(6) {
    animation-delay: 0.65s;
}

.award-card:nth-child(7) {
    animation-delay: 0.75s;
}

.award-card:nth-child(8) {
    animation-delay: 0.85s;
}

.award-card:nth-child(9) {
    animation-delay: 0.95s;
}


@keyframes awardCardAppear {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

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

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .awards-container {
        padding: 0 25px;
    }

    .award-card {

        flex: 0 0 300px;

        width: 300px;

        min-width: 300px;

        height: 345px;
    }

    .award-image {
        height: 195px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .awards-section {

        padding:
            65px
            0
            75px;
    }


    .awards-container {

        padding:
            0 18px;
    }


    .awards-header {

        margin-bottom: 38px;
    }


    .awards-label {

        font-size: 11px;

        letter-spacing: 1.6px;
    }


    .awards-header h2 {

        font-size: 30px;
    }


    .awards-header p {

        font-size: 15px;

        line-height: 1.55;
    }


    .awards-track {

        gap: 20px;
    }


    .award-card {

        flex: 0 0 280px;

        width: 280px;

        min-width: 280px;

        height: 340px;
    }


    .award-image {

        height: 190px;
    }


    .award-content {

        height: 150px;

        padding:
            17px
            18px;
    }


    .award-content h3 {

        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .awards-section {

        padding:
            55px
            0
            65px;
    }


    .awards-header h2 {

        font-size: 27px;
    }


    .awards-header p {

        font-size: 14px;
    }


    .award-card {

        flex: 0 0 260px;

        width: 260px;

        min-width: 260px;
    }


    .award-image {

        height: 180px;
    }

}