:root {
    /* --paragon-red: #ed1c24; */
    --paragon-red: #ff2d16;
    --ink: #231f20;
}

* {
    box-sizing: border-box;
}

body {
    color: var(--ink);
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

.container {
    max-width: 93% !important;
}

.accent {
    color: var(--paragon-red);
}

/* ==== Top Bar ==== */
.top-bar {
    background: var(--paragon-red);
    padding: 10px 0;
}

.top-bar .nav-link {
    color: #ffffff;
    font-weight: 400;
    padding: 4px 0 4px 35px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
}

.top-bar .nav-link:hover {
    opacity: .85;
}

.top-bar .dropdown-toggle::after {
    vertical-align: 2px;
}

.top-bar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    border-radius: 0;
}

.top-bar .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 8px 16px;
}

.top-bar .dropdown-menu .dropdown-item:active,
.top-bar .dropdown-menu .dropdown-item:hover {
    background: #ff2d1633;
    color: var(--paragon-red);
}

/* ==== Main Navbar ==== */
.main-nav {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.main-links .nav-link {
    color: var(--ink);
    font-weight: 400;
    padding: 8px 23px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-links .nav-link.active,
.dropdown-item.active {
    color: var(--paragon-red);
    background-color: #ffffff;
    font-weight: 700;
    position: relative;
}

.top-bar .nav-link.active {
    font-weight: 700;
}

.btn-contact.active {
    color: #ffffff;
    background-color: var(--paragon-red);
    font-weight: 700;
    position: relative;
}

.main-links .nav-item.dropdown.active>.nav-link {
    color: var(--paragon-red) !important;
    font-weight: 700;
}

.main-links .nav-item.dropdown.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -2px;
    height: 2px;
    background: var(--paragon-red);
}

.main-links .nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -2px;
    height: 2px;
    background: var(--paragon-red);
}

.dropdown-toggle::after {
    display: none;
}

.main-links .dropdown-menu {
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    border-radius: 0;
}

.main-links .dropdown-item {
    font-size: 14px;
    padding: 8px 16px;
}

.main-links .dropdown-item:active,
.main-links .dropdown-item:hover {
    background: #ff2d1633;
    color: var(--paragon-red);
}

.btn-contact {
    background: var(--ink);
    color: #ffffff;
    font-weight: 400;
    padding: 19px 38px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background .25s ease, transform .2s ease;
    margin-left: 23px;
}

.btn-contact:hover {
    background: var(--paragon-red);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Nav Toggler */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .main-links .nav-link.active::after {
        display: none;
    }

    .top-bar .container {
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .main-nav .container,
    .main-nav .d-flex {
        position: relative;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    }

    .main-links .nav-item,
    .main-links .nav-link {
        width: 100%;
    }

    .main-links .nav-link {
        padding: 12px 20px !important;
    }

    .btn-contact {
        display: block;
        width: calc(100% - 40px);
        margin: 15px 20px 20px;
        text-align: center;
        padding: 15px;
        margin-top: 10px;
    }
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all .35s ease;
}

.header-wrapper.sticky {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    animation: headerSlide .4s ease;
}

.header-wrapper.sticky .main-nav {
    padding: 10px 0;
}

body {
    padding-top: 132px;
}

@keyframes headerSlide {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ==== Desktop Hover Dropdown ==== */
@media (min-width:992px) {

    .main-links .dropdown-menu,
    .top-bar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: .3s;
        margin-top: 0;
    }

    .main-links .dropdown:hover>.dropdown-menu,
    .top-bar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ==== Hero section (video) ==== */
.hero-video-wrap {
    padding: 60px 0;
}

.video-player {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    user-select: none;
}

.hero-video {
    width: 100%;
    display: block;
    object-fit: cover;
    background: var(--ink);
}

/*==== OVERLAY ====*/
.video-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/*==== BIG PLAY BUTTON ====*/
.big-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    transition: .3s;
    z-index: 20;
}

.big-play-btn i {
    font-size: 34px;
    margin-left: 6px;
}

.big-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--paragon-red);
}

/*==== REPLAY BUTTON ====*/
.replay-btn {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    cursor: pointer;
    z-index: 25;
}

.replay-btn i {
    font-size: 28px;
}

/*==== LOADER ====*/
.video-loader {
    display: none;
    position: absolute;
    inset: 0;
    justify-content: center;
    align-items: center;
    z-index: 30;
}

.spinner {
    width: 54px;
    height: 54px;
    border: 4px solid rgba(255, 255, 255, .25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*==== CONTROLS ====*/
.video-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 18px 16px;
    background: linear-gradient(transparent,
            rgba(0, 0, 0, .99));
    transition: .35s;
    z-index: 15;
}

/* Hidden (used in JS) */
.video-player.hide-controls .video-controls {
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
}

/*==== PROGRESS BAR ====*/
.progress-container {
    position: relative;
    width: 100%;
    margin-bottom: 14px;
}

.buffer-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 4px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .35);
    border-radius: 20px;
}

.progress-bar {
    appearance: none;
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #5d5d5d;
    border-radius: 20px;
    position: relative;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--paragon-red);
    cursor: pointer;
    transition: .2s;
}

.progress-bar:hover::-webkit-slider-thumb {
    transform: scale(1.2);
}

/* Firefox */
.progress-bar::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 50%;
    background: var(--paragon-red);
}

/*==== CONTROL ROW ====*/
.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/*==== BUTTONS ====*/
.video-controls button {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    transition: .25s;
    border-radius: 50%;
}

.video-controls button:hover {
    background: rgba(255, 255, 255, .15);
}

/*==== VOLUME ====*/
.volume-slider {
    width: 85px;
    appearance: none;
    height: 4px;
    background: #666;
    border-radius: 20px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #fff;
}

/*==== TIME ====*/
.time-display {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
}

/*==== SWIPER ====*/
.hero-video-wrap .swiper-button-next,
.hero-video-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    color: var(--paragon-red);
    z-index: 50;
    transition: .3s;
}

.hero-video-wrap .swiper-button-prev {
    left: 0;
}

.hero-video-wrap .swiper-button-next {
    right: 0;
}

.hero-video-wrap .swiper-button-prev:hover,
.hero-video-wrap .swiper-button-next:hover {
    background: var(--paragon-red);
    border-color: var(--paragon-red);
    color: #fff;
}

.hero-video-wrap .swiper-button-next:after,
.hero-video-wrap .swiper-button-prev:after {
    font-size: 18px;
}

/*==== FULLSCREEN ====*/
.video-player:fullscreen {
    border-radius: 0;
}

.video-player:fullscreen .hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}

/*==== RESPONSIVE ====*/
@media(max-width:991px) {
    .big-play-btn {
        width: 75px;
        height: 75px;
    }

    .big-play-btn i {
        font-size: 28px;
    }

    .volume-slider {
        width: 60px;
    }
}

@media(max-width:767px) {
    .hero-video-wrap {
        padding: 30px 0;
    }

    .controls-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .controls-left {
        width: 100%;
    }

    .controls-right {
        margin-left: auto;
    }

    .volume-slider {
        display: none;
    }

    .time-display {
        font-size: 13px;
    }

    .big-play-btn {
        width: 65px;
        height: 65px;
    }

    .big-play-btn i {
        font-size: 24px;
    }

    .video-controls {
        padding: 10px;
    }
}

/* ==== feature strip ==== */
.feature-strip {
    background: var(--ink);
    padding: 30px 0;
}

.feature-strip .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-strip .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--paragon-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.feature-strip .feature-label {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .feature-strip .feature-item {
        justify-content: center;
        margin-bottom: 20px;
    }

    .feature-strip .row>div:last-child .feature-item {
        margin-bottom: 0;
    }
}

/* ===== About Us / Scale & Pride section ===== */
.about-section {
    background: #ffffff;
    padding: 120px 0;
}

.about-section .about-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.about-section .about-eyebrow .line {
    width: 22px;
    height: 4px;
    background: var(--paragon-red);
}

.about-section .about-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: var(--paragon-red);
}

.about-section .about-eyebrow span.label {
    color: var(--paragon-red);
    font-size: 16px;
    margin-left: 10px;
}

.about-section .about-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 65px;
}

.about-section .about-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.about-section .about-desc {
    color: var(--ink);
    margin-bottom: 18px;
}

.about-section .about-quote {
    color: var(--ink);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 50px;
}

.about-section .about-img {
    width: 90%;
    object-fit: cover;
    position: relative;
    right: -10%;
}

.about-stats-wrap {
    margin-top: 60px;
}

.about-stats-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 50px;
}

.about-stats-card .row {
    display: flex;
    flex-wrap: nowrap;
}

.about-stats-card .row>div {
    text-align: center;
    width: calc(100% / 7);
    max-width: calc(100% / 7);
    flex: 0 0 calc(100% / 7);
}

.about-stat .stat-number {
    font-weight: 700;
    font-size: 50px;
    letter-spacing: -1.6px;
    color: var(--ink);
}

.about-stat .stat-number .plus {
    color: var(--paragon-red);
}

.about-stat .stat-label {
    color: var(--ink);
    font-size: 20px;
    font-style: italic;
}

@media (max-width: 991.98px) {
    .about-section .about-title {
        font-size: 32px;
    }

    .about-section .about-img {
        height: 280px;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 56px 0 60px;
    }

    .about-section .about-title {
        font-size: 30px;
    }

    .about-stats-card {
        padding: 34px 20px;
    }

    .about-stat {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .about-stats-card .row {
        flex-wrap: wrap;
    }

    .about-stat {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .about-stat {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* ===== Manufacturing Excellence section ===== */
.mfg-section {
    background: var(--ink);
    padding: 120px 0;
}

.mfg-section .mfg-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.mfg-section .mfg-eyebrow .line {
    width: 22px;
    height: 4px;
    background: #ffffff;
}

.mfg-section .mfg-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: #ffffff;
}

.mfg-section .mfg-eyebrow span.label {
    color: #ffffff;
    font-size: 16px;
    margin-left: 10px;
}

.mfg-section .mfg-title {
    color: #fff;
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.mfg-section .mfg-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.mfg-section .mfg-desc {
    color: #ffffff;
}

.mfg-section .mfg-divider {
    border-top: 1px solid #FFFFFF0D;
    margin: 50px 0;
}

.mfg-section .mfg-col {
    border-right: 1px solid #FFFFFF0D;
}

.mfg-section .mfg-col:last-child {
    border-right: none;
}

.mfg-section .mfg-col-inner {
    position: relative;
}

.mfg-section .mfg-num {
    position: absolute;
    top: -31px;
    right: 0px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 65px;
    font-weight: 400;
    letter-spacing: -1.6px;
    color: #FFFFFF0D;
    line-height: 65px;
}

.mfg-section .mfg-tick {
    width: 31px;
    height: 2px;
    background: var(--paragon-red);
    margin-bottom: 14px;
    margin-top: 22px;
}

.mfg-section .mfg-col h5 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 22px;
}

.mfg-section .mfg-col h3 {
    color: var(--paragon-red);
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 22px;
}

.mfg-section .mfg-col p {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .mfg-section .mfg-title {
        font-size: 34px;
    }

    .mfg-section .mfg-desc {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .mfg-section {
        padding: 56px 0 40px;
    }

    .mfg-section .mfg-title {
        font-size: 28px;
    }

    .mfg-section .mfg-col {
        margin-bottom: 34px;
        border-right: none;
    }

    .mfg-section .mfg-divider {
        margin: 34px 0 30px;
    }
}

/* ===== Global Presence section ===== */
.gp-section,
.blog-section {
    background: #ffffff;
    padding: 120px 0 0 0;
}

.gp-section .gp-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.gp-section .gp-eyebrow .line {
    width: 22px;
    height: 4px;
    background: var(--paragon-red);
}

.gp-section .gp-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: var(--paragon-red);
}

.gp-section .gp-eyebrow span.label {
    color: var(--paragon-red);
    font-size: 16px;
    margin-left: 10px;
}

.gp-section .gp-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.gp-section .gp-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.gp-section .gp-desc {
    color: var(--ink);
}

#chartdiv {
    margin-top: 50px;
    width: 100%;
    height: 700px;
}

/* ===== Brand Portfolio Section ===== */
.brand-section {
    background: #ffffff;
    padding: 120px 0;
}

.brand-section .brand-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.brand-section .brand-eyebrow .line {
    width: 22px;
    height: 4px;
    background: var(--paragon-red);
}

.brand-section .brand-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: var(--paragon-red);
}

.brand-section .brand-eyebrow span.label {
    color: var(--paragon-red);
    font-size: 16px;
    margin-left: 10px;
}

.brand-section .brand-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 40px;
}

.brand-section .brand-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.brand-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.brand-card:hover img {
    transform: scale(1.06);
}

.brand-card .brand-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
}

.brand-card .brand-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--paragon-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex: 0 0 38px;
    transition: transform .3s ease;
    transform: rotate(315deg);
}

.brand-card:hover .brand-arrow {
    transform: rotate(360deg);
}

@media (max-width: 991.98px) {
    .brand-card {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .brand-card {
        height: 320px;
    }
}

/* ===== Our Journey section ===== */
.milestones-section {
    background: #ffffff;
    padding: 0 0 120px 0;
}

.milestones-section .milestones-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.milestones-section .milestones-eyebrow .line {
    width: 22px;
    height: 4px;
    background: var(--paragon-red);
}

.milestones-section .milestones-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: var(--paragon-red);
}

.milestones-section .milestones-eyebrow span.label {
    color: var(--paragon-red);
    font-size: 16px;
    margin-left: 10px;
}

.milestones-section .milestones-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.milestones-section .milestones-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.timeline-wrapper {
    position: relative;
    padding: 50px 70px 0 70px;
}

.milestoneSlider {
    height: 435px;
}

.milestoneSlider .swiper-slide {
    height: auto;
    justify-content: center;
    transition: .4s;
}

.milestone-card {
    width: 300px;
    text-align: center;
    padding: 0;
    transition: .45s ease;
}

.milestone-card h4 {
    color: var(--paragon-red);
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 18px;
}

.milestone-image {
    width: 175px;
    height: 140px;
    margin: 0 auto 18px;
    border: 1px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.milestone-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.milestone-card p {
    color: var(--ink);
    max-width: 240px;
    margin: auto;
}

.swiper-slide-active {
    z-index: 5;
}

.swiper-slide-active .milestone-card {
    background: #fff;
    padding: 25px 20px 35px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: translateY(5px);
}

.swiper-slide-active .milestone-image {
    width: 190px;
    height: 145px;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 1;
}

.swiper-slide:not(.swiper-slide-active) .milestone-card {
    transform: scale(.92);
}

.swiper-slide:not(.swiper-slide-active) p {
    opacity: .9;
}

.timeline-prev,
.timeline-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    color: var(--paragon-red);
    z-index: 50;
    transition: .3s;
}

.timeline-prev {
    left: 0;
}

.timeline-next {
    right: 0;
}

.timeline-prev:hover,
.timeline-next:hover {
    background: var(--paragon-red);
    border-color: var(--paragon-red);
    color: #fff;
}

.timeline-prev i,
.timeline-next i {
    font-size: 18px;
}

.timeline-line {
    position: relative;
    margin-top: 30px;
    padding: 0 40px;
}

.timeline-line:before {
    content: '';
    position: absolute;
    left: 40px;
    right: 40px;
    top: 11px;
    border-top: 2px dashed var(--paragon-red);
}

.timeline-dots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 10%;
}

.timeline-dots .dot {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 50%;
    position: relative;
}

.timeline-dots .dot:after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #222;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline-dots .dot.active {
    border-color: var(--paragon-red);
}

.timeline-dots .dot.active:after {
    background: var(--paragon-red);
}

@media(max-width:1399px) {
    .section-title h2 {
        font-size: 58px;
        line-height: 58px;
    }

    .section-title h3 {
        font-size: 36px;
    }

    .milestone-card {
        width: 200px;
    }
}

@media(max-width:1199px) {
    .milestones-section .container-fluid {
        padding: 0 20px;
    }

    .section-title {
        margin-bottom: 60px;
        text-align: center;
        padding-right: 0;
    }

    .sub-title {
        justify-content: center;
    }

    .timeline-wrapper {
        padding: 0 50px;
    }
}

@media(max-width:991px) {
    .timeline-wrapper {
        padding: 0 40px;
    }

    .milestone-card {
        width: 180px;
    }

    .milestone-card h4 {
        font-size: 28px;
    }

    .milestone-image {
        width: 150px;
        height: 120px;
    }

    .swiper-slide-active .milestone-card {
        transform: none;
    }
}

@media(max-width:767px) {

    .section-title h2 {
        font-size: 42px;
        line-height: 42px;
    }

    .section-title h3 {
        font-size: 26px;
        line-height: 30px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-prev,
    .timeline-next {
        width: 36px;
        height: 36px;
    }
}

/* ===== CSR and Sustainability section ===== */
.csr-section {
    background: var(--ink);
    padding: 120px 0;
}

.csr-section .csr-video-wrap {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.csr-video-wrap img.video-poster,
.csr-video-wrap video {
    width: 90%;
    display: block;
}

.csr-video-wrap video {
    display: none;
}

.csr-section .csr-play-btn {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--paragon-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .08);
    transition: transform .25s ease;
    cursor: pointer;
    z-index: 2;
}

.csr-section .csr-video-wrap:hover .csr-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
}

.csr-section .csr-play-btn img {
    width: 20px;
    margin-left: 6px;
}

.csr-section .mfg-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.csr-section .mfg-eyebrow .line {
    width: 22px;
    height: 4px;
    background: #ffffff;
}

.csr-section .mfg-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: #ffffff;
}

.csr-section .mfg-eyebrow span.label {
    color: #ffffff;
    font-size: 16px;
    margin-left: 10px;
}

.csr-section .csr-title {
    color: #fff;
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.csr-section .csr-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.csr-section .csr-desc {
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 50px;
}

.csr-card {
    background: #282725;
    border: 1px solid #2e2d2c;
    padding: 18px 22px;
    margin-bottom: 24px;
    display: flex;
}

.csr-card .csr-tick {
    width: 40px;
    height: 3px;
    background: var(--paragon-red);
    margin-top: 8px;
    margin-right: 20px;
}

.csr-card h6 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.csr-card p {
    color: #ffffff59;
    font-size: 14px;
    margin-bottom: 0;
}

.csr-section .read-more-link {
    color: var(--paragon-red);
    font-weight: 700;
    font-size: 20px;
}

.csr-section .read-more-link i {
    transform: rotate(315deg);
    margin-left: 10px;
}


@media (max-width: 991.98px) {
    .csr-section .csr-title {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .csr-section {
        padding: 56px 0;
    }

    .csr-section .csr-video-wrap {
        margin-bottom: 40px;
    }

    .csr-section .csr-title {
        font-size: 28px;
    }
}

/* ===== Media & Newsroom section ===== */
.news-section {
    background: #ffffff;
    padding: 120px 0;
}

.news-section .news-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.news-section .news-eyebrow .line {
    width: 22px;
    height: 4px;
    background: var(--paragon-red);
}

.news-section .news-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: var(--paragon-red);
}

.news-section .news-eyebrow span.label {
    color: var(--paragon-red);
    font-size: 16px;
    margin-left: 10px;
}

.news-section .news-top-link {
    color: var(--paragon-red);
    font-weight: 700;
    font-size: 22px;
}

.news-section .news-top-link i {
    transform: rotate(315deg);
    margin-left: 10px;
}

.news-section .news-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 35px;
}

.news-section .news-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.news-feature-img {
    width: 90%;
    height: 435px;
    object-fit: cover;
    object-position: bottom;
    display: block;
    margin-bottom: 20px;
}

.news-date {
    color: #AEAEAE;
    font-size: 16px;
}

.news-source {
    font-weight: 700;
    font-style: italic;
    font-size: 50px;
    color: var(--ink);
    text-transform: uppercase;
}

.news-desc {
    color: #000000;
}

.read-more-link {
    color: var(--paragon-red);
    font-weight: 700;
    font-size: 20px;
}

.read-more-link i {
    transform: rotate(315deg);
    margin-left: 10px;
}

.news-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 0;
}

.news-list-item+.news-list-item {
    border-top: 1px solid #00000033;
}

.news-list-item .news-list-text {
    flex: 1 1 auto;
    min-width: 0;
}

.news-list-item .news-source {
    font-size: 26px;
    margin-bottom: 8px;
    margin-top: 8px;
}

.news-list-item .news-list-img {
    flex: 0 0 30%;
    width: 30%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .news-section .news-title {
        font-size: 32px;
    }

    .news-list-item {
        flex-direction: column;
    }

    .news-list-item .news-list-img {
        width: 100%;
        flex-basis: auto;
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .news-section {
        padding: 56px 0;
    }

    .news-section .news-title {
        font-size: 26px;
    }

    .news-feature-img {
        height: 260px;
    }

    .news-section .news-top-link {
        display: block;
        margin-top: 12px;
    }
}

/* ==== CTA section ==== */
.cta-section {
    background: var(--paragon-red);
    padding: 120px 0;
    text-align: center;
}

.cta-section .cta-eyebrow {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 18px;
}

.cta-section .cta-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 65px;
    line-height: 1.4;
    width: 80%;
    margin: auto;
    margin-bottom: 34px;
}

.cta-section p {
    color: #ffffff;
}

.cta-section .btn-cta {
    background: #ffffff;
    color: var(--ink);
    font-weight: 400;
    padding: 19px 38px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background .25s ease, color .25s ease, transform .2s ease;
}

.cta-section .btn-cta:hover {
    background: var(--ink);
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section .cta-title {
        font-size: 32px;
    }

    .cta-section .cta-eyebrow {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .cta-section .cta-title {
        font-size: 26px;
    }

    .cta-section .btn-cta {
        padding: 13px 26px;
        font-size: 14px;
    }
}

/* ==== Page title banner ==== */
.page-title-banner {
    padding: 295px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title-banner .page-title-bar {
    width: 100%;
    margin: 0;
    text-align: center;
    height: 58px;
}

.page-title-banner .page-title-bar .main-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 48px;
    margin: 0;
}

.page-title-banner .page-title-bar .main-heading .accent {
    color: #ffffff;
    text-transform: uppercase;
}

/* ==== All Brands Page ==== */
.all-brands {
    padding: 120px 0;
}

.all-brands .brand-image {
    width: 90%;
}

.all-brands .brand-content .brand-title {
    color: var(ink);
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 0;
}

.all-brands .brand-content .brand-desc {
    color: var(--ink);
    margin: 30px 0;
}

.brand-info {
    padding-bottom: 120px;
    text-align: center;
}

.brand-info .brand-info-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.brand-info .brand-info-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
    /*text-transform: uppercase;*/
    margin-bottom: 40px;
}

.brand-info .brand-info-desc {
    color: var(--ink);
    margin: auto;
    display: table;
    width: 65%;
}

/* ==== About Us Page ==== */
.about-brand-section {
    background: #ffffff;
    padding: 0 0 120px 0;
}

.about-brand-section .about-brand-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.about-brand-section .about-brand-eyebrow .line {
    width: 22px;
    height: 4px;
    background: var(--paragon-red);
}

.about-brand-section .about-brand-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: var(--paragon-red);
}

.about-brand-section .about-brand-eyebrow span.label {
    color: var(--paragon-red);
    font-size: 16px;
    margin-left: 10px;
}

.about-brand-section .about-brand-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.about-brand-section .about-brand-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.about-brand-section .about-brand-desc {
    color: var(--ink);
}

.vmv-card {
    position: relative;
    background: #fff;
    padding: 28px 22px 22px;
    min-height: 165px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .12);
    transition: .35s ease;
    overflow: hidden;
    height: 100%;
}

.vmv-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #efefef;
}

.vmv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
}

.vmv-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff1d25;
    font-size: 28px;
    margin-bottom: 18px;
}

.vmv-card h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--ink);
}

.vmv-card p {
    color: var(--ink);
    margin: 0;
}

.qa-card {
    background: #282725;
    border: 1px solid #2e2d2c;
    padding: 45px 30px;
    margin-bottom: 24px;
    text-align: center;
}

.qa-card h3 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
}

.qa-card p {
    color: #ffffff;
    margin-bottom: 0;
}

.excellence-img {
    width: 90%;
}

.founders h3 {
    font-size: 26px;
    color: var(--ink);
    font-weight: 700;
    font-style: italic;
    line-height: 2;
    text-align: center;
}

.leadership-card {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 28px 22px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .12);
    transition: .35s ease;
    overflow: hidden;
}

.leadership-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #efefef;
}

.leadership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
}

.leadership-card h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-style: italic;
    color: var(--ink);
}

.leadership-card p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: var(--paragon-red);
    margin: 0;
}

.leadershipSwiper {
    padding: 0px 10px;
    margin-top: 50px;
}

.leadershipSwiper .swiper-slide {
    height: auto;
}

.leadership-card {
    height: 100%;
}

.leadershipSwiper .swiper-button-next,
.leadershipSwiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    color: var(--paragon-red);
    z-index: 50;
    transition: .3s;
}

.leadershipSwiper .swiper-button-prev {
    left: 13px;
}

.leadershipSwiper .swiper-button-next {
    right: 13px;
}

.leadershipSwiper .swiper-button-prev:hover,
.leadershipSwiper .swiper-button-next:hover {
    background: var(--paragon-red);
    border-color: var(--paragon-red);
    color: #fff;
}

.leadershipSwiper .swiper-button-next:after,
.leadershipSwiper .swiper-button-prev:after {
    font-size: 18px;
}

.three-directors-card {
    position: relative;
    text-align: center;
    background: var(--ink);
    padding: 28px 22px;
    border: 1px solid var(--ink);
    box-shadow: 0 3px 8px rgb(0 0 0 / 50%);
    transition: .35s ease;
    overflow: hidden;
}

.three-directors-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--ink);
}

.three-directors-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .50);
}

.three-directors-card h4 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-style: italic;
    color: #ffffff;
}

.three-directors-card p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: var(--paragon-red);
    margin: 0;
}

.three-directors-card {
    height: 100%;
}

@media(max-width:991px) {
    .vmv-card {
        margin-bottom: 25px;
    }
}

/* ==== Franchise Partner ==== */
.franchise-section {
    padding: 120px 0px;
}

.franchise-section .franchise-box {
    background: #FBF9F5;
    max-width: 1080px;
    margin: auto;
    padding: 55px 75px;
    border: 1px solid #EFE9DD;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.franchise-section .heading {
    margin-bottom: 35px;
}

.franchise-section .heading h1 {
    font-size: 36px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 8px;
}

.franchise-section .heading p {
    color: #615A52;
    font-size: 20px;
    margin-bottom: 0;
}

.franchise-section .heading span {
    color: var(--paragon-red);
}

.franchise-section .form-group {
    margin-bottom: 22px;
}

.franchise-section .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.franchise-section .form-group label span {
    color: var(--paragon-red);
}

.franchise-section .form-control {
    border-radius: 0;
    border: 1px solid #E8E1D5;
    padding: 12px 16px;
    font-size: 14px;
    transition: .3s;
}

.franchise-section .form-control::placeholder {
    color: #9CA3AF;
}

.franchise-section .form-control:focus {
    border-color: var(--paragon-red);
    box-shadow: none;
}

.franchise-section .custom-check {
    margin-top: 6px;
    margin-bottom: 5px;
}

.franchise-section .custom-check .form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    border-radius: 2px;
    border: 1px solid #E8E1D5;
}

.franchise-section .custom-check .form-check-input:checked {
    background-color: var(--paragon-red);
    border-color: var(--paragon-red);
}

.franchise-section .custom-check .form-check-input:focus {
    box-shadow: none;
}

.franchise-section .custom-check label {
    font-size: 14px;
    color: var(--ink);
    font-weight: 700;
    cursor: pointer;
}

.franchise-section .small-text {
    font-size: 13px;
    color: var(--ink);
    margin-left: 24px;
    margin-bottom: 22px;
}

.franchise-section .investment-check {
    margin-top: 8px;
    margin-bottom: 30px;
}

.franchise-section .submit-btn {
    width: 100%;
    background: var(--paragon-red);
    border: none;
    color: #fff;
    height: 56px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.franchise-section .submit-btn:hover {
    background: var(--paragon-red);
    color: #fff;
}

.franchise-section .submit-btn:focus {
    background: var(--paragon-red);
    color: #fff;
}

.franchise-section .upload-box {
    width: 100%;
    border: 1px dashed #e7d8d8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    cursor: pointer;
    background: #fff;
    transition: .3s;
}

.franchise-section .upload-box:hover {
    border-color: var(--paragon-red);
    background: #fff9f9;
}

.upload-box input[type=file] {
    display: none;
}

.franchise-section .upload-icon {
    width: 40px;
    height: 40px;
    background: #FBEBEC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.franchise-section .upload-icon i {
    color: var(--paragon-red);
    font-size: 15px;
}

.franchise-section .upload-content h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    ;
    line-height: 1.3;
}

.franchise-section .upload-content small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: #9b9b9b;
}

.upload-input {
    display: none;
}

.franchise-section .form-heading .form-heading-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.franchise-section .form-heading .form-subheading-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #8B837A;
}

@media (max-width: 991px) {
    .franchise-section .franchise-box {
        padding: 45px;
    }

    .franchise-section .heading h1 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .franchise-section {
        padding: 40px 15px;
    }

    .franchise-section .franchise-box {
        padding: 30px 22px;
    }

    .franchise-section .heading {
        margin-bottom: 25px;
    }

    .franchise-section .heading h1 {
        font-size: 28px;
    }

    .franchise-section .heading p {
        font-size: 14px;
    }

    .franchise-section .form-group {
        margin-bottom: 18px;
    }

    .franchise-section .small-text {
        margin-left: 22px;
        margin-bottom: 18px;
    }

    .franchise-section .submit-btn {
        height: 52px;
    }
}

@media (max-width: 575px) {
    .franchise-section .heading h1 {
        font-size: 24px;
    }

    .franchise-section .franchise-box {
        padding: 25px 18px;
    }

    .franchise-section .form-control {
        height: 48px;
        font-size: 13px;
    }

    .franchise-section .form-group label {
        font-size: 13px;
    }

    .franchise-section .custom-check label {
        font-size: 13px;
    }

    .franchise-section .small-text {
        font-size: 12px;
    }

    .franchise-section .submit-btn {
        font-size: 15px;
    }
}

/* ==== Media Newsroom ==== */
.media-newsroom-section {
    background: #ffffff;
    padding: 80px 0 0 0;
}

.media-newsroom-section .media-newsroom-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.media-newsroom-section .media-newsroom-eyebrow .line {
    width: 22px;
    height: 4px;
    background: var(--paragon-red);
}

.media-newsroom-section .media-newsroom-eyebrow .line-fade {
    flex: 0 0 90px;
    height: 1px;
    margin-top: 4px;
    background: var(--paragon-red);
}

.media-newsroom-section .media-newsroom-eyebrow span.label {
    color: var(--paragon-red);
    font-size: 16px;
    margin-left: 10px;
}

.media-newsroom-section .media-newsroom-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.media-newsroom-section .media-newsroom-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.media-newsroom-section .media-newsroom-desc {
    color: var(--ink);
}

/* ==== Committee Role ==== */
.committee-role-section {
    background: #ffffff;
    padding: 120px 0;
}

.committee-role-section .committee-role-title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.committee-role-section .committee-role-title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.committee-role-section .committee-role-desc {
    color: var(--ink);
}

.committee-row {
    display: flex;
    flex-wrap: wrap;
}

.committee-col {
    width: 20%;
    padding: 0 12px;
}

.cr-card {
    position: relative;
    background: #fff;
    padding: 28px 22px 22px;
    min-height: 165px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .12);
    transition: .35s ease;
    overflow: hidden;
    height: 100%;
}

.cr-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #efefef;
}

.cr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
}

.cr-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff1d25;
    font-size: 28px;
    margin-bottom: 18px;
}

.cr-card h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--ink);
}

.fra-card {
    position: relative;
    background: #e5e5e5;
    padding: 35px;
    transition: .35s ease;
    overflow: hidden;
    height: 100%;
}

.fra-card:hover {
    transform: translateY(-6px);
}

.fra-card h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--paragon-red);
}

.fra-card p,
li {
    color: var(--ink);
    margin: 0;
}

.ci-card {
    position: relative;
    background: #e5e5e5;
    padding: 35px 32px;
    transition: .35s ease;
    overflow: hidden;
    height: 100%;
}

.ci-card:hover {
    transform: translateY(-6px);
    background: var(--paragon-red);
}

.ci-card p {
    color: var(--ink);
    margin: 0;
}

.ci-card:hover p {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .committee-col {
        width: 33.3333%;
    }
}

@media (max-width: 767.98px) {
    .committee-col {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .committee-col {
        width: 100%;
    }
}

/* ==== CAREERS ==== */
.careers-at-paragon {
    padding: 120px 0;
}

.recruitment-section {
    padding: 120px 0 0 0;
}

.title {
    color: var(--ink);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 0;
}

.title .accent {
    display: block;
    color: var(--paragon-red);
    font-style: italic;
    font-size: 40px;
}

.desc {
    color: var(--ink);
}

.life-at-paragon {
    padding: 0 0 120px 0;
}

.life-at-paragon img {
    width: 90%;
}

.life-at-paragon .title {
    margin-bottom: 65px;
}

.faq-section {
    padding: 60px 0 120px 0;
}

.faq-box {
    /* width: 1080px; */
    margin: auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 6px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.plus-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--paragon-red);
    border-radius: 50%;
    color: var(--paragon-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: .3s;
    flex-shrink: 0;
}

.plus-icon i,
.arrow {
    transition: all .3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.faq-item .arrow {
    font-size: 18px;
    transition: .3s;
}

.faq-answer {
    display: none;
    padding: 0 60px 25px;
    color: var(--ink);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-item.active .plus-icon {
    background: var(--paragon-red);
    color: #ffffff;
}

/* ==== LEGAL COMPLIANCE ==== */
.legal-compliance {
    padding: 60px 0 120px 0;
}

.compliance-table {
    border: 1px solid #bdbbbc;
}

.compliance-table thead th {
    background: var(--paragon-red);
    color: #ffffff;
    text-align: center;
    padding: 18px;
    font-weight: 700;
    border: 1px solid #bdbbbc;
}

.compliance-table td {
    padding: 30px;
    vertical-align: middle;
    border: 1px solid #bdbbbc;
    color: var(--ink);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: 2px solid var(--paragon-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    color: var(--paragon-red);
    font-size: 20px;
}

.compliance-table h6 {
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.table-link {
    color: var(--paragon-red);
    text-decoration: none;
    font-weight: 600;
}

.table-link:hover {
    text-decoration: underline;
}

@media (max-width:991px) {

    .compliance-table td {
        padding: 20px;
    }

    .icon-circle {
        width: 52px;
        height: 52px;
    }

    .icon-circle i {
        font-size: 24px;
    }

    .compliance-table h6 {
        font-size: 18px;
    }

    .compliance-table td {
        font-size: 15px;
    }
}

@media (max-width:767px) {

    .compliance-table thead th {
        font-size: 16px;
        padding: 15px;
    }

    .icon-circle {
        width: 46px;
        height: 46px;
    }

    .icon-circle i {
        font-size: 20px;
    }

    .compliance-table h6 {
        font-size: 16px;
    }

    .compliance-table td {
        padding: 15px;
        font-size: 14px;
    }
}

/* ==== FY REPORTS / POLICIES ==== */
.reports-section {
    padding: 60px 0 120px 0;
}

.doc-accordion .accordion-item {
    border: 1px solid #bdbbbc;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.doc-accordion .accordion-button {
    background: var(--paragon-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 1.4rem;
    border-radius: 0;
}

.doc-accordion .accordion-button:not(.collapsed) {
    background: var(--paragon-red);
    color: #ffffff;
    box-shadow: none;
}

.doc-accordion .accordion-button:focus {
    box-shadow: none;
}

.doc-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.doc-accordion .accordion-body {
    padding: 0;
}

.doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.doc-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.4rem;
    border-bottom: 1px solid #bdbbbc;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink);
}

.doc-list li:last-child {
    border-bottom: none;
}

.doc-list .doc-icon {
    color: var(--paragon-red);
    margin-right: .75rem;
    font-size: 1.05rem;
}

.doc-list .doc-download {
    color: var(--paragon-red);
    font-size: 1rem;
    text-decoration: none;
}

.doc-list .doc-download:hover {
    color: var(--paragon-red);
}

.doc-list a.doc-name {
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.doc-list a.doc-name:hover {
    color: var(--paragon-red);
}

/* ==== Contact us page ==== */
.desk-section {
    padding: 60px 0 120px 0;
}

.desk-section .contact-sidebar {
    background: var(--ink);
    color: #ffffff;
    padding: 30px;
    height: 100%;
}

.desk-section .contact-sidebar h5 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
}

.desk-section .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.desk-section .contact-item:last-child {
    margin-bottom: 0;
}

.desk-section .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--paragon-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    margin-right: 15px;
}

.desk-section .contact-item h6 {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

.desk-section .contact-item p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.5;
}

.desk-section .desk-tabs {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.desk-section .desk-tab-btn {
    flex: 1 1 0;
    min-width: 150px;
    background: #EDEDED;
    border: 1px solid #EDEDED;
    border-radius: 0;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 700;
    font-size: 16px;
}

.desk-section .desk-tab-btn i {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--ink);
}

.desk-section .desk-tab-btn.active {
    background: #ffffff;
    border: 1px solid var(--paragon-red);
    color: var(--paragon-red);
}

.desk-section .desk-tab-btn.active i {
    color: var(--paragon-red);
}

.desk-section .desk-form-panel {
    background: #FBF9F5;
    border: 1px solid #eee;
}

.desk-section .desk-form-header {
    background: var(--paragon-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    padding: 15px 25px;
}

.desk-section .desk-form-body {
    padding: 25px;
}

.desk-section .form-check {
    display: flex;
    gap: 5px;
}

.desk-section .desk-note {
    background: #EDEDED;
    border-left: 3px solid var(--paragon-red);
    font-size: 14px;
    color: var(--ink);
    padding: .7rem 1rem;
    margin-bottom: 1.4rem;
}

.desk-section .desk-form-body label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--ink);
}

.desk-section .desk-form-body label .req {
    color: var(--paragon-red);
}

.desk-section .desk-form-body .form-control,
.desk-section .desk-form-body .form-select {
    border-radius: 0;
    border: 1px solid #E8E1D5;
    padding: 12px 16px;
    font-size: 14px;
    transition: .3s;
}

.desk-section .desk-upload-box {
    border: 1.5px dashed #ccc;
    background: #fff;
    border-radius: 2px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .78rem;
    color: #888;
    cursor: pointer;
}

.desk-section .desk-upload-box i {
    color: var(--paragon-red);
    font-size: 1.1rem;
}

.desk-section .btn-submit-enquiry {
    background: var(--paragon-red);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    padding: 19px 38px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: background .25s ease, color .25s ease, transform .2s ease;
}

.desk-section .btn-submit-enquiry:hover {
    background: var(--paragon-red);
    color: #fff;
}

.desk-section .text-muted {
    color: var(--ink) !important;
}

.desk-section .desk-redirect-panel {
    background: #FBF9F5;
    border: 1px solid #eee;
    padding: 3rem 1.5rem;
    text-align: center;
}

.desk-section .btn-redirect-order {
    background: var(--paragon-red);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    padding: 19px 38px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: background .25s ease, color .25s ease, transform .2s ease;
}

.desk-section .btn-redirect-order:hover {
    background: var(--paragon-red);
    color: #ffffff;
}

.desk-section .form-check-input:checked {
    background-color: var(--paragon-red);
    border-color: var(--paragon-red);
}

.desk-section .form-check-input:focus {
    box-shadow: none;
}

#our-story,
#about-brand,
#manufacturing-excellence,
#founders,
#directors,
#leadership,
#responisibility,
#paragon,
#eeken,
#stimulus {
    scroll-margin-top: 150px;
}

/* ==== Blog Inner ==== */
.blog {
    padding: 120px 0;
}

.blog nav {
    font-size: 14px;
}

.blog .breadcrumb-item a {
    color: var(--paragon-red);
    text-decoration: none;
}

.blog .breadcrumb-item.active {
    color: var(--ink);
}

.blog .blog-head h1 {
    color: var(ink);
    font-weight: 700;
    font-size: 40px;
    margin: 20px 0;
}

.blog .blog-head .meta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog .blog-head .meta-row span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog .blog-head .social-share a {
    color: var(--ink);
    margin-right: 10px;
}

.blog .blog-head .social-share a:hover {
    color: var(--paragon-red);
}

.blog .blog-head .blog-details hr {
    margin-bottom: 30px;
}

.blog .blog-head .blog-details .quickpick {
    background: #ffffff;
    border-left: 4px solid var(--paragon-red);
    padding: 20px 22px;
    margin: 0 0 34px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog .blog-head .blog-details h2 {
    color: var(ink);
    font-weight: 700;
    font-size: 26px;
    margin: 20px 0;
}

.blog .blog-head .blog-details h3 {
    color: var(ink);
    font-weight: 700;
    font-size: 24px;
    margin: 20px 0;
}

.blog .blog-head .blog-details h4 {
    color: var(ink);
    font-weight: 700;
    font-size: 22px;
    margin: 20px 0;
}

.blog .blog-head .blog-details table tr th {
    padding: 4px 8px;
}

.blog .blog-head .blog-details table tr td {
    padding: 4px 8px;
}

.blog .blog-head .blog-details .product-block {
    margin: 26px 0 8px;
}

.blog .blog-head .blog-details .product-block h3 {
    margin-bottom: 14px;
}

.blog .blog-head .blog-details ul.products {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
}

.blog .blog-head .blog-details ul.products li {
    background: #fff;
    border-left: 4px solid var(--paragon-red);
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog .blog-head .blog-details ul.products li a {
    color: var(--paragon-red);
    text-decoration: none;
    font-weight: 700;
}

.blog .blog-head .blog-details ul.products li a:hover {
    text-decoration: underline;
}

.blog .blog-head .blog-details .shop-link {
    display: inline-block;
    margin: 6px 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: var(--paragon-red);
    padding: 9px 18px;
    text-decoration: none;
}

.blog .blog-head .blog-details .shop-link:hover {
    background: var(--ink);
}

.blog .blog-head .blog-details a {
    color: var(--paragon-red);
}

.blog .blog-head .blog-details a:hover {
    color: var(--ink);
}

.blog .related-blogs {
    text-decoration: none;
}

.blog .related-blog {
    border: 1px solid #dadada;
    padding: 19px 15px;
}

.blog .related-blog-details h5 {
    color: var(--paragon-red);
    font-size: 20px;
    font-weight: 600;
}

/* ==== Footer ==== */
.site-footer {
    background: var(--ink);
    padding: 90px 0 0;
}

.site-footer .footer-logo .brand-box {
    padding: 8px 16px;
}

.site-footer .footer-logo .brand-text {
    font-size: 24px;
}

.site-footer .footer-heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 10px;
}

.site-footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color .2s ease, padding-left .2s ease;
}

.site-footer .footer-links a:hover {
    color: var(--paragon-red);
    padding-left: 4px;
}

.site-footer .corp-office-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    margin: 48px 0 18px;
}

.site-footer .corp-office-text {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 368px;
}

.site-footer .social-icons {
    display: flex;
    gap: 14px;
}

.site-footer .social-icons a {
    color: #ffffff;
}

.site-footer .social-icons a:hover {
    color: var(--paragon-red);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #FFFFFF0D;
    margin-top: 25px;
    padding: 20px 0;
    font-size: 16px;
    color: #ffffff;
}

.footer-bottom a {
    color: var(--paragon-red);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--paragon-red);
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 44px;
        text-align: left;
    }

    .site-footer .col-footer {
        margin-bottom: 34px;
    }

    .footer-bottom .row>div {
        text-align: center !important;
        margin-bottom: 8px;
    }
}
/*Cookies Button Colour Customise*/
.cky-btn-reject{
    color: #FFFFFF !important;
    border-color: var(--ink) !important;
    background-color: var(--ink) !important;
}
.cky-btn-accept {
    color: #FFFFFF !important;
    border-color: var(--ink) !important;
    background-color: var(--ink) !important;
}
.cky-btn-customize {
    color: var(--ink) !important;
    border-color: var(--ink) !important;
    background-color: transparent !important;
}
.cky-btn-preferences{
        color: #FFFFFF !important;
    border-color: var(--ink) !important;
    background-color: var(--ink) !important;
}