/* ============================================
   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;
}
.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: 16px;
    transition: opacity 0.3s;
}

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

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

.nav-menu li.dropdown {
    position: relative;
}

.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 */
.header-cta-button {
    background-color: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.header-cta-button:hover {
    background-color: rgba(255,255,255,0.9);
    color: var(--primary-red);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px 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-cta {
    background-color: var(--white);
    color: var(--primary-red);
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

.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: 760px;
    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
   ============================================ */
.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: 80px 0;
    background-color: var(--white);
}

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

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

.experience-badge {
    position: absolute;
    bottom: 0px;
    left: 40%;
    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: 80px 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: 400px;
    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: 30px;
}

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

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

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

.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;
    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('/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;
    max-width: 100%;
    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: 80px 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;
}

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

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

.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: 15px 40px;
    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);
}

/* ============================================
   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-info {
    padding: 40px 20px;
}

.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-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: 80px 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;
    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;
}

.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(--text-dark);
    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 {
    background-color: var(--white);
    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: 80px 0;
    background-color: var(--white);
}

.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: left;
}

.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: left;
}

.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: 80px 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-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: 2;
    background: rgba(255,255,255,0.35);
    padding: 60px 0;
}

.expertise-heading {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 50px;
    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: var(--text-dark);
    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: 80px 0;
    background-color: var(--white);
}

.service-intro {
    margin-bottom: 60px;
    text-align: center;
}

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

.service-content-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.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: 60px 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;
}

/* Responsive Styles for Service Pages */
@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;
    }
}

@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;
    }
}

/* ============================================
   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;
    line-height: 1.8;
}

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

.all-services-section .comprehensive-heading {
    color: var(--white);
}

.all-services-section .comprehensive-description {
    color: var(--white);
}

/* 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-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-cta-heading {
        font-size: 28px;
    }

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