/* =============================================
   OLD EXPRESS - Custom Stylesheet
   Brand Colors: Red #E31E24, Black #1A1A1A, White #FFFFFF
   ============================================= */

/* --- CSS Variables --- */
:root {
    --oe-red: #E31E24;
    --oe-red-dark: #B8181D;
    --oe-red-light: #FF3B41;
    --oe-black: #1A1A1A;
    --oe-dark: #2D2D2D;
    --oe-gray-dark: #444444;
    --oe-gray: #777777;
    --oe-gray-light: #F7F8FA;
    --oe-gray-border: #E5E7EB;
    --oe-white: #FFFFFF;
    --oe-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    --oe-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.13);
    --oe-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --oe-radius: 8px;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--oe-black);
    background-color: var(--oe-white);
    overflow-x: hidden;
    line-height: 1.75;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--oe-black);
    line-height: 1.3;
}

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

a:hover {
    color: var(--oe-red-dark);
}

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

section {
    padding: 90px 0;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--oe-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--oe-gray-border);
    border-top-color: var(--oe-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--oe-black);
    color: var(--oe-white);
    padding: 8px 0;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--oe-transition);
}

.top-bar a:hover {
    color: var(--oe-red);
}

.top-bar .top-info i {
    color: var(--oe-red);
    margin-right: 5px;
}

.top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--oe-white);
    margin-left: 6px;
    font-size: 0.8rem;
    transition: var(--oe-transition);
}

.top-bar .social-links a:hover {
    background: var(--oe-red);
    transform: translateY(-2px);
}

/* --- Navbar --- */
.navbar {
    background-color: var(--oe-white);
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: var(--oe-transition);
    z-index: 1030;
}

.navbar.scrolled {
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 8px 0;
}

.navbar-brand img {
    height: 52px;
    transition: var(--oe-transition);
}

.navbar.scrolled .navbar-brand img {
    height: 44px;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--oe-black) !important;
    padding: 22px 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--oe-transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 16px;
    width: 0;
    height: 2px;
    /* background-color: var(--oe-red); */
    transition: var(--oe-transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 32px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--oe-red) !important;
}

/* Dropdown */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 0 0 var(--oe-radius) var(--oe-radius);
    box-shadow: var(--oe-shadow-hover);
    padding: 10px 0;
    margin-top: 0;
    border-top: 3px solid var(--oe-red);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .dropdown-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 9px 24px;
    color: var(--oe-dark);
    transition: var(--oe-transition);
    position: relative;
}

.navbar-nav .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: rgba(227, 30, 36, 0.06);
    transition: var(--oe-transition);
}

.navbar-nav .dropdown-item:hover::before {
    width: 100%;
}

.navbar-nav .dropdown-item:hover {
    color: var(--oe-red);
    padding-left: 30px;
    background: transparent;
}

/* --- Hero Carousel --- */
.hero-carousel {
    position: relative;
}

.hero-carousel .carousel-item {
    height: 620px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-carousel .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    max-width: 650px;
    padding: 0;
}

.hero-carousel .carousel-caption .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--oe-red);
    margin-bottom: 14px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.3s;
}

.hero-carousel .carousel-caption h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--oe-white);
    margin-bottom: 20px;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.5s;
}

.hero-carousel .carousel-caption p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.7s;
}

.carousel-item.active .hero-subtitle,
.carousel-item.active h1,
.carousel-item.active p,
.carousel-item.active .hero-btns {
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

.carousel-item.active .hero-subtitle { animation-delay: 0.3s; }
.carousel-item.active h1 { animation-delay: 0.5s; }
.carousel-item.active p { animation-delay: 0.7s; }
.carousel-item.active .hero-btns { animation-delay: 0.9s; }

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

.hero-btns {
    display: flex;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-carousel .carousel-indicators {
    bottom: 25px;
}

.hero-carousel .carousel-indicators button {
    width: 35px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: var(--oe-transition);
}

.hero-carousel .carousel-indicators button.active {
    background-color: var(--oe-red);
    width: 50px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--oe-transition);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev { left: 25px; }
.hero-carousel .carousel-control-next { right: 25px; }

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--oe-red);
}

/* --- Buttons --- */
.btn-oe-red {
    background-color: var(--oe-red);
    color: var(--oe-white);
    border: 2px solid var(--oe-red);
    padding: 13px 34px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--oe-radius);
    transition: var(--oe-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-oe-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--oe-red-dark);
    transition: var(--oe-transition);
    z-index: -1;
}

.btn-oe-red:hover {
    color: var(--oe-white);
    border-color: var(--oe-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.35);
}

.btn-oe-red:hover::before {
    left: 0;
}

.btn-oe-outline {
    background-color: transparent;
    color: var(--oe-white);
    border: 2px solid var(--oe-white);
    padding: 13px 34px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--oe-radius);
    transition: var(--oe-transition);
}

.btn-oe-outline:hover {
    background-color: var(--oe-white);
    color: var(--oe-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-oe-dark {
    background-color: var(--oe-black);
    color: var(--oe-white);
    border: 2px solid var(--oe-black);
    padding: 13px 34px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--oe-radius);
    transition: var(--oe-transition);
}

.btn-oe-dark:hover {
    background-color: var(--oe-red);
    border-color: var(--oe-red);
    color: var(--oe-white);
    transform: translateY(-2px);
}

/* ==============================================
   SECTION HEADER - Matching Reference Design
   Subtitle + Heading inline, decorative divider
   ============================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--oe-red);
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    color: var(--oe-black);
}

/* Decorative Divider: ---- RED LINE ---- */
.section-header .header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 20px;
    width: fit-content;
}

.section-header .header-line::before,
.section-header .header-line::after {
    content: '';
    width: 8px;
    height: 3px;
    background: var(--oe-black);
    border-radius: 2px;
    display: block;
    position: static;
    top: auto;
}

.section-header .header-line-inner {
    width: 50px;
    height: 3px;
    background: var(--oe-red);
    border-radius: 2px;
}

.section-header p {
    font-size: 1rem;
    color: var(--oe-gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

/* Left-aligned section headers */
.section-header.text-start {
    text-align: left;
}

.section-header.text-start .header-line {
    margin-left: 0;
}

.section-header.text-start p {
    margin-left: 0;
}

/* ==============================================
   PAGE BANNER
   ============================================== */
.page-banner {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(227, 30, 36, 0.6) 100%);
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
    color: var(--oe-white);
}

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--oe-white);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-banner .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    font-weight: 500;
}

.page-banner .breadcrumb-item a:hover {
    color: var(--oe-white);
}

.page-banner .breadcrumb-item.active {
    color: var(--oe-red);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ==============================================
   FEATURE CARDS (Home)
   ============================================== */
.feature-cards {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--oe-white);
    border-radius: var(--oe-radius);
    padding: 38px 28px;
    text-align: center;
    box-shadow: var(--oe-shadow);
    transition: var(--oe-transition);
    border-bottom: 3px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--oe-shadow-hover);
    border-bottom-color: var(--oe-red);
}

.feature-card .icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--oe-red), var(--oe-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--oe-transition);
}

.feature-card:hover .icon-box {
    transform: rotateY(180deg);
}

.feature-card .icon-box i {
    font-size: 1.6rem;
    color: var(--oe-white);
}

.feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--oe-gray);
    margin: 0;
    line-height: 1.7;
}

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

.about-section .about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--oe-transition);
}

.about-section .about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-section .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--oe-red);
    color: var(--oe-white);
    padding: 20px 25px;
    border-radius: var(--oe-radius);
    text-align: center;
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
}

.about-section .experience-badge .years {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-section .experience-badge span:last-child {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.about-content .red-text {
    color: var(--oe-red);
}

.about-content p {
    color: var(--oe-gray-dark);
    margin-bottom: 16px;
}

.about-content .about-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.about-content .about-list li {
    padding: 9px 0;
    font-weight: 500;
    color: var(--oe-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-content .about-list li i {
    color: var(--oe-red);
    font-size: 1rem;
}

/* ==============================================
   SERVICE CARDS
   ============================================== */
.service-card {
    background: var(--oe-white);
    border-radius: var(--oe-radius);
    overflow: hidden;
    box-shadow: var(--oe-shadow);
    transition: var(--oe-transition);
    height: 100%;
}

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

.service-card .service-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-card .service-img .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(227, 30, 36, 0.9), transparent 60%);
    opacity: 0;
    transition: var(--oe-transition);
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

.service-card:hover .service-img .service-overlay {
    opacity: 1;
}

.service-card .service-img .service-overlay a {
    color: var(--oe-white);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .service-body {
    padding: 28px;
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--oe-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -52px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    transition: var(--oe-transition);
}

.service-card:hover .service-icon {
    background: var(--oe-black);
}

.service-card .service-icon i {
    font-size: 1.3rem;
    color: var(--oe-white);
}

.service-card .service-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 16px 0 10px;
}

.service-card .service-body p {
    font-size: 0.9rem;
    color: var(--oe-gray);
    margin: 0;
    line-height: 1.7;
}

/* ==============================================
   STATS / COUNTER SECTION
   ============================================== */
.stats-section {
    background: linear-gradient(135deg, var(--oe-black) 0%, #333 100%);
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.08);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.06);
}

.stat-item {
    text-align: center;
    color: var(--oe-white);
    padding: 22px;
}

.stat-item .stat-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(227, 30, 36, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--oe-transition);
}

.stat-item:hover .stat-icon {
    background: var(--oe-red);
    border-color: var(--oe-red);
    transform: scale(1.1);
}

.stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--oe-red);
    transition: var(--oe-transition);
}

.stat-item:hover .stat-icon i {
    color: var(--oe-white);
}

.stat-item .counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.stat-item span:last-child {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ==============================================
   WHY CHOOSE US
   ============================================== */
.why-choose-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--oe-radius);
    transition: var(--oe-transition);
    border: 1px solid var(--oe-gray-border);
    height: 100%;
    background: var(--oe-white);
}

.why-choose-card:hover {
    border-color: var(--oe-red);
    box-shadow: var(--oe-shadow-hover);
    transform: translateY(-8px);
}

.why-choose-card .wc-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--oe-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--oe-transition);
}

.why-choose-card:hover .wc-icon {
    background: var(--oe-red);
}

.why-choose-card .wc-icon i {
    font-size: 2rem;
    color: var(--oe-red);
    transition: var(--oe-transition);
}

.why-choose-card:hover .wc-icon i {
    color: var(--oe-white);
}

.why-choose-card h5 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.why-choose-card p {
    font-size: 0.9rem;
    color: var(--oe-gray);
    margin: 0;
    line-height: 1.7;
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonial-section {
    background-color: var(--oe-gray-light);
}

.testimonial-card {
    background: var(--oe-white);
    border-radius: var(--oe-radius);
    padding: 38px;
    box-shadow: var(--oe-shadow);
    position: relative;
    transition: var(--oe-transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--oe-shadow-hover);
    transform: translateY(-5px);
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: rgba(227, 30, 36, 0.12);
    position: absolute;
    top: 15px;
    right: 25px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--oe-gray-dark);
    font-style: italic;
    line-height: 1.85;
    margin-bottom: 22px;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--oe-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oe-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-card .client-details h6 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-card .client-details small {
    color: var(--oe-gray);
    font-size: 0.85rem;
}

/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section {
    background: linear-gradient(135deg, var(--oe-red) 0%, var(--oe-red-dark) 100%);
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
    font-size: 2.3rem;
    color: var(--oe-white);
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* ==============================================
   TEAM SECTION
   ============================================== */
.team-card {
    text-align: center;
    border-radius: var(--oe-radius);
    overflow: hidden;
    box-shadow: var(--oe-shadow);
    transition: var(--oe-transition);
    background: var(--oe-white);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--oe-shadow-hover);
}

.team-card .team-img {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--oe-gray-light);
}

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

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-card .team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    padding: 22px;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: var(--oe-transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--oe-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oe-white);
    font-size: 0.85rem;
    transition: var(--oe-transition);
}

.team-card .team-social a:hover {
    background: var(--oe-white);
    color: var(--oe-red);
}

.team-card .team-info {
    padding: 24px 15px;
}

.team-card .team-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-card .team-info p {
    color: var(--oe-red);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ==============================================
   TRACKING SECTION
   ============================================== */
.tracking-section {
    background-color: var(--oe-gray-light);
}

.tracking-form-wrapper {
    background: var(--oe-white);
    border-radius: var(--oe-radius);
    padding: 48px;
    box-shadow: var(--oe-shadow);
}

.tracking-form-wrapper .form-control {
    height: 55px;
    border: 2px solid var(--oe-gray-border);
    border-radius: var(--oe-radius);
    font-size: 1rem;
    padding: 10px 20px;
    transition: var(--oe-transition);
}

.tracking-form-wrapper .form-control:focus {
    border-color: var(--oe-red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08);
}

.tracking-result {
    margin-top: 30px;
    display: none;
}

.tracking-result .timeline {
    position: relative;
    padding-left: 30px;
}

.tracking-result .timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--oe-gray-border);
}

.tracking-result .timeline-item {
    position: relative;
    padding-bottom: 25px;
}

.tracking-result .timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--oe-red);
    border: 2px solid var(--oe-white);
    box-shadow: 0 0 0 2px var(--oe-red);
}

/* ==============================================
   CONTACT SECTION
   ============================================== */
.contact-card {
    text-align: center;
    padding: 38px 22px;
    border-radius: var(--oe-radius);
    transition: var(--oe-transition);
    height: 100%;
    border: 1px solid var(--oe-gray-border);
    background: var(--oe-white);
}

.contact-card:hover {
    border-color: var(--oe-red);
    box-shadow: var(--oe-shadow-hover);
    transform: translateY(-8px);
}

.contact-card .contact-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--oe-transition);
}

.contact-card:hover .contact-icon {
    background: var(--oe-red);
}

.contact-card .contact-icon i {
    font-size: 1.5rem;
    color: var(--oe-red);
    transition: var(--oe-transition);
}

.contact-card:hover .contact-icon i {
    color: var(--oe-white);
}

.contact-card h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.contact-card p, .contact-card a {
    font-size: 0.9rem;
    color: var(--oe-gray);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--oe-gray-border);
    border-radius: var(--oe-radius);
    padding: 13px 18px;
    font-size: 0.95rem;
    transition: var(--oe-transition);
    background-color: var(--oe-white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--oe-red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* --- Map --- */
.map-wrapper {
    height: 400px;
    border-radius: var(--oe-radius);
    overflow: hidden;
    box-shadow: var(--oe-shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==============================================
   SHIPPING GUIDELINE
   ============================================== */
.guideline-card {
    border: 1px solid var(--oe-gray-border);
    border-radius: var(--oe-radius);
    padding: 32px;
    transition: var(--oe-transition);
    height: 100%;
    background: var(--oe-white);
}

.guideline-card:hover {
    border-color: var(--oe-red);
    box-shadow: var(--oe-shadow);
    transform: translateY(-5px);
}

.guideline-card .guideline-icon {
    width: 62px;
    height: 62px;
    border-radius: var(--oe-radius);
    background: rgba(227, 30, 36, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--oe-transition);
}

.guideline-card:hover .guideline-icon {
    background: var(--oe-red);
}

.guideline-card .guideline-icon i {
    font-size: 1.5rem;
    color: var(--oe-red);
    transition: var(--oe-transition);
}

.guideline-card:hover .guideline-icon i {
    color: var(--oe-white);
}

.guideline-card h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.guideline-card p {
    font-size: 0.9rem;
    color: var(--oe-gray);
    margin: 0;
    line-height: 1.7;
}

/* ==============================================
   TERMS & CONDITIONS
   ============================================== */
.terms-content h4 {
    font-size: 1.3rem;
    margin: 30px 0 14px;
    padding-left: 16px;
    border-left: 3px solid var(--oe-red);
}

.terms-content p {
    color: var(--oe-gray-dark);
    margin-bottom: 14px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.terms-content ul li {
    color: var(--oe-gray-dark);
    padding: 4px 0;
    position: relative;
}

/* ==============================================
   MISSION & VISION
   ============================================== */
.mission-card, .vision-card {
    padding: 45px;
    border-radius: var(--oe-radius);
    height: 100%;
    transition: var(--oe-transition);
}

.mission-card {
    background: linear-gradient(135deg, var(--oe-red) 0%, var(--oe-red-dark) 100%);
    color: var(--oe-white);
}

.vision-card {
    background: linear-gradient(135deg, var(--oe-black) 0%, var(--oe-dark) 100%);
    color: var(--oe-white);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--oe-shadow-hover);
}

.mission-card h3, .vision-card h3 {
    color: var(--oe-white);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.mission-card p, .vision-card p {
    font-size: 1rem;
    line-height: 1.85;
    opacity: 0.9;
}

.mission-card i, .vision-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.core-value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: var(--oe-radius);
    border: 1px solid var(--oe-gray-border);
    transition: var(--oe-transition);
    height: 100%;
    background: var(--oe-white);
}

.core-value-item:hover {
    border-color: var(--oe-red);
    box-shadow: var(--oe-shadow);
    transform: translateY(-4px);
}

.core-value-item .value-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(227, 30, 36, 0.15);
    line-height: 1;
    flex-shrink: 0;
}

.core-value-item h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.core-value-item p {
    font-size: 0.88rem;
    color: var(--oe-gray);
    margin: 0;
}

/* ==============================================
   SERVICE DETAIL PAGE
   ============================================== */
.service-detail-img {
    border-radius: var(--oe-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--oe-shadow);
}

.service-detail-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-img:hover img {
    transform: scale(1.05);
}

.service-detail-content h3 {
    font-size: 1.65rem;
    margin-bottom: 18px;
}

.service-detail-content p {
    color: var(--oe-gray-dark);
    margin-bottom: 16px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
}

.service-feature-list li {
    padding: 11px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--oe-gray-border);
    font-weight: 500;
    color: var(--oe-dark);
}

.service-feature-list li:last-child {
    border-bottom: none;
}

.service-feature-list li i {
    color: var(--oe-red);
    font-size: 1.1rem;
}

.service-sidebar {
    background: var(--oe-gray-light);
    border-radius: var(--oe-radius);
    padding: 32px;
}

.service-sidebar .sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--oe-red);
}

.service-sidebar .service-list {
    list-style: none;
    padding: 0;
}

.service-sidebar .service-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--oe-dark);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: var(--oe-radius);
    transition: var(--oe-transition);
}

.service-sidebar .service-list li a:hover,
.service-sidebar .service-list li a.active {
    background: var(--oe-red);
    color: var(--oe-white);
}

.service-sidebar .service-list li a i {
    font-size: 0.8rem;
}

.service-sidebar .sidebar-cta {
    background: linear-gradient(135deg, var(--oe-red) 0%, var(--oe-red-dark) 100%);
    border-radius: var(--oe-radius);
    padding: 28px;
    color: var(--oe-white);
    text-align: center;
    margin-top: 22px;
}

.service-sidebar .sidebar-cta h5 {
    color: var(--oe-white);
    margin-bottom: 10px;
}

.service-sidebar .sidebar-cta p {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* ==============================================
   PROCESS / HOW IT WORKS STEPS
   ============================================== */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step .step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--oe-red);
    color: var(--oe-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--oe-transition);
}

.process-step:hover .step-number {
    background: var(--oe-black);
    transform: scale(1.1);
}

.process-step h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--oe-gray);
    margin: 0;
}

/* ==============================================
   SISTER CONCERNS PAGE
   ============================================== */
.sister-card {
    background: var(--oe-white);
    border-radius: var(--oe-radius);
    overflow: hidden;
    box-shadow: var(--oe-shadow);
    transition: var(--oe-transition);
    height: 100%;
}

.sister-card:hover {
    box-shadow: var(--oe-shadow-hover);
    transform: translateY(-8px);
}

.sister-card-img {
    position: relative;
    height: 425px;
    overflow: hidden;
}

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

.sister-card:hover .sister-card-img img {
    transform: scale(1.08);
}

.sister-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--oe-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
    z-index: 3;
}

.sister-card-badge i {
    font-size: 1.2rem;
    color: var(--oe-white);
}

.sister-card-body {
    padding: 30px;
    position: relative;
}

.sister-card-number {
    position: absolute;
    top: -18px;
    left: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(227, 30, 36, 0.08);
    line-height: 1;
    pointer-events: none;
}

.sister-card-body h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sister-card-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--oe-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.sister-card-body > p {
    font-size: 0.9rem;
    color: var(--oe-gray-dark);
    line-height: 1.75;
    margin-bottom: 18px;
}

.sister-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sister-service-list li {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--oe-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sister-service-list li i {
    color: var(--oe-red);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.sister-card-industry {
    padding-top: 16px;
    border-top: 1px solid var(--oe-gray-border);
}

.sister-card-industry span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--oe-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sister-card-industry span i {
    color: var(--oe-red);
}

@media (max-width: 575.98px) {
    .sister-service-list {
        grid-template-columns: 1fr;
    }
}

/* Sister Concern Cards on Home Page */
.sister-home-card {
    display: block;
    background: var(--oe-white);
    border-radius: var(--oe-radius);
    overflow: hidden;
    box-shadow: var(--oe-shadow);
    transition: var(--oe-transition);
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.sister-home-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--oe-shadow-hover);
    color: inherit;
}

.sister-home-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.sister-home-card:hover .sister-home-img img {
    transform: scale(1.1);
}

.sister-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--oe-transition);
}

.sister-home-card:hover .sister-home-overlay {
    opacity: 1;
}

.sister-home-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--oe-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
}

.sister-home-icon i {
    font-size: 1.1rem;
    color: var(--oe-white);
}

.sister-home-body {
    padding: 22px;
}

.sister-home-location {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--oe-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sister-home-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 8px 0;
}

.sister-home-body p {
    font-size: 0.88rem;
    color: var(--oe-gray);
    margin: 0 0 14px;
    line-height: 1.65;
}

.sister-home-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--oe-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--oe-transition);
}

.sister-home-card:hover .sister-home-link {
    letter-spacing: 1.5px;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: var(--oe-black);
    color: rgba(255, 255, 255, 0.75);
    padding: 75px 0 0;
}

.footer h5 {
    color: var(--oe-white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--oe-red);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer .footer-about img {
    height: 48px;
    margin-bottom: 18px;
}

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

.footer .footer-links li {
    padding: 6px 0;
}

.footer .footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--oe-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .footer-links li a:hover {
    color: var(--oe-red);
    padding-left: 6px;
}

.footer .footer-links li a i {
    font-size: 0.7rem;
    color: var(--oe-red);
}

.footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    list-style: none;
}

.footer .footer-contact li i {
    color: var(--oe-red);
    margin-top: 4px;
    font-size: 1rem;
}

.footer .footer-contact li span {
    font-size: 0.9rem;
}

.footer .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oe-white);
    font-size: 0.9rem;
    transition: var(--oe-transition);
}

.footer .footer-social a:hover {
    background: var(--oe-red);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--oe-red);
}

/* ==============================================
   BACK TO TOP
   ============================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--oe-red);
    color: var(--oe-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--oe-transition);
    z-index: 999;
    box-shadow: 0 4px 18px rgba(227, 30, 36, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--oe-black);
    transform: translateY(-4px);
}

/* ==============================================
   IMAGE HOVER EFFECTS
   ============================================== */
.img-hover-zoom {
    overflow: hidden;
    border-radius: var(--oe-radius);
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.08);
}

.img-hover-shine {
    position: relative;
    overflow: hidden;
    border-radius: var(--oe-radius);
}

.img-hover-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    transition: 0.5s;
}

.img-hover-shine:hover::before {
    left: 125%;
}

/* ==============================================
   SCROLL ANIMATIONS
   ============================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 10px 16px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-carousel .carousel-item {
        height: 480px;
    }

    .hero-carousel .carousel-caption h1 {
        font-size: 2rem;
    }

    .hero-carousel .carousel-caption {
        max-width: 100%;
        padding: 0 20px;
    }

    section {
        padding: 65px 0;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-banner {
        height: 260px;
    }

    .page-banner h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .feature-cards {
        margin-top: -40px;
    }

    .navbar-collapse {
        background: var(--oe-white);
        padding: 15px;
        margin-top: 10px;
        border-radius: var(--oe-radius);
        box-shadow: var(--oe-shadow);
    }
}

@media (max-width: 767.98px) {
    .hero-carousel .carousel-item {
        height: 420px;
    }

    .hero-carousel .carousel-caption h1 {
        font-size: 1.6rem;
    }

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

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .stat-item .counter {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header .section-subtitle {
        font-size: 0.72rem;
        letter-spacing: 3px;
    }

    .tracking-form-wrapper {
        padding: 28px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .top-bar .row > div:first-child {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel .carousel-item {
        height: 380px;
    }

    .page-banner h1 {
        font-size: 1.5rem;
    }

    .feature-cards {
        margin-top: 0;
    }

    .footer {
        padding: 50px 0 0;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }
}
