﻿/* Heading Colors (Ford Blue color approximation) */
.section-title {
    color: #066fef;
    font-weight: 700;
    /* border-bottom: 2px solid #00007A; */
    /* padding-bottom: 5px; */
    /* margin-top: 40px; */
    margin-bottom: 0.51em;
    font-size: 32px;
    line-height: 38px;
}

.sub-title {
    color: #00007A;
    font-weight: bold;
    margin-top: 20px;
}

/* List Styling */
ul {
    list-style-type: disc;
    margin-left: 20px;
}

    ul li {
        margin-bottom: 10px;
    }

.benefit-list {
    list-style: none; /* Removes bullets */
    padding-left: 0;
}

.program-list {
    margin-top: 1em;
    margin-bottom: 1em;
}

.benefit-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #333;
}

    /* Custom Checkmark (using CSS pseudo-elements) */
    .benefit-list li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #00007A; /* Blue checkmark */
        font-weight: bold;
        font-size: 1.2em;
        top: -2px;
    }

.tagline {
    font-style: italic;
    margin-top: 20px;
    display: block;
}

.banner-container {
    position: relative;
    width: 100%;
    /* Control the height of the banner */
    height: 300px;
    overflow: hidden;
    background-color: #000; /* Fallback color */
}

/* The background image styling */
.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire container without stretching */
    display: block;
    /* Adds the blue overlay effect seen in the image */
    filter: brightness(0.5) hue-rotate(190deg) saturate(1.2);
}

/* The text container positioned over the image */
.banner-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers text */
    /* Padding for responsive margins on different screens */
    padding: 0 5%;
    box-sizing: border-box;
    white-space:nowrap;
}

.main-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 5px 0;
    /* Responsive font sizing for mobile */
    font-size: 6vw;
    max-width: 500px;
}

.sub-title {
    color: #FFFFFF;
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

/* Media query for standard desktop sizes to prevent oversized text */
@media (min-width: 768px) {
    .main-title {
        font-size: 2.2rem;
        padding-left: 20px;
    }

    .sub-title {
        padding-left: 20px;
    }

    .banner-text-overlay {
        justify-content: flex-start; /* Aligns text near the top/left edge as in the image */
        padding-top: 100px;
    }
   
    }

.kits-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between columns */
    flex-wrap: wrap;
}

.kit-item {
    /* background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    width: 22%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.kit-header-model {
    font-size: 12px;
    padding: 10px 1px;
    text-align: center;
    background-color: transparent;
    color: #00007A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kit-box-area {
    padding: 0px;
    /* This area holds the image of the product box */
}

.product-image-placeholder {
    height: 520px;
    background-color: #fff;
}

.blue-truck {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    position: relative;
    z-index: 1;
    border-radius: 1em;
    aspect-ratio: 520 / 1024;
    height: auto; /* Remove the fixed 400px */
    width: 100%;
}

.blue-truck1 {
    /*background-color: #004a99;*/
    background-image: url('/Newimages/Final-Service-Kits-33-520x1024.png');
}

.blue-truck2 {
    background-image: url('/Newimages/Final-Service-Kits-34-520x1024.png');
}

.blue-truck3 {
    background-image: url('/Newimages/Final-Service-Kits-35-520x1024.png');
}

.blue-truck4 {
    background-image: url('/Newimages/Final-Service-Kits36--520x1024.png');
}

.blue-truck5 {
    background-image: url('/Newimages/Final-Service-Kits-37-1.jpg');
}

.blue-truck6 {
    background-image: url('/Newimages/Final-Service-Kits-38-1.jpg');
}

.blue-truck7 {
    background-image: url('/Newimages/September-2025-Ford-Ranger-Service-Kit-SERPMSK1T7-Tower-Portal-Banner.jpg');
}

.product-carousel-container {
    position: relative;
    padding: 40px 0 60px 0; /* Space for dots and arrows */
    text-align: center;
    background-color: #ffffff; /* White background */
    max-width: 1200px;
    margin: auto;
    overflow: hidden; /* Hide arrows if screen is very small */
}

/* This is the window that crops the items */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.products-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-item {
    flex: 0 0 240px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Navigation Arrows Styling */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    user-select: none;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Pagination Dots Styling */
.pagination-dots {
    margin-top: 30px;
}

.csssubmargintop {
    margin-top: 1em;
}

.dot {
    display: inline-block;
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .dot.active {
        background-color: #000;
    }
/* Container for all three cards */
.flipper-container-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #fff; /* Light blue background from original image context */
}

/* Base styles for the flip container */
.flip-card {
    background-color: transparent;
    width: 350px;
    height: 250px;
    perspective: 1000px; /* Provides the 3D effect */
    border-radius: 15px; /* Rounded corners */
    overflow: hidden; /* Keeps content within rounded corners */
}

/* This container is where the rotation happens */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s; /* Smooth flip animation */
    transform-style: preserve-3d; /* Required for 3D flip */
}

/* The actual flip action on mouseover */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back sides */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Hide back side during flip */
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    font-size: 12px;
}

/* Style for the back side of the card */
.flip-card-back {
    background-color: #004a99; /* Darker blue for details */
    color: white;
    transform: rotateY(180deg); /* Start rotated 180deg */
    text-align: left;
}

/* Specific styles for card backgrounds and overlays */
.card-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-align: left;
    /* Optional: add a text shadow for readability over image */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Using background images for the mechanics (placeholders) */
.card-image-1 {
    background: url('/Newimages/4-2.png') center no-repeat;
}

.card-image-3 {
    background: url('/Newimages/4-2.png') center no-repeat;
}

.blue-bg {
    background-color: #0066cc; /* Bright blue background */
}


/* The middle card is static and doesn't flip */
.static-card {
    transform: none !important; /* Override flip behavior */
    cursor: default;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between the panels */
    justify-content: space-between;
}

.faq-panel {
    flex-basis: 48%; /* Creates two roughly equal columns */
    background-color: #f1f4f8; /* Light purple-grey background */
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    width: 100%; /* Ensure they take full width within their 48% column space */
}
@media (max-width: 768px) {
    .faq-panel {
        flex-basis: 98%;
    }
}

.faq-header {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #00008b; /* Ford-like blue color for the text */
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Removes default details arrow in most browsers */
    text-decoration: underline; /* Adds the link-style underline */
    text-wrap: pretty;
    text-align: left;
}

/* Style for when the panel is open */
.faq-panel[open] .faq-header {
    border-bottom: 1px solid #dcdcdc;
    text-decoration: none; /* Remove underline when open */
}

/* Rotate the arrow icon when the panel is open */
.faq-panel[open] .arrow-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 15px 20px 20px;
    color: #333;
    /* You can add CSS transitions here for smoother animation */
}
/* Basic Container Styling */
.news-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 15px;
}

.news-card {
    display: flex;
    background-color: transparent;
    margin-bottom: 30px;
    box-shadow: 0 14px 14px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    padding:1em;
}

/* Image Wrapper and Hover Effect */
.image-wrapper {
    flex-basis: 30%; /* Image takes 40% of the card width */
    height: 200px; /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 1em;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover the area without stretching */
    transform: scale(1.1); /* Starts zoomed IN by 10% */
    transition: transform 0.5s ease-in-out; /* Smooth animation for the scale change */
   
}

/* Zoom-OUT effect on hover */
.news-card:hover .card-image {
    transform: scale(1); /* Zooms back to normal size on hover */
   
}

/* Content and Text Styling */
.content-box-news {
    flex-basis: 60%; /* Content takes 60% of the card width */
    padding: 20px 30px;
}

.date {
    display: block;
    font-size: 0.8em;
    color: #6c757d;
    margin-bottom: 10px;
}

.title {
    font-size: 1.4em;
    color: #00008b; /* A dark blue color */
    margin-bottom: 15px;
    text-decoration: underline;
    cursor: pointer;
}

.excerpt {
    color: #333;
    line-height: 1.4;
}
.rum_sst_contents {
    position: fixed;
    margin: 0;
    padding: 6px 13px 8px 13px;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    border-style: solid;
    display: block;
    z-index: 100000;
}
.rum_sst_right {
    right: -1px;
    cursor: pointer;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -moz-border-radius-topright: 10px;
    border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-left-radius: 10px;
}
#rum_sst_tab {
    font-family: &quot;
    top: 25%;
    background-color: #066fef;
    color: #ffffff;
    border-style: solid;
    border-width: 0px;
}
.table-container {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    color: #000; /* Default text color */
}

thead th {
    background-color: #fff; /* Header background in the image seems white/light */
    font-weight: bold;
    color: #000080; /* Dark blue color for headers */
}

tbody tr td:first-child {
    font-weight: bold;
    color: #000080; /* Dark blue color for the first column */
}

/* Add a border to the vertical splits */
th:not(:last-child), td:not(:last-child) {
    border-right: 1px solid #ddd;
}

/* Remove bottom border from the last row */
tbody tr:last-child td {
    border-bottom: none;
}
.cssleftthepara {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    text-align:left;
}
.Newssection-title {
    color: #066fef;
    font-weight: 700;
    /* border-bottom: 2px solid #00007A; */
    /* padding-bottom: 5px; */
    /* margin-top: 40px; */
    margin-bottom: 0.51em;
    font-size: 32px;
    line-height: 38px;
    text-decoration:underline;
}
.newscsssubheading {
    margin-bottom: 0.51em;
    font-family: "Ford F-1" !important;
    color: #00095B;
    line-height: 38px;
    font-size: 24px;
    font-weight: 400;
}
.newscssspan {
    color: #00095B;
    font-weight:bold;
}
.newscssspanunderline {
    color: #00095B;
    font-weight: normal;
    text-decoration:underline;
}
.newscssanchor{
    color: #00095B;
    font-weight: normal;
    text-decoration: none;
}
#newsblogpage p {
margin-top:1em;}
