/* ============================================
   Global Styles & Variables
   ============================================ */
   :root {
    --primary-red: #C62828;
    --dark-red: #B71C1C;
    --dark-blue: #1B193E;
    --darker-blue: #1a1a2e;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --light-purple: #9b59b6;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* ============================================
   Header Styles
   ============================================ */

/* Header Wrapper */
.header-wrapper {
    background-color: var(--primary-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding-left: 5%;
    padding-right: 5%;
}

/* Top Red Bar */
.header-top-bar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.talk-to-expert-box {
    font-weight: 500;
    color: var(--white);
    padding-top: 5px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    /* border: 1px solid var(--light-purple); */
    border-radius: 3px;
    display: inline-block;
}

.header-phone,
.header-email {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
    font-size: 14px;
     padding-top: 5px;
    padding-bottom: 15px;
}

.header-phone:hover,
.header-email:hover {
    opacity: 0.8;
    color: var(--white);
    text-decoration: none;
}

.header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* White Separator Line */
.header-separator {
    width: 100%;
    height: 1px;
    background-color: var(--white);
    margin: 0;
}

/* Main Navigation Bar */
.header-main {
    background-color: var(--primary-red);
    /* padding: 15px 0; */
    /* padding-bottom: 10px; */
    /* padding-top: 10px; */
    position: relative;
    z-index: 100;
}

.header-logo-section {
    display: flex;
    align-items: center;
}

.header-logo-link {
    /* text-decoration: none; */
    /* display: flex; */
    /* align-items: center; */
    /* gap: 15px; */
}

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Circular Logo */
.header-logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--dark-blue) 50%, var(--primary-red) 50%, var(--primary-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    border: 2px solid var(--white);
}

.header-logo-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.3) 2px, rgba(255,255,255,0.3) 4px);
}

.eagle-logo {
    width: 100%;
    /* height: 50px; */
    /* position: relative; */
    /* z-index: 1; */
    /* filter: brightness(0) invert(1); */
}

/* Logo Text Container - Stacked Vertically */
.header-logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line-1,
.logo-line-2 {
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.header-logo-separator {
    width: 1px;
    height: 20px;
    background-color: var(--white);
    margin: 5px 0;
}

.header-logo-subtitle {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

/* Tagline Container - Stacked Vertically */
.header-tagline-container {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.3);
}

.header-tagline {
    color: var(--white);
    font-size: 12px;
    font-weight: normal;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

/* Navigation Section */
.header-nav-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.header-cta-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}
.header-nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: opacity 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu li a:hover {
    opacity: 0.8;
    color: var(--white);
    text-decoration: none;
}

.nav-menu li a.active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.nav-menu li.dropdown.active > a.dropdown-toggle {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

/* Dropdown Menu Styles */
.nav-menu li.dropdown {
    position: relative;
}

.nav-menu li.dropdown {
    position: relative;
    margin-top: 5px;
}

.nav-menu li.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    cursor: pointer;
}

/* Hide Bootstrap's default dropdown arrow if it exists */
.nav-menu li.dropdown .dropdown-toggle::after,
.nav-menu li.dropdown .dropdown-toggle::before {
    display: none !important;
    content: none !important;
}

.nav-menu li.dropdown .dropdown-toggle .dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
    display: inline-block;
}

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

.nav-menu li.dropdown .dropdown-menu {
    position: absolute;
    top: calc(100%);
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    display: block !important;
    pointer-events: none;
    border-radius: 4px;
}

.nav-menu li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
    pointer-events: auto;
}

.nav-menu li.dropdown .dropdown-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li.dropdown .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-menu li.dropdown .dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-menu li.dropdown .dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-red);
    padding-left: 25px;
    opacity: 1;
}

/* CTA Button - White Background with Red Text - Enhanced to Stand Out */
.header-cta-button {
    background-color: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
    padding: 12px 14px!important;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 0 rgba(255,255,255,0.4);
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.header-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.header-cta-button:hover {
    background-color: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 4px rgba(255,255,255,0.2);
    border-color: var(--white);
}

.header-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.header-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle .navbar-toggler {
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--white);
    padding: 5px 10px;
}

.mobile-menu {
    display: none;
    background-color: var(--primary-red);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu.show {
    display: block;
}

.mobile-menu .collapse-menu-item {
    display: block;
    padding: 10px 0;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu .collapse-menu-item:hover {
    opacity: 0.8;
    color: var(--white);
    text-decoration: none;
}

.mobile-menu .collapse-menu-item.active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: 600;
}

.mobile-menu .collapse-cta {
    background-color: var(--white);
    color: var(--primary-red);
    padding: 12px 28px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.mobile-menu .collapse-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    text-decoration: none;
    color: var(--primary-red);
}

.mobile-menu .mobile-submenu {
    padding-left: 20px;
    margin-top: 5px;
}

.mobile-menu .mobile-submenu .submenu-item {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    color: var(--white);
    padding: 40px 0;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    max-width: 500px;
}

/* ============================================
   Trusted Partners Section
   ============================================ */
/* Who We Serve Section */
.who-we-serve-section {
    padding: 20px 0;
    background-color: var(--light-gray);
}

.who-we-serve-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.who-we-serve-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.who-we-serve-item {
    margin-bottom: 30px;
}

.who-we-serve-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.who-we-serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.who-we-serve-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-serve-icon i {
    font-size: 48px;
    color: var(--primary-red);
    transition: transform 0.3s ease, color 0.3s ease;
}

.who-we-serve-card:hover .who-we-serve-icon i {
    transform: scale(1.1);
    color: var(--dark-red);
}

.who-we-serve-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.who-we-serve-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.who-we-serve-cta {
    margin-top: 40px;
}

.who-we-serve-cta-text {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.who-we-serve-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.who-we-serve-contact-btn {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.who-we-serve-contact-btn:hover {
    background-color: var(--dark-red);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.who-we-serve-services-btn {
    background-color: transparent;
    color: var(--primary-red);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-red);
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.who-we-serve-services-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.trusted-partners-section {
    /* background-color: var(--darker-blue); */
    color: var(--white);
    padding: 60px 0;
}

.partners-heading {
    font-size: 48px;
    font-weight: bold;
    /* margin-bottom: 15px; */
    color: black;
}

.partners-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: black;
}

.partners-carousel {
    margin: 40px 0;
    position: relative;
}

.partners-carousel:not(.slick-initialized) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partners-carousel.slick-initialized {
    display: block;
}

.partners-carousel .slick-slide {
    padding: 0 15px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    width: 185px!important;
}

.partners-carousel .slick-list {
    margin: 0 -15px;
    height: 100px;
}

.partners-carousel .slick-track {
    display: flex;
    align-items: center;
    height: 100px;
}

/* Style images directly in carousel */
.partners-carousel img {
    /* height: 176px !important; */
    object-fit: contain;
    margin: 5px auto;
}

.partners-carousel img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Slick Carousel Navigation Arrows */
.partners-carousel .slick-prev,
.partners-carousel .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.partners-carousel .slick-prev {
    left: -50px;
}

.partners-carousel .slick-next {
    right: -50px;
}

.partners-carousel .slick-prev:before,
.partners-carousel .slick-next:before {
    font-size: 40px;
    color: var(--text-dark);
    opacity: 0.7;
}

.partners-carousel .slick-prev:hover:before,
.partners-carousel .slick-next:hover:before {
    opacity: 1;
}

/* ============================================
   Affordable Services Section
   ============================================ */
.affordable-services-section {
    padding: 20px 0;
    background-color: var(--white);
}

.service-image-wrapper {
    position: relative;
    /* vertical-align: top; */
    /* height: 100%; */
}

.service-image {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	width:70%;
}

.experience-badge {
    position: absolute;
    bottom: 36%;
    left: 45%;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
    /* float: right; */
}

.service-section-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-section-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features-list li i {
    color: var(--primary-red);
    font-size: 18px;
}

.service-phone {
    /* display: flex; */
    align-items: center;
    gap: 10px;
    /* font-size: 42px; */
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.service-phone i {
    color: var(--primary-red);
    font-size: 42px;
}

.service-phone a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 36px;
    margin-left: 10px;
}

.service-phone a:hover {
    color: var(--primary-red);
    text-decoration: none;
}

/* ============================================
   Fast Reliable Section
   ============================================ */
.fast-reliable-section {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.fast-reliable-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
}

.fast-reliable-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fast-reliable-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.fast-reliable-buttons .btn-light {
    background-color: var(--white);
    color: var(--dark-blue);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.fast-reliable-buttons .btn-light:hover {
    background-color: var(--primary-red);
    color: var(--white);
    text-decoration: none;
}

.fast-reliable-buttons .btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.fast-reliable-buttons .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark-blue);
    text-decoration: none;
}

/* ============================================
   Comprehensive Services Section
   ============================================ */
.comprehensive-services-section {
    padding: 20px 0;
    position: relative;
}

.comprehensive-services-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 50%; /* Change this value to adjust red background height independently */
    background-color: var(--primary-red);
    z-index: 99;
}

.comprehensive-services-section .container {
    position: relative;
    z-index: 100;
}

.comprehensive-heading {
    font-size: 42px;
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
    text-align: center;
}

.comprehensive-description {
    font-size: 18px;
    color: black;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 30px; */
    /* margin-top: 40px; */
}

.service-card {
    margin-bottom: 30px;
}

.service-card-inner {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-card-inner:hover .service-card-image img {
    transform: scale(1.05);
}

/* Dark overlay for text readability */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.service-card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.service-card-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.service-card-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.95;
}

.service-card-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    flex-grow: 1;
}

.service-card-list li {
    font-size: 15px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.service-card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
}

.service-learn-more-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
    transition: all 0.3s;
    align-self: center;
    text-shadow: none;
}

.service-learn-more-btn:hover {
    background-color: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* ============================================
   Why Trust Us Section
   ============================================ */
.why-trust-us-section {
    padding: 80px 40px;
    position: relative;
    color: var(--white);
    min-height: 700px;
    overflow: hidden;
}

.trust-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../wp-content/themes/rework-freight/assets/images/backgrounds/highway.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.why-trust-us-section .container {
    position: relative;
    z-index: 1;
    vertical-align: middle;
}

.trust-header-section {
    margin-bottom: 40px;
}

.trust-heading {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0;
    text-align: left;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.trust-testimonial {
    padding: 20px 0;
}

.testimonial-content {
    background-color: transparent;
    padding: 0;
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
}

.testimonial-name {
    font-weight: bold;
    font-size: 20px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.testimonial-title {
    font-size: 16px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.trust-features-section {
    margin-top: 60px;
    /* padding: 0 0px; */
    width: 100%;
}

.trust-features-carousel {
    position: relative;
}

.trust-feature-item {
    text-align: center;
    padding: 0 20px;
}

.trust-feature-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    overflow: hidden;
    margin: 0 auto 25px;
    position: relative;
    background-color: var(--white);
}

.trust-feature-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-feature-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.trust-feature-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 300px;
    margin: 0 auto;
}

/* Slick Carousel Navigation for Trust Features */
.trust-features-carousel .slick-prev,
.trust-features-carousel .slick-next {
    z-index: 2;
    width: 50px;
    height: 50px;
}

.trust-features-carousel .slick-prev {
    left: -60px;
}

.trust-features-carousel .slick-next {
    right: -60px;
}

.trust-features-carousel .slick-prev:before,
.trust-features-carousel .slick-next:before {
    font-size: 50px;
    color: var(--white);
    opacity: 0.7;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.trust-features-carousel .slick-prev:hover:before,
.trust-features-carousel .slick-next:hover:before {
    opacity: 1;
}

.trust-features-carousel .slick-dots {
    bottom: -50px;
}

.trust-features-carousel .slick-dots li button:before {
    font-size: 12px;
    color: var(--white);
    opacity: 0.5;
}

.trust-features-carousel .slick-dots li.slick-active button:before {
    color: var(--primary-red);
    opacity: 1;
}

/* ============================================
   Contact Form Section
   ============================================ */
.contact-form-section {
    padding: 40px 0;
    background-color: var(--white);
}

.contact-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.contact-detail-item i {
    color: var(--primary-red);
    font-size: 20px;
}

.contact-detail-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-item a:hover {
    color: var(--primary-red);
    text-decoration: none;
}

.contact-form {
    /* background-color: var(--light-gray); */
    /* padding: 40px; */
    border-radius: 8px;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-form .form-group {
    /* margin-bottom: 20px; */
}

.contact-form .form-control {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid grey;
    border-radius: 10px;
    font-size: 12px;
    transition: border-color 0.3s;
    height: 40px;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

.recaptcha-wrapper {
    margin: 20px 0;
}

.contact-submit-btn {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 0px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.contact-submit-btn:hover {
    background-color: var(--dark-red);
    color: var(--white);
}

/* Service Buttons for Quote Form */
.services-label {
    display: block;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
    font-size: 22px;
}

.services-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.service-button-wrapper {
    position: relative;
    flex: 0 1 calc(33.333% - 8px);
    min-width: 200px;
    max-width: calc(33.333% - 8px);
}

.service-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.service-button {
    display: block;
    width: 100%;
    padding: 6px 20px;
    background-color: var(--white);
    border: 2px solid #ddd;
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    box-sizing: border-box;
}

.service-button:hover {
    border-color: var(--primary-red);
    background-color: #ffebee;
    color: var(--primary-red);
}

.service-checkbox:checked + .service-button {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.service-checkbox:checked + .service-button:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
}

/* Responsive Styles for Service Buttons */
@media (max-width: 768px) {
    .service-button-wrapper {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .service-button {
        width: 100%;
    }
}

/* ============================================
   Footer Styles
   ============================================ */
.main-footer {
    background-color: var(--primary-red);
    color: var(--white);
}

.footer-stats-section {
    padding: 60px 0;
    background-color: var(--primary-red);
}

.footer-stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.stat-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
}

.footer-main-content {
    /* padding: 40px 0; */
    background-color: var(--primary-red);
    border-top: 1px solid white;
    margin-left: 5%;
    margin-right: 5%;
}

.footer-logo-section {
    display: flex;
    align-items: center;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-logo-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.footer-nav-section {
    display: flex;
    justify-content: flex-end;
}

.footer-nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.footer-nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s;
}

.footer-nav-menu li a:hover {
    opacity: 0.8;
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    padding: 10px 0;
    background-color: var(--primary-red);
    /* border-top: 1px solid rgba(255,255,255,0.2); */
}

.copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.footer-made-with {
    padding: 20px 0;
    background-color: #000000;
    color: var(--white);
}

.made-with-text {
    font-size: 14px;
    color: var(--white);
    margin-right: 5px;
}

.vercel-logo {
    font-size: 18px;
    font-weight: bold;
    color: #9b59b6;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 992px) {
    .header-top-left,
    .header-top-right {
        text-align: center;
        margin-bottom: 10px;
        justify-content: center;
    }

    .header-logo-section {
        margin-bottom: 20px;
    }

    .header-logo-container {
        flex-wrap: wrap;
    }

    .header-tagline-container {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 10px;
    }

    .header-tagline {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        transform: none;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu li.dropdown .dropdown-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-nav-right {
        justify-content: flex-end;
    }

    .header-cta-button {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .partners-heading,
    .service-section-heading,
    .fast-reliable-heading,
    .comprehensive-heading,
    .trust-heading,
    .contact-heading {
        font-size: 32px;
    }

    .footer-nav-section {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .partners-carousel .slick-prev {
        left: -30px;
    }

    .partners-carousel .slick-next {
        right: -30px;
    }

    .partners-carousel .slick-slide {
        height: 80px;
    }

    .partners-carousel img {
        height: 50px;
    }

    .partner-logo img {
        max-height: 50px;
    }

    .service-image-column {
        margin-bottom: 30px;
    }

    .fast-reliable-buttons {
        flex-direction: column;
    }

    .fast-reliable-buttons .btn-light,
    .fast-reliable-buttons .btn-outline-light {
        width: 100%;
    }

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

    .trust-header-section {
        margin-bottom: 30px;
    }

    .trust-heading {
        text-align: center;
        font-size: 36px;
    }

    .trust-testimonial {
        margin-bottom: 40px;
        text-align: center;
    }

    .trust-features-section {
        padding: 0 40px;
    }

    .trust-features-carousel .slick-prev {
        left: -50px;
    }

    .trust-features-carousel .slick-next {
        right: -50px;
    }

    .contact-info-column {
        margin-bottom: 40px;
    }

    .footer-stat-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .header-top-bar {
        font-size: 12px;
    }

    .header-logo-circle {
        width: 50px;
        height: 50px;
    }

    .eagle-logo {
        width: 35px;
        height: 35px;
    }

    .logo-line-1,
    .logo-line-2 {
        font-size: 16px;
    }

    .header-logo-subtitle {
        font-size: 14px;
    }

    .header-tagline {
        font-size: 10px;
    }

    .talk-to-expert-box {
        font-size: 11px;
        padding: 3px 8px;
    }

    .header-phone,
    .header-email {
        font-size: 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .partners-heading,
    .service-section-heading,
    .fast-reliable-heading,
    .comprehensive-heading,
    .trust-heading {
        font-size: 28px;
    }

    .trust-features-section {
        padding: 0 20px;
    }

    .trust-feature-circle {
        width: 150px;
        height: 150px;
    }

    .trust-features-carousel .slick-prev {
        left: -30px;
    }

    .trust-features-carousel .slick-next {
        right: -30px;
    }

    .contact-heading {
        font-size: 24px;
    }

    .contact-form {
        padding: 25px;
    }
}

ul.service-features-list:nth-of-type(1)
{
    width:50%;
    float:left;
}
.experience-badge-number
{
    font-size:40px;
    
    
}
.experience-badge-text
{
    display:block;
}

/* ============================================
   About Us Page Styles
   ============================================ */

/* Contact Page Section */
.contact-page-section {
    /* position: relative; */
    min-height: calc(100vh - 150px);
    overflow: hidden;
    /* padding: 80px 0; */
}

.contact-page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-page-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.5);
}

.contact-page-overlay {
    position: relative;
    z-index: 2;
    /* background: rgba(0,0,0,0.6); */
    padding: 60px 0;
    height: 100%;
}


.contact-page-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.contact-page-subtitle {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-weight: 500;
}

.contact-page-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.contact-page-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-page-details-below-form {
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 40px;
    justify-content: flex-start;
}

.contact-page-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.contact-page-detail-item i {
    color: var(--primary-red);
    font-size: 22px;
    width: 24px;
}

.contact-page-detail-item a,
.contact-page-detail-item span {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.contact-page-detail-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-page-form-column {
    padding: 40px 20px;
}

/* Contact Information Section */
.contact-info-section {
    padding: 20px 0;
    background-color: var(--white);
}

.contact-info-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.contact-info-intro {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    /* max-width: 900px; */
}

.contact-urgent-callout {
    color: var(--primary-red);
    font-size: 22px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
}

.services-support-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.services-support-list {
    margin-bottom: 60px;
    margin-left: 10%;
}

.services-column {
    padding: 0 30px;
}

.service-support-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-support-checkmark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.service-support-checkmark:after {
    content: '✓';
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.service-support-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.trusted-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 25px;
    text-align: center;
}

.trusted-description {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-conclusion {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.6);
}

.about-hero-left {
    padding: 40px 0;
}

.about-hero-title {
    font-size: 72px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 30px;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.about-hero-subtitle-large {
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    text-align: left;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero-subtitle-large div {
    margin-bottom: 5px;
}

.about-hero-right {
    padding: 40px 0;
    text-align: right;
}

.about-hero-description {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    text-align: right;
}

.about-hero-cta-button {
    color: var(--white);
    background-color: var(--primary-red);
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.about-hero-cta-button:hover {
    background-color: rgba(255,255,255,0.9);
    color: var(--primary-red);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Our Story Section */
.our-story-section {
    padding: 10px 0;
    background-color: var(--white);
    text-align: center;
}

.story-content-column {
    padding: 40px 20px;
}

.story-headline {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

.story-headline-highlight {
    color: var(--primary-red);
}

.story-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}
.story-text2
{
	  font-size: 22px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
	font-weight:bold;
}
.story-text2 span
{
	color: var(--primary-red);
	text-decoration:underline;
}

.story-text-tagline {
    color: var(--primary-red);
    font-size: 22px;
}

.story-image-column {
    padding: 20px;
}

.story-image-wrapper {
    position: relative;
    width: 100%;
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Our Values Section */
.our-values-section {
    padding: 0;
    background-color: var(--white);
}

/* Stats Banner */
.values-stats-banner {
    background-color: #333333;
    padding: 60px 0;
    color: var(--white);
}

.stat-callout {
    text-align: center;
    padding: 20px;
}

.stat-callout-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-callout-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 0 auto 15px;
}

.stat-callout-label {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

/* Commitment Content Section */
.values-content-section {
    padding: 20px 0;
    background-color: var(--white);
}

.commitment-image-column {
    padding: 20px;
}

.commitment-image-wrapper {
    width: 100%;
    height: 100%;
}

.commitment-image {
    width: 100%;
    height: auto;
    display: block;
}

.commitment-text-column {
    padding: 40px 20px;
}

.commitment-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.commitment-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.commitment-list li {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.commitment-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-size: 24px;
    line-height: 1;
}

.commitment-list-checks li {
    display: flex;
    align-items: center;
    padding-left: 0;
}

.commitment-list-checks li:before {
    content: '✓';
    position: relative;
    left: auto;
    flex-shrink: 0;
    margin-right: 8px;
    color: var(--primary-red);
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.commitment-list-centered {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Non-Routine Events Section – centered, horizontal list with red check marks */
.non-routine-events-section .story-headline,
.non-routine-events-section .story-text {
    text-align: center;
}

.non-routine-events-section .story-headline {
    margin-left: auto;
    margin-right: auto;
}

.commitment-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    margin-bottom: 30px;
}

.commitment-list-horizontal li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 28px;
}

.commitment-list-horizontal li:before {
    content: '✓';
    color: var(--primary-red);
    font-size: 20px;
    font-weight: bold;
    left: 0;
}

.commitment-conclusion {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Services Overview Section */
/* Freight Rework Expertise Section */
.freight-expertise-section {
    position: relative;
    /* padding: 80px 0; */
    overflow: hidden;
    /* min-height: 500px; */
}

.expertise-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.expertise-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7) blur(2px);
}

.expertise-overlay {
    position: relative;
    z-index: 1;
  
    padding: 60px 0;
}

.expertise-heading {
    font-size: 42px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.expertise-intro {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-outro {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    margin-top: 30px;
    text-align: center;
}

.expertise-services {
    margin-top: 40px;
}

.expertise-column {
    padding: 0 30px;
}

.expertise-service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.expertise-checkmark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.expertise-checkmark:after {
    content: '✓';
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.expertise-service-text {
    font-size: 18px;
    color: white;
    font-weight: 500;
    line-height: 1.5;
}

/* About CTA Section */
/* About Contact Form Section */
.about-contact-section {
    padding: 80px 0;
    background-color: var(--white);
    color: var(--text-dark);
}

.about-contact-section .contact-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-contact-section .contact-description {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-contact-section .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-contact-section .contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.about-contact-section .contact-detail-item i {
    color: var(--primary-red);
    font-size: 20px;
}

.about-contact-section .contact-detail-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.about-contact-section .contact-detail-item a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.about-contact-section .contact-form {
    background-color: transparent;
    padding: 0;
}

.about-contact-section .form-control {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--text-dark);
}

.about-contact-section .form-control:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.2);
}

.about-contact-section .form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.about-contact-section .recaptcha-wrapper {
    flex: 1;
    min-width: 200px;
}

.about-contact-section .contact-submit-btn {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.about-contact-section .contact-submit-btn:hover {
    background-color: var(--dark-red);
    color: var(--white);
    border-color: var(--dark-red);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-hero-section {
        height: 500px;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .about-hero-subtitle-large {
        font-size: 28px;
    }

    .about-hero-left,
    .about-hero-right {
        text-align: center;
        margin-bottom: 30px;
    }

    .about-hero-description {
        text-align: center;
    }

    .story-headline {
        font-size: 36px;
    }

    .story-content-column,
    .story-image-column {
        margin-bottom: 30px;
    }

    .section-heading {
        font-size: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-callout-number {
        font-size: 36px;
    }

    .commitment-heading {
        font-size: 32px;
    }

    .commitment-image-column,
    .commitment-text-column {
        margin-bottom: 30px;
    }

    .expertise-heading {
        font-size: 32px;
    }

    .expertise-column {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .about-contact-section .contact-info-column {
        margin-bottom: 40px;
        text-align: center;
    }

    .about-contact-section .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-contact-section .recaptcha-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-contact-section .contact-submit-btn {
        width: 100%;
    }

    .contact-page-section {
        min-height: 600px;
        padding: 60px 0;
    }

    .contact-page-title {
        font-size: 48px;
    }

    .contact-page-subtitle {
        font-size: 24px;
    }

    .contact-page-info,
    .contact-page-form-column {
        margin-bottom: 40px;
    }

    .contact-info-title {
        font-size: 36px;
    }

    .services-support-title,
    .trusted-title {
        font-size: 32px;
    }

    .services-column {
        padding: 0 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        height: 450px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle-large {
        font-size: 22px;
    }

    .about-hero-description {
        font-size: 14px;
    }

    .story-headline {
        font-size: 28px;
    }

    .story-text {
        font-size: 14px;
    }

    .stat-callout-number {
        font-size: 28px;
    }

    .stat-callout-label {
        font-size: 16px;
    }

    .commitment-heading {
        font-size: 28px;
    }

    .commitment-intro,
    .commitment-list li,
    .commitment-conclusion {
        font-size: 16px;
    }

    .expertise-heading {
        font-size: 28px;
    }

    .expertise-service-text {
        font-size: 16px;
    }

    .expertise-checkmark {
        width: 25px;
        height: 25px;
    }

    .expertise-checkmark:after {
        font-size: 16px;
    }

    .about-contact-section .contact-heading {
        font-size: 32px;
    }

    .about-contact-section .contact-description {
        font-size: 16px;
    }

    .section-heading {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .contact-hero-section {
        height: 400px;
    }

    .contact-hero-title {
        font-size: 48px;
    }

    .contact-hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        height: 350px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 20px;
    }

    .contact-page-section {
        min-height: 500px;
        padding: 40px 0;
    }

    .contact-page-title {
        font-size: 36px;
    }

    .contact-page-subtitle {
        font-size: 20px;
    }

    .contact-page-description {
        font-size: 16px;
    }

    .contact-page-detail-item {
        font-size: 16px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-info-intro {
        font-size: 16px;
    }

    .services-support-title,
    .trusted-title {
        font-size: 28px;
    }

    .service-support-text,
    .trusted-description,
    .trusted-conclusion {
        font-size: 16px;
    }

    .service-support-checkmark {
        width: 25px;
        height: 25px;
    }

    .service-support-checkmark:after {
        font-size: 16px;
    }
}

/* ============================================
   Service Pages Styles
   ============================================ */

/* Service Hero Section */
.service-hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.6);
}

.service-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}

.service-hero-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 28px;
    color: var(--white);
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-weight: 500;
}

/* Service Content Section */
.service-content-section {
    padding: 20px 0;
    /* background-color: var(--white); */
    /* text-align: center; */
    background-color: var(--light-gray);
}

.service-intro {
    margin-bottom: 40px;
    /* text-align: center!important; */
}

.service-content-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.2;
}

.service-content-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 100%;
    margin: 0 0 20px 0;
}

.service-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px 0;
}

.service-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-bullet-list li {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.service-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.8;
}

.service-bullet-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    justify-content: center;
}

.service-bullet-list-horizontal li {
    margin-bottom: 0;
    flex: 0 1 auto;
}

@media (max-width: 768px) {
    .service-bullet-list-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-bullet-list-horizontal li {
        margin-bottom: 12px;
    }
}

.service-numbered-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    counter-reset: item;
}

.service-numbered-list li {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    counter-increment: item;
}

.service-numbered-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.8;
}

.service-content-image {
    padding: 20px;
}

.service-content-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-content-details {
    padding: 40px 20px;
}

.service-details-heading {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

.service-details-list li {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.service-details-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 20px;
}

.service-cta-section {
    text-align: center;
    padding: 10px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin-top: 60px;
}

.service-cta-heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-cta-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-button {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.service-cta-button:hover {
    background-color: var(--dark-red);
    color: var(--white);
    text-decoration: none;
}

/* Why Trust Section - Two Column Layout */
.why-trust-section {
    padding: 20px 0;
    background-color: #f8f8f8;
    margin: 40px 0;
}

.why-trust-image-col {
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.why-trust-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.why-trust-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.why-trust-overlay-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--dark-red);
    border-radius: 8px;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.why-trust-overlay-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.why-trust-overlay-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.3;
    margin: 2px 0;
}

.why-trust-content-col {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-trust-heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.why-trust-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: left;
}

.why-trust-features {
    margin-bottom: 35px;
}

.why-trust-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.why-trust-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-trust-feature-icon i {
    color: var(--white);
    font-size: 24px;
}

.why-trust-feature-content {
    flex: 1;
}

.why-trust-feature-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-trust-feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.why-trust-closing {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.why-trust-button {
    display: inline-block;
    background-color: var(--white);
    color: #3e7bb0;
    border: 2px solid #3e7bb0;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.why-trust-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.why-trust-button:hover {
    background-color: #3e7bb0;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.why-trust-button:hover i {
    transform: translateX(4px);
}

/* Expert Freight Rework Services Section */
.expert-services-section {
    padding: 20px 0;
    text-align: center;
}

.expert-services-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.expert-services-subtitle {
     font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 100%;
    margin: 0 0 20px 0;
}

.expert-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.expert-service-card {
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 35px 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.expert-service-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.expert-service-icon {
    /* width: 56px; */
    height: 56px;
    margin-bottom: 20px;
}

.expert-service-icon i {
    font-size: 36px;
    /* color: #173453; */
    color: var(--primary-red);
}

.expert-service-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.expert-service-description {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.expert-service-link {
    font-size: 16px;
    font-weight: 600;
    color: #173453;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.expert-service-link i {
    font-size: 14px;
}

.expert-service-link:hover {
    color: #0f2340;
    gap: 10px;
}

.expert-services-cta-wrap {
    margin-top: 20px;
}

.expert-services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #173453;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.expert-services-cta-btn i {
    font-size: 16px;
}

.expert-services-cta-btn:hover {
    background-color: #1a3f5f;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Process Steps Section - 4-Step Process Cards */
.process-steps-section {
    padding: 20px 0;
    text-align: center;
}

.process-steps-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.process-steps-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    padding: 0 15px;
}

.process-steps-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #e8e8e8;
    z-index: 0;
}

.process-step-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 25px 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.process-step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.process-step-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.process-step-icon i {
    color: var(--white);
    font-size: 40px;
}

.process-step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background-color: #FF9900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.process-step-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-step-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.process-cta-section {
    margin-top: 50px;
    text-align: center;
}

.process-cta-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.process-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #173453;
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.process-cta-button i {
    font-size: 20px;
}

.process-cta-button:hover {
    background-color: #1a3f5f;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .process-steps-container {
        flex-wrap: wrap;
        gap: 25px;
    }

    .process-step-card {
        flex: 0 0 calc(50% - 12.5px);
        max-width: calc(50% - 12.5px);
    }

    .process-steps-container::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        height: 400px;
    }

    .service-hero-title {
        font-size: 48px;
    }

    .service-hero-subtitle {
        font-size: 24px;
    }

    .service-content-heading {
        font-size: 32px;
    }

    .service-details-heading {
        font-size: 28px;
    }

    .service-cta-heading {
        font-size: 28px;
    }

    .service-content-image,
    .service-content-details {
        margin-bottom: 40px;
    }

    .why-trust-section {
        padding: 40px 0;
        margin: 30px 0;
    }

    .why-trust-image-col {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .why-trust-content-col {
        padding: 0 15px;
    }

    .why-trust-heading {
        font-size: 28px;
    }

    .why-trust-intro {
        font-size: 16px;
    }

    .why-trust-overlay-box {
        padding: 20px 25px;
        bottom: 15px;
        right: 15px;
    }

    .why-trust-overlay-number {
        font-size: 36px;
    }

    .why-trust-overlay-text {
        font-size: 14px;
    }

    .expert-services-section {
        padding: 40px 0;
    }

    .expert-services-heading {
        font-size: 32px;
    }

    .expert-services-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .expert-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }

    .expert-service-card {
        padding: 28px 22px;
    }

    .expert-services-cta-btn {
        font-size: 16px;
        padding: 14px 30px;
    }

    .process-steps-section {
        padding: 40px 0;
    }

    .process-steps-heading {
        font-size: 32px;
    }

    .process-steps-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .process-steps-container {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .process-steps-container::before {
        display: none;
    }

    .process-step-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .process-cta-button {
        font-size: 16px;
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .service-hero-section {
        height: 350px;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-subtitle {
        font-size: 20px;
    }

    .service-content-heading {
        font-size: 28px;
    }

    .service-details-heading {
        font-size: 24px;
    }

    .service-cta-heading {
        font-size: 24px;
    }

    .service-content-text,
    .service-details-list li,
    .service-cta-text {
        font-size: 16px;
    }

    .expert-services-section {
        padding: 30px 0;
    }

    .expert-services-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .expert-services-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .expert-services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 30px;
    }

    .expert-service-card {
        padding: 25px 20px;
    }

    .expert-service-title {
        font-size: 20px;
    }

    .expert-service-description {
        font-size: 15px;
    }

    .expert-services-cta-btn {
        font-size: 15px;
        padding: 12px 26px;
    }

    .why-trust-section {
        padding: 30px 0;
        margin: 20px 0;
    }

    .why-trust-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .why-trust-intro {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .why-trust-feature-item {
        margin-bottom: 20px;
    }

    .why-trust-feature-icon {
        width: 45px;
        height: 45px;
    }

    .why-trust-feature-icon i {
        font-size: 20px;
    }

    .why-trust-feature-title {
        font-size: 18px;
    }

    .why-trust-feature-description {
        font-size: 14px;
    }

    .why-trust-button {
        font-size: 14px;
        padding: 10px 25px;
    }

    .why-trust-overlay-box {
        padding: 15px 20px;
        bottom: 10px;
        right: 10px;
    }

    .why-trust-overlay-number {
        font-size: 32px;
    }

    .why-trust-overlay-text {
        font-size: 12px;
    }

    .process-steps-section {
        padding: 30px 0;
    }

    .process-steps-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .process-steps-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .process-step-card {
        padding: 30px 20px 25px;
    }

    .process-step-icon {
        width: 80px;
        height: 80px;
    }

    .process-step-icon i {
        font-size: 32px;
    }

    .process-step-badge {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .process-step-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .process-step-description {
        font-size: 14px;
    }

    .process-cta-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .process-cta-button {
        font-size: 15px;
        padding: 12px 25px;
    }
}

/* ============================================
   Main Services Page Styles
   ============================================ */

/* Services Hero Section */
.services-hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.6);
}

.services-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}

.services-hero-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 28px;
    color: var(--white);
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-weight: 500;
}

/* Services Overview Section */
.services-overview-section {
    padding: 60px 0;
    background-color: var(--white);
}

.services-overview-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.services-overview-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
}

.services-overview-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-comprehensive-heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.services-comprehensive-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* All Services Section */
.all-services-section {
    padding: 60px 0;
    background-color: var(--white);
}

/* Service Card Split Layout */
.service-card-split {
    margin-bottom: 0;
    align-items: stretch;
}
.service-card-split.card-image-left 
{
    padding-top:20px;
    background-color:lightgrey!important;
    padding-bottom: 20px;
}

.service-card-image-wrapper {
    padding: 0;
}

.service-card-image-full {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.service-card-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.service-card-text-wrapper {
    padding: 0;
    
    display: flex;
    align-items: center;
}

.card-image-left .service-card-text-content {
    padding: 30px 50px;
    width: 100%;
}

.service-card-title-split {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-blue);
    /* margin-bottom: 20px; */
    line-height: 1.2;
}

.service-card-text-split {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-card-list-split {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-card-list-split li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-card-list-split li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-weight: bold;
    font-size: 20px;
}
.service-cta-btn i 
{
    margin-left:20px;
    font-size:20px;
}
.service-cta-btn {
    background-color: #c62828;
    color: var(--white);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-cta-btn:hover {
    background-color: white;
    color: #c62828;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: solid 1px #c62828
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding-bottom: 20px;
    background-color: var(--white);
}

.why-choose-us-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.why-choose-us-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    max-width: 800px;
}

.why-choose-us-list li {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.why-choose-us-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.8;
}

.why-choose-us-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
}

.why-choose-us-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px 0;
}

.why-choose-us-subheading {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.2;
}

.why-choose-us-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us-cta {
    margin-top: 10px;
    text-align: center;
}

.why-choose-us-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-red);
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.why-choose-us-button:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

/* Services CTA Section */
.services-cta-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-cta-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.services-cta-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.services-cta-button {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.services-cta-button:hover {
    background-color: var(--dark-red);
    color: var(--white);
    text-decoration: none;
}

/* Responsive Styles for Services Page */
@media (max-width: 768px) {
    .services-hero-section {
        height: 400px;
    }

    .services-hero-title {
        font-size: 48px;
    }

    .services-hero-subtitle {
        font-size: 24px;
    }

    .services-overview-heading {
        font-size: 32px;
    }

    .services-comprehensive-heading {
        font-size: 28px;
    }

    .services-cta-heading {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .services-hero-section {
        height: 350px;
    }

    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-subtitle {
        font-size: 20px;
    }

    .services-overview-heading {
        font-size: 28px;
    }

    .services-overview-description {
        font-size: 16px;
    }

    .services-comprehensive-heading {
        font-size: 24px;
    }

    .services-comprehensive-description {
        font-size: 16px;
    }

    .services-cta-heading {
        font-size: 28px;
    }

    .services-cta-description {
        font-size: 16px;
    }
}

/* ============================================
   Comprehensive Mobile Responsive Updates
   ============================================ */

/* Tablet and Below (992px) */
@media (max-width: 992px) {
    /* Header Improvements */
    .header-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-top-left,
    .header-top-right {
        flex-direction: column;
        gap: 8px;
    }

    .header-logo-section {
        text-align: center;
    }

    .eagle-logo {
        max-width: 150px;
        height: auto;
    }

    /* About Page Responsive */
    .about-hero-left,
    .about-hero-right {
        margin-bottom: 30px;
        text-align: center;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .about-hero-subtitle-large {
        font-size: 28px;
    }

    .story-content-column,
    .story-image-column {
        margin-bottom: 40px;
    }

    .story-headline {
        font-size: 36px;
        text-align: center;
    }

    .commitment-image-column,
    .commitment-text-column {
        margin-bottom: 40px;
    }

    .expertise-column {
        margin-bottom: 30px;
    }

    /* Contact Page Responsive */
    .contact-page-info,
    .contact-page-form-column {
        margin-bottom: 40px;
    }

    .contact-page-title {
        font-size: 42px;
    }

    .contact-info-title,
    .services-support-title,
    .trusted-title {
        font-size: 32px;
    }

    .services-column {
        margin-bottom: 20px;
    }

    /* Service Cards Grid */
    .service-card {
        margin-bottom: 30px;
    }

    /* Footer Improvements */
    .footer-stat-item {
        margin-bottom: 30px;
    }

    .footer-nav-menu {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-top-bar {
        padding: 10px 0;
        font-size: 12px;
    }

    .header-top-left,
    .header-top-right {
        text-align: center;
    }

    .talk-to-expert-box {
        display: block;
        margin-bottom: 5px;
    }

    .header-phone,
    .header-email {
        justify-content: center;
    }

    .header-main {
        padding: 15px 0;
    }

    .header-logo-section {
        text-align: center;
        margin-bottom: 15px;
    }

    .eagle-logo {
        max-width: 120px;
    }

    /* Hero Sections */
    .hero-section,
    .about-hero-section,
    .contact-page-section,
    .service-hero-section,
    .services-hero-section {
        height: 350px;
    }

    .hero-title,
    .about-hero-title,
    .contact-page-title,
    .service-hero-title,
    .services-hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle,
    .about-hero-subtitle-large,
    .contact-page-subtitle,
    .service-hero-subtitle,
    .services-hero-subtitle {
        font-size: 18px;
    }

    /* Home Page Sections */
    .partners-heading,
    .service-section-heading,
    .fast-reliable-heading,
    .comprehensive-heading,
    .trust-heading,
    .contact-heading,
    .who-we-serve-heading {
        font-size: 28px;
    }

    .partners-description,
    .service-section-description,
    .fast-reliable-description,
    .comprehensive-description,
    .who-we-serve-description {
        font-size: 16px;
    }

    .affordable-services-section,
    .fast-reliable-section,
    .comprehensive-services-section,
    .trust-section,
    .contact-form-section,
    .who-we-serve-section {
        padding: 50px 0;
    }

    .who-we-serve-card {
        padding: 25px;
    }

    .who-we-serve-icon i {
        font-size: 40px;
    }

    .who-we-serve-title {
        font-size: 20px;
    }

    .who-we-serve-text {
        font-size: 15px;
    }

    .who-we-serve-cta-text {
        font-size: 18px;
    }

    .who-we-serve-buttons {
        flex-direction: column;
        align-items: center;
    }

    .who-we-serve-contact-btn,
    .who-we-serve-services-btn {
        width: 100%;
        max-width: 300px;
    }

    .service-image-column {
        margin-bottom: 30px;
    }

    .fast-reliable-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .fast-reliable-buttons .btn {
        width: 100%;
    }

    /* Service Cards */
    .service-card {
        margin-bottom: 25px;
    }

    .service-card-title {
        font-size: 24px;
    }

    .service-card-subtitle {
        font-size: 16px;
    }

    .service-card-text {
        font-size: 14px;
    }

    .service-card-list li {
        font-size: 13px;
    }

    /* About Page Mobile */
    .about-hero-description {
        font-size: 16px;
        text-align: center;
    }

    .story-headline {
        font-size: 28px;
        line-height: 1.3;
    }

    .story-text {
        font-size: 16px;
    }

    .stat-callout {
        margin-bottom: 30px;
        text-align: center;
    }

    .stat-callout-number {
        font-size: 36px;
    }

    .stat-callout-label {
        font-size: 14px;
    }

    .commitment-heading {
        font-size: 28px;
        text-align: center;
    }

    .commitment-list {
        font-size: 16px;
    }

    .expertise-heading {
        font-size: 28px;
    }

    .expertise-service-text {
        font-size: 16px;
    }

    /* Contact Page Mobile */
    .contact-page-description {
        font-size: 16px;
        text-align: center;
    }

    .contact-page-details {
        text-align: center;
    }

    .contact-page-detail-item {
        justify-content: center;
        margin-bottom: 15px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-info-intro,
    .trusted-description,
    .trusted-conclusion {
        font-size: 16px;
    }

    /* Services Page Mobile */
    .services-overview-section,
    .all-services-section,
    .why-choose-us-section {
        padding: 50px 0;
    }

    .why-choose-us-heading {
        font-size: 32px;
        text-align: center;
        margin-bottom: 25px;
    }

    .why-choose-us-list {
        margin-bottom: 25px;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
    }

    .why-choose-us-list li {
        font-size: 16px;
        padding-left: 28px;
    }

    .why-choose-us-list li::before {
        font-size: 18px;
    }

    .why-choose-us-tagline {
        font-size: 18px;
        text-align: center;
        margin-bottom: 30px;
    }

    .why-choose-us-divider {
        margin: 30px 0;
    }

    .why-choose-us-subheading {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .why-choose-us-description {
        font-size: 16px;
        text-align: center;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .why-choose-us-button {
        width: 100%;
        text-align: center;
        display: block;
    }

    .services-cta-section {
        padding: 50px 0;
    }

    .service-card-split {
        flex-direction: column !important;
    }

    .service-card-image-full {
        min-height: 300px;
    }

    .service-card-text-content {
        padding: 40px 30px;
    }

    .service-card-title-split {
        font-size: 28px;
    }

    .service-card-text-split {
        font-size: 16px;
    }

    .service-card-list-split li {
        font-size: 15px;
    }

    .services-overview-heading {
        font-size: 28px;
    }

    .services-comprehensive-heading {
        font-size: 24px;
    }

    .services-comprehensive-description {
        font-size: 16px;
    }

    .services-overview-divider {
        margin: 30px 0;
    }

    /* Individual Service Pages Mobile */
    .service-content-section {
        padding: 50px 0;
    }

    .service-content-heading {
        font-size: 28px;
        text-align: center;
    }

    .service-content-text {
        font-size: 16px;
        text-align: center;
    }

    .service-intro {
        text-align: center;
    }

    .service-divider {
        margin: 30px 0;
    }

    .service-bullet-list li {
        font-size: 16px;
        padding-left: 28px;
    }

    .service-bullet-list li::before {
        font-size: 18px;
    }

    .service-numbered-list li {
        font-size: 16px;
        padding-left: 35px;
    }

    .service-numbered-list li::before {
        font-size: 18px;
    }

    .service-content-image,
    .service-content-details {
        margin-bottom: 30px;
    }

    .service-details-heading {
        font-size: 24px;
    }

    .service-details-list li {
        font-size: 16px;
    }

    .service-cta-section {
        padding: 40px 20px;
    }

    .service-cta-heading {
        font-size: 24px;
    }

    .service-cta-text {
        font-size: 16px;
    }

    .service-content-heading {
        font-size: 24px;
        text-align: center;
    }

    .service-content-text {
        font-size: 15px;
        text-align: center;
    }

    .service-divider {
        margin: 25px 0;
    }

    .service-bullet-list li {
        font-size: 15px;
        padding-left: 25px;
    }

    .service-bullet-list li::before {
        font-size: 16px;
    }

    .service-numbered-list li {
        font-size: 15px;
        padding-left: 30px;
    }

    .service-numbered-list li::before {
        font-size: 16px;
    }

    /* Footer Mobile */
    .footer-stats-section {
        padding: 40px 0;
    }

    .footer-stat-item {
        margin-bottom: 25px;
    }

    .footer-content {
        text-align: center;
    }

    .footer-logo-section {
        margin-bottom: 30px;
    }

    .footer-nav-section {
        margin-bottom: 30px;
    }
}

/* Small Mobile (576px) */
@media (max-width: 576px) {
    /* Header Small Mobile */
    .header-top-bar {
        font-size: 11px;
        padding: 8px 0;
    }

    .header-phone span,
    .header-email span {
        font-size: 11px;
    }

    .eagle-logo {
        max-width: 100px;
    }

    /* Hero Sections Small Mobile */
    .hero-section,
    .about-hero-section,
    .contact-page-section,
    .service-hero-section,
    .services-hero-section {
        height: 300px;
    }

    .hero-title,
    .about-hero-title,
    .contact-page-title,
    .service-hero-title,
    .services-hero-title {
        font-size: 28px;
    }

    .hero-subtitle,
    .about-hero-subtitle-large,
    .contact-page-subtitle,
    .service-hero-subtitle,
    .services-hero-subtitle {
        font-size: 16px;
    }

    /* Home Page Small Mobile */
    .partners-heading,
    .service-section-heading,
    .fast-reliable-heading,
    .comprehensive-heading,
    .trust-heading,
    .contact-heading,
    .who-we-serve-heading {
        font-size: 24px;
    }

    .affordable-services-section,
    .fast-reliable-section,
    .comprehensive-services-section,
    .trust-section,
    .contact-form-section,
    .who-we-serve-section {
        padding: 40px 0;
    }

    .who-we-serve-card {
        padding: 20px;
    }

    .who-we-serve-icon {
        margin-bottom: 15px;
    }

    .who-we-serve-icon i {
        font-size: 36px;
    }

    .who-we-serve-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .who-we-serve-text {
        font-size: 14px;
    }

    .who-we-serve-cta-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .who-we-serve-contact-btn,
    .who-we-serve-services-btn {
        font-size: 15px;
        padding: 12px 30px;
    }

    .experience-badge {
        width: 100%;
        margin-bottom: 20px;
    }

    .experience-badge-number {
        font-size: 32px;
    }

    /* Service Cards Small Mobile */
    .service-card-title {
        font-size: 20px;
    }

    .service-card-subtitle {
        font-size: 14px;
    }

    .service-card-text {
        font-size: 13px;
    }

    .service-card-list li {
        font-size: 12px;
        margin-bottom: 6px;
    }

    /* Service Split Cards Small Mobile */
    .service-card-image-full {
        min-height: 250px;
    }

    .service-card-text-content {
        padding: 30px 20px;
    }

    .service-card-title-split {
        font-size: 24px;
    }

    .service-card-text-split {
        font-size: 15px;
    }

    .service-card-list-split li {
        font-size: 14px;
    }

    .service-cta-btn {
        font-size: 15px;
        padding: 12px 30px;
    }

    .service-learn-more-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    /* Why Choose Us Small Mobile */
    .why-choose-us-section {
        padding: 40px 0;
    }

    .why-choose-us-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .why-choose-us-list {
        margin-bottom: 20px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-choose-us-list li {
        font-size: 15px;
        padding-left: 25px;
    }

    .why-choose-us-list li::before {
        font-size: 16px;
    }

    .why-choose-us-tagline {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .why-choose-us-divider {
        margin: 25px 0;
    }

    .why-choose-us-subheading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .why-choose-us-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .why-choose-us-button {
        font-size: 15px;
        padding: 12px 30px;
    }

    /* About Page Small Mobile */
    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-subtitle-large {
        font-size: 22px;
    }

    .story-headline {
        font-size: 24px;
    }

    .stat-callout-number {
        font-size: 28px;
    }

    .stat-callout-label {
        font-size: 12px;
    }

    .commitment-heading {
        font-size: 24px;
    }

    .expertise-heading {
        font-size: 24px;
    }

    /* Contact Page Small Mobile */
    .contact-page-title {
        font-size: 32px;
    }

    .contact-info-title,
    .services-support-title,
    .trusted-title {
        font-size: 24px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-form .form-control {
        font-size: 14px;
        padding: 10px 12px;
        height: 50px;
    }

    .contact-form textarea.form-control {
        min-height: 100px;
    }

    /* Services Page Small Mobile */
    .services-overview-heading {
        font-size: 24px;
    }

    .services-cta-heading {
        font-size: 24px;
    }

    .services-cta-button {
        font-size: 16px;
        padding: 12px 30px;
    }

    /* Individual Service Pages Small Mobile */
    .service-content-heading {
        font-size: 24px;
    }

    .service-details-heading {
        font-size: 20px;
    }

    .service-cta-heading {
        font-size: 20px;
    }

    .service-cta-button {
        font-size: 16px;
        padding: 12px 30px;
    }

    /* Carousel Adjustments Small Mobile */
    .partners-carousel .slick-prev {
        left: -20px;
    }

    .partners-carousel .slick-next {
        right: -20px;
    }

    .trust-features-carousel .slick-prev {
        left: -20px;
    }

    .trust-features-carousel .slick-next {
        right: -20px;
    }

    /* Footer Small Mobile */
    .footer-stat-number {
        font-size: 32px;
    }

    .footer-stat-label {
        font-size: 12px;
    }
}



.container 
{
    margin-left:10%!important;
    margin-right:10%!important;
    max-width:80%;
}

/* Welcome / How can we help popup */
.welcome-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.welcome-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.welcome-popup-box {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 36px 32px 32px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.welcome-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.welcome-popup-close:hover {
    color: var(--text-dark);
}

.welcome-popup-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.welcome-popup-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.welcome-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.welcome-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.welcome-popup-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.welcome-popup-btn-call {
    background-color: var(--primary-red);
    color: var(--white);
}

.welcome-popup-btn-call:hover {
    background-color: var(--dark-red);
    color: var(--white);
}

.welcome-popup-btn-directions {
    background-color: var(--white);
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.welcome-popup-btn-directions:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.welcome-popup-btn-chat {
    background-color: var(--dark-blue);
    color: var(--white);
}

.welcome-popup-btn-chat:hover {
    background-color: #252347;
    color: var(--white);
}




/* Extra Small Mobile (480px) */
@media (max-width: 480px) {
    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-title,
    .about-hero-title,
    .contact-page-title,
    .service-hero-title,
    .services-hero-title {
        font-size: 24px;
    }

    .partners-heading,
    .service-section-heading,
    .fast-reliable-heading,
    .comprehensive-heading,
    .trust-heading,
    .contact-heading {
        font-size: 20px;
    }

    .contact-form {
        padding: 15px 10px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-text {
        font-size: 12px;
    }
    .welcome-popup-overlay
    {
        padding-left:30px!important;
        padding-right:30px!important;
        justify-content:left;
        
    }
    .welcome-popup-box 
    {
        background: var(--white);
        border-radius: 12px;
        padding: 16px 12px 12px;
        width:88%;
    }
    .talk-to-expert-box
    {
        display:none;
    }
    .header-top-left, .header-top-right
    {
        margin-bottom:0px!important;
        
    }
    .eagle-logo
    {
        width:100%;
        max-width:100%;
    }
