
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #f5f7fa;
    color: #1f1f1f;
}

/* TOP BAR */
.topbar {
    background: #224880;
    color: white;
    font-size: 0.9rem;
    padding: 6px 40px;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left span,
.topbar-left a {
    margin-right: 16px;
    color: white;
    text-decoration: none;
}

/* HEADER */
.header {
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo img { height: 65px; }

.nav a {
    margin: 0 14px;
    color: #224880;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
.nav a:hover { color: #17365e; }
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #224880;
    transition: 0.25s;
}
.nav a:hover::after { width: 100%; }

.request-btn {
    padding: 10px 20px;
    background: #224880;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(34,72,128,0.35);
}

/* HERO */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.hero-box {
    position: absolute;
    background: rgba(0, 49, 92, 0.88);
    padding: 36px 46px;
    border-radius: 20px;
    text-align: center;
    color: white;
    max-width: 580px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}
.hero-box h1 {
    font-size: 2.4rem;
    font-weight: 800;
}
.hero-box h2 {
    font-size: 1.8rem;
    margin-top: 4px;
}
.hero-box p {
    margin-top: 12px;
    opacity: 0.9;
}

/* PRICES */
.prices-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: -80px;
    padding: 0 40px 60px;
}
.price-card {
    background: #ffffff;
    width: 260px;
    padding: 30px 20px;
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
    transition: 0.3s ease;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(34,72,128,0.25);
}
.price-icon {
    width: 42px;
    margin-bottom: 10px;
}
.price-number {
    font-size: 2rem;
    color: #1E428A;
    font-weight: 800;
    margin: 5px 0;
}
.updated {
    font-size: 0.9rem;
    opacity: 0.65;
}

/* ABOUT */
/* ================= ABOUT SECTION FIX ================= */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* balanced two-column layout */
    align-items: start;
    gap: 40px;
    padding: 60px 40px;
}

.about-left {
    width: 100%;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}
.about-left h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0A3D80;   /* SAME BLUE AS OUR SERVICES */
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


.stat-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1E428A;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-images img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.about-section h2 {
    color: #1A73E8;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .about-section {
        grid-template-columns: 1fr;
    }
}


/* SERVICES */
.services-section {
    padding: 70px 40px;
    background: #ffffff;
    text-align: center;
}
.services-section h2 {
    font-size: 2.1rem;
    color: #224880;
    font-weight: 800;
}
.section-desc {
    color: #555;
    margin-bottom: 30px;
}
.section-desc {
    font-weight: 500;        /* slightly bold */
    color: #333;             /* darker text */
    font-size: 18px;
    margin-top: 10px;
    text-align:center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.service-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}
.service-card {
    padding-top: 20px;
    padding-bottom: 30px;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(34,72,128,0.32);
    border: 2px solid #224880;
}

/* INDUSTRIES */
.industries-section {
    background: #eef3f9;
    padding: 70px 40px;
    text-align: center;
}
.industries-section h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #224880;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
}
.industry-item {
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 600;
    color: #224880;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.industry-item:hover {
    background: #224880;
    color: #ffffff;
    transform: translateY(-6px);
}

/* REQUEST FORM */
.request-section {
    padding: 70px 40px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #224880;
}
.section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.7;
}
.diesel-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-group {
    text-align: left;
}
.form-group.full {
    grid-column: span 2;
}
.diesel-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.diesel-form input,
.diesel-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #cccccc;
    font-size: 0.98rem;
}
.submit-btn {
    grid-column: span 2;
    padding: 14px;
    background: #224880;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
}

/* FOOTER */
.footer {
    background: #224880;
    color: #ffffff;
    padding: 40px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.footer-col a {
    color: #dfe8f5;
    display: block;
    margin: 6px 0;
    text-decoration: none;
}
.footer-col a:hover {
    color: #ffffff;
}

/* FADE-UP ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .prices-section { flex-wrap: wrap; margin-top: 0; }
    .about-section { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .prices-section,
    .services-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .header { flex-direction: column; gap: 10px; }
}
/* ===== FIX ABOUT SECTION STATS SIDE-BY-SIDE ===== */

.about-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    margin-top: 30px !important;
}

.stat-box {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1E428A;
}
/* ===== HOME HERO (clean + doesn't hide Prices) ===== */
.hero{
  position: relative;
  min-height: 70vh;          /* KEY: smaller than full screen */
  max-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 60px;
}

/* background image covers the whole hero */
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
}

/* text box */
.hero-box{
  position: relative;
  z-index: 2;
  max-width: 560px;
}

/* Mobile */
@media (max-width: 900px){
  .hero{ padding: 30px; min-height: 60vh; }
  .hero-box{ max-width: 100%; }
}

/* Top Bar Social Icons */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.social-icon:hover {
    color: #d0e6ff;
}
.footer-social img {
    width: 28px;
    margin: 0 8px;
    opacity: .8;
    transition: .3s;
}


.service-card .service-icon {
    font-size: 48px;
    color: #1e3c72; /* Your theme blue */
    margin-bottom: 15px;
}
/* --- Services Title Styling --- */
.services-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0D4C92, #1A73E8);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    /* animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1s ease forwards;
}

/* --- Small Icon Next to the Title --- */
/* SERVICE ICONS – size + solid PetroLine blue */
.service-card .service-icon {
    width: 55px;              /* icon size */
    height: 55px;
    display: block;
    margin: 0 auto 12px;      /* center + small gap below */
    object-fit: contain;

    /* force icon to PetroLine blue (#1E428A) */
    filter: brightness(0) saturate(100%)
            invert(20%) sepia(50%) saturate(1200%)
            hue-rotate(200deg) brightness(90%) contrast(95%);
}

/* --- Fade + Slide Animation --- */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Icon Smooth Floating Animation --- */
@keyframes iconFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
/* --- Matching Gradient for About Title --- */
.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0D4C92, #1A73E8);
    -webkit-background-clip: text;
    color: transparent;

    /* same animation as Our Services */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1s ease forwards;
}
.service-icon {
    width: 60px;   /* change this value */
    height: 60px;  /* change this value */
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover animation */
.service-card:hover .service-icon {
    transform: scale(1.15);
    filter: brightness(1.2);
}

}
/* Force all service icons to match PetroLine blue color */
.service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px auto;
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(95%);
    transition: 0.2s ease;
}

/* Slight hover effect - clean and modern */
.service-icon:hover {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(9%) sepia(81%) saturate(4100%) hue-rotate(210deg) brightness(85%) contrast(96%);
}
.service-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px auto;
    background: #0a3d8c10; /* very soft blue */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-card .service-icon {
    width: 65px !important;
    height: 65px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 15px auto !important;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
}
/* --- CLEAN FINAL SERVICE ICON SYSTEM --- */

.service-card {
    position: relative;
    padding: 30px 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(34,72,128,0.25);
}

/* icon size + dark blue color */
.service-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;

    /* apply PetroLine dark blue */
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%)
            saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(95%);
    
    transition: 0.3s ease;
}

/* hover animation */
.service-card:hover .service-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(9%) sepia(81%)
            saturate(4100%) hue-rotate(210deg) brightness(85%) contrast(96%);
}/* SERVICE CARD POP HOVER */
.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ICON SIZE */
.service-icon {
    width: 70px;
    height: auto;
    transition: transform 0.25s ease, filter 0.25s ease;
}

/* ICON ON HOVER - CHANGE COLOR */
.service-card:hover .service-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(2500%) hue-rotate(200deg);
}



/* === FINAL SERVICE ICON STYLE (CLEAN + WORKING) === */

.service-card {
    padding: 30px 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    animation: float 5s ease-in-out infinite;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}

.service-icon {
    width: 65px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
    object-fit: contain;

    /* PetroLine Blue */
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%)
            saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(95%);
    transition: 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(9%) sepia(81%)
            saturate(4100%) hue-rotate(210deg) brightness(85%) contrast(96%);
}

/* Float Animation */
@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.9s; }
.service-card:nth-child(5) { animation-delay: 1.2s; }
/* Restore icon hover effect */
.service-card:hover .service-icon {
    filter: brightness(0) saturate(100%) invert(29%) sepia(90%) saturate(1500%) hue-rotate(195deg) brightness(100%) contrast(95%);
    transition: 0.3s ease-in-out;
}
/* Center wrapper for title + icon */
.services-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

/* Style the icon above services title */
.services-title-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;

    /* STOP rotation or animation from global fade-up */
    transform: none !important;
    animation: none !important;
}

/* Style title text */


/* Keep hover animation ONLY for service cards */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: 0.3s ease;
}
/* Center everything in the SERVICES section */
.services-section {
    text-align: center;
}

/* Wrapper: icon + title in a centered row */
.services-title-wrapper {
    display: inline-flex;          /* shrink to content */
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 8px auto;       /* center horizontally */
}

/* Services title text: black */
.services-title {
    color: #111;                   /* black-ish */
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
/* ================================
   STOP TITLE ICON FROM MOVING
   ================================ */
.title-icon {
    width: 42px;              /* control size */
    height: auto;
    display: block;

    animation: none !important;
    transform: none !important;
    transition: none !important;
}
.services-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.industries-title {
    color: #5fa8ff; /* light blue */
}
.industries-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1A73E8; /* light blue */
}

.social-icon {
    width: 42px;
    height: 42px;
    background: #163e7a; /* same family as header */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1); /* white icons */
}

/* Hover = light blue (like header) */
.social-icon:hover {
    background: #5fa8ff;
    transform: translateY(-3px);
}
.site-footer {
    background: #0f2f5c;
    color: #fff;
    font-size: 15px;
}



.footer-logo {
    width: 200px;       /* was ~160 */
    max-width: 100%;
    margin-bottom: 20px;
}


.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #dbe7ff;
    text-decoration: none;
}

.footer-col a:hover {
    color: #6fb6ff;
}
.footer-col {
    padding-top: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: #5fa8ff;
    transform: translateY(-3px);
}

.footer-col input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-top: 10px;
}


/* FOOTER BASE */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e9f2;
    color: #1c2b4a;
    font-size: 15px;
}





/* HEADINGS */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0f2f5c;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #425b84;
    text-decoration: none;
}

.footer-col a:hover {
    color: #3b82f6;
}

/* SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-socials img {
    width: 20px;
    height: 20px;
}

.footer-socials a:hover {
    background: #3b82f6;
}

/* NEWSLETTER */
.newsletter-box {
    display: flex;
    margin-top: 12px;
}

.newsletter-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #dbe3f0;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.newsletter-box button {
    padding: 10px 18px;
    border: none;
    background: #0f2f5c;
    color: #fff;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: #3b82f6;
}

/* BOTTOM BAR */
.footer-bottom {
    background: #0f2f5c;   /* SAME as header */
    color: #ffffff;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}


.footer-brand p {
    max-width: 320px;
    line-height: 1.6;
    margin-top: 10px;
}
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e9f0;
    margin-top: 60px;
}



.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0f2f5a;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: #555;
    text-decoration: none;
}

.footer-col p {
    line-height: 1.8;
    color: #555;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials img {
    width: 36px;
    transition: transform 0.3s;
}

.footer-socials img:hover {
    transform: scale(1.1);
}

.newsletter-box {
    display: flex;
    margin-top: 15px;
}

.newsletter-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
}

.newsletter-box button {
    background: #0f2f5a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.footer-bottom {
    background: #0f2f5a; /* SAME AS HEADER */
    color: #ffffff;
    text-align: center;
    padding: 18px 10px;
    font-size: 14px;
}

.footer-socials img {
    background: #f2f6fb;
    padding: 10px;
    border-radius: 50%;
}

.footer-socials img:hover {
    background: #e6f0ff;
}
.footer{
    background:#123563;
    color:#fff;
    padding:60px 0 20px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer h3,
.footer h4{
    margin-bottom:15px;
}

.footer p{
    color:#d6e2f3;
    line-height:1.6;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    color:#d6e2f3;
    text-decoration:none;
}

.footer ul li a:hover{
    color:#6bb8ff;
}

/* SOCIAL ICONS */
.footer-socials{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-socials a{
    width:42px;
    height:42px;
    background:#1f4f88;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.footer-socials img{
    width:18px;
    height:18px;
}

.footer-socials a:hover{
    background:#6bb8ff;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:40px;
    padding-top:15px;
    text-align:center;
    font-size:14px;
    color:#c7d9ef;
}

/* ===== FIXES / OVERRIDES (clean, no duplicates) ===== */

/* Prevent any unwanted spinning on title icons */
.title-icon,
.section-icon,
.about-icon-img,
.services-icon-img,
.industry-icon-img {
  animation: none !important;
  transform: none;
}

/* Generic title icon sizing */
.title-icon,
.section-icon,
.about-icon-img,
.services-icon-img,
.industry-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  vertical-align: middle;
}

/* Center section titles that include an icon */
.services-title,
.about-title,
.industries-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin: 0 auto 8px;
}

/* Services card icons sizing */
.service-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  transition: transform 200ms ease, filter 200ms ease, opacity 200ms ease;
}

/* Light-blue hover effect on service icons */
.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.15) saturate(1.35);
}

/* Hover light-blue for section title icons (About + Industries + Services) */
.services-title img:hover,
.about-title img:hover,
.industries-title img:hover,
.title-icon:hover {
  filter: brightness(1.2) saturate(1.35);
}

/* ===== FOOTER (white background + blue copyright bar) ===== */
.footer {
  background: #ffffff;
  color: #1c2b3a;
  padding: 56px 0 0;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: #1b6fd8;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-brand h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #0e2d57;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0e2d57;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-contact p {
  margin: 10px 0;
}

/* Social icons in one line */
        

/* Responsive footer */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: #2f80ed;
}

.footer-social a:hover img {
  filter: brightness(0) invert(1);
}
/* === FOOTER FIX (FORCE CLEAN LAYOUT) === */

.footer-social {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5fb;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: #2f80ed;
}

.footer-social a:hover img {
  filter: brightness(0) invert(1);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  color: #0b2d5c;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #1e88e5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* SOCIAL ICONS */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.footer-social img:hover {
  transform: translateY(-3px);
}

/* COPYRIGHT BAR */
.footer-bottom {
  background: #0b2d5c;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
@media (max-width: 768px){
  .contact-hero{
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ================= SAFE FOOTER OVERRIDES ================= */

/* limit footer width */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* prevent huge height */
.footer {
  padding: 40px 0 0 !important;
}

/* FIX social icons clarity */
.footer-social img,
.footer-socials img {
  filter: none !important;
  opacity: 1 !important;
}

/* clean hover (no blur) */
.footer-social a:hover img,
.footer-socials a:hover img {
  filter: none !important;
  transform: scale(1.05);
}

/* newsletter alignment */
.newsletter-box,
.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-box input,
.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
}

.newsletter-box button,
.newsletter-form button {
  padding: 10px 18px;
  background: #0f2f5c;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
}

/* footer columns tighter */
.footer-col {
  max-width: 350px;
}
/* ===== FOOTER VISUAL WIDTH FIX ===== */

/* full-width background */
.site-footer {
  background: #ffffff;
  padding-top: 8px;
}


/* mobile */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ===== REMOVE EXCESS SPACE BEFORE FOOTER ===== */
.request-section {
  padding-bottom: 30px !important;
}

.site-footer {
  margin-top: 0 !important;
  padding-top: 8px !important;
}

.footer-social a:hover {
  background: #1e88e5;
  color: #fff;
  transform: translateY(-3px);
}
/* ================= SAFE FINAL FOOTER FIX ================= */

/* footer base */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e9f2;
  padding-top: 24px;
}

/* control visual width */
.site-footer .footer-inner {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

/* layout */
.site-footer .footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}

/* text */
.site-footer .footer-col p {
  margin: 6px 0;
  line-height: 1.5;
}

/* social */
.site-footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

/* copyright bar – FIXED FULL WIDTH */
.site-footer .footer-bottom {
  width: 100%;
  background: #0b2d5c;
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  margin-top: 24px;
}

/* mobile */
@media (max-width: 768px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .footer-social {
    justify-content: center;
  }
}

/* === SMALL SAFE FOOTER FIX === */
.site-footer {
  padding-top: 20px;
}

.footer-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-bottom {
  margin-top: 20px;
}
/* ===== FINAL FOOTER SIZE & ALIGNMENT FIX ===== */

/* Reduce overall footer height */
.site-footer {
  padding-top: 12px;
}

/* Reduce container vertical padding */
.site-footer .footer-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Reduce space before copyright */
.site-footer .footer-bottom {
  margin-top: 16px;
  padding: 12px;
}

/* Push logo & brand content more to the left */
.site-footer .footer-container {
  align-items: flex-start;
}

/* Remove extra spacing above logo */
.footer-logo {
  margin-top: 0;
  margin-left: 0;
}

/* Make first column hug the left edge */
.site-footer .footer-col:first-child {
  padding-left: 0;
}
/* ===== ACTUAL FOOTER HEIGHT REDUCTION ===== */

/* 1. Make logo smaller */
.footer-logo {
  max-width: 140px;   /* was too big */
  margin-bottom: 8px;
}

/* 2. Tighten description text */
.site-footer .footer-col p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* 3. Reduce social icons vertical impact */
.footer-social {
  margin-top: 8px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

/* 4. Reduce newsletter block height */
.newsletter h4 {
  margin-bottom: 6px;
}

.newsletter-form {
  margin-top: 6px;
}

/* 5. Pull first column more to the left */
.site-footer .footer-inner {
  padding-left: 0;
}

.site-footer .footer-col:first-child {
  padding-left: 0;
}
/* === CONTACT + NEWSLETTER SIDE BY SIDE === */

.footer-contact {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-contact .contact-info {
  flex: 1;
}

.footer-contact .newsletter {
  flex: 1;
  text-align: right;
}

.footer-contact .newsletter-form {
  justify-content: flex-end;
}
/* === FORCE NEWSLETTER TO STACK CORRECTLY === */

.footer-contact .newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact .newsletter h4 {
  margin: 0 0 12px 0;
}

.footer-contact .newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 0;
}
/* ===== FINAL NEWSLETTER COLUMN FIX ===== */

/* make footer 4 columns */
.site-footer .footer-container {
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
}

/* newsletter spacing */
.footer-newsletter p {
  font-size: 13px;
  margin-bottom: 10px;
}

/* keep input visible */
.footer-newsletter .newsletter-form {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
}
/* ===== FINAL TOP BAR SOCIAL FIX (LOCKED) ===== */

.topbar {
  background: #224880;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Social container */
.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icon buttons */
.topbar-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;   /* force white */
  font-size: 16px;
  text-decoration: none;
}

/* Hover */
.topbar-social a:hover {
  background: rgba(255, 255, 255, 0.35);
}
/* ================= CONTACT PAGE ================= */

.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url("images/contact-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-box h2,
.contact-form-box h2 {
  margin-bottom: 20px;
  color: #0b2d5c;
}

.contact-info-box p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
}

.contact-info-box i {
  color: #0b2d5c;
  margin-right: 8px;
}

.contact-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  background: #0b2d5c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.contact-social a:hover {
  background: #123b73;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  background: #0b2d5c;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #123b73;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* ===== FORCE HEADER STYLES ON ALL PAGES ===== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px;
}

.main-nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #0b2d5c;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  color: #123b73;
}

.cta-btn {
  background: #0b2d5c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn:hover {
  background: #123b73;
}
/* Fix footer overlap on contact page */
.contact-section {
  margin-bottom: 80px;
}
.contact-social a {
  font-size: 16px;
}
/* CONTACT SOCIAL ICONS — INLINE SVG */

.contact-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  background: #0b2d5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}
/* CONTACT SOCIAL ICONS — INLINE SVG */

.contact-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  background: #0b2d5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* Contact page: keep layout centered and avoid excessive whitespace */
.contact-section {
  align-items: start;
}

.contact-info-box,
.contact-form-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* ===== Contact page background graphics ===== */
body.contact-page {
  background: #f3f6fb;
  position: relative;
  overflow-x: hidden;
}

body.contact-page::before,
body.contact-page::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,47,92,0.14), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

body.contact-page::before {
  top: 180px;
  left: -220px;
}

body.contact-page::after {
  top: 320px;
  right: -240px;
}

.contact-section,
.contact-hero,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ===== Contact social icons – outline style (like header) ===== */
.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.15); /* soft transparent */
  border: 1.5px solid #ffffff;
  color: #ffffff;

  text-decoration: none;
  transition: all 0.25s ease;
}

.contact-social a i {
  font-size: 17px;
  color: #ffffff;
}

/* Hover effect like header */
.contact-social a:hover {
  background: #ffffff;
}

.contact-social a:hover i {
  color: #0b2d5c;
}
/* ===== Contact: Make Get in Touch box blue + white text ===== */
.contact-info-box{
  background: #1f4e86;       /* same blue bar */
  color: #fff;
}

.contact-info-box h2{
  color: #fff;
}

.contact-info-box p{
  color: rgba(255,255,255,0.92);
}

.contact-info-box p i{
  color: #fff;
}
/* ===== Social icons perfectly centered ===== */

/* circles */
.contact-social a{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.70);
}

/* the icon itself */
.contact-social a i{
  display: block;
  line-height: 1;
  font-size: 18px;
  margin: 0;
  padding: 0;
  transform: translateY(0.5px); /* tiny optical fix for FA icons */
  color: #fff !important;
}
/* ===== CONTACT SOCIAL: ONLY hover becomes full white ===== */
.contact-info-box .contact-social a{
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.75) !important;
  color: #fff !important;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info-box .contact-social a i{
  color: #fff !important;
  font-size: 18px;
  line-height: 1;
  display: block;
}

/* ✅ hover: full white circle */
.contact-info-box .contact-social a:hover{
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.contact-info-box .contact-social a:hover i{
  color: #1f4e86 !important;
}
/* ===== CONTACT PAGE HEADER IMAGE ===== */
.contact-hero{
  position: relative;
  height: 320px;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("images/contact-header.jpeg") center / cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;

  align-items: flex-start;   /* ← LEFT */
  text-align: left;          /* ← LEFT */
  padding-left: 120px;       /* ← SPACING */

  color: #ffffff;
}


/* text styling */
.contact-hero h1{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero p{
  font-size: 16px;
  opacity: 0.95;
}
@media (max-width: 768px){
  .contact-hero{
    height: 260px;
    padding: 0 20px;
  }

  .contact-hero h1{
    font-size: 32px;
  }
}
/* ===== INDEX HERO: place text card nicely (fix jump + sizing) ===== */
.hero{
  position: relative;
  overflow: hidden;
}

/* the blue card */
.hero-box{
  position: absolute !important;
  left: 60px;             /* move card to left */
  bottom: 60px;           /* move card down */
  right: auto !important;
  top: auto !important;

  max-width: 520px;       /* control card width */
  padding: 36px 42px;
  border-radius: 22px;
  z-index: 2;
}

/* make headline not insanely huge */
.hero-box h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 10px 0;
}

.hero-box h2{
  font-size: 30px;
  margin: 0 0 14px 0;
}

.hero-box p{
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 900px){
  .hero-box{
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 22px;
  }

  .hero-box h1{ font-size: 34px; }
  .hero-box h2{ font-size: 24px; }
}
/* ===== HERO (CLEAN + WORKING) ===== */
.hero{
  position: relative;
  width: 100%;
  height: clamp(420px, 58vh, 560px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-box{
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 2;
  max-width: 580px;
  background: rgba(0, 49, 92, 0.88);
  padding: 36px 46px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

@media (max-width: 900px){
  .hero-box{
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 22px;
  }
}

/* =====================
   MOBILE FIXES
===================== */
@media (max-width: 768px) {

  /* HERO / HEADER */
  .hero,
  .hero-section {
    height: auto;
    padding: 60px 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 15px;
  }

  /* PRICE CARDS */
  .prices-grid,
  .cards,
  .price-cards {
    grid-template-columns: 1fr;
  }

  /* CONTACT PAGE */
  .contact-wrapper,
  .contact-container {
    grid-template-columns: 1fr;
  }

  /* BUTTONS */
  button,
  .btn {
    width: 100%;
  }
}
/* =========================
   MOBILE FIXES (GLOBAL)
========================= */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: auto !important;
    padding: 20px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-box {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  /* HEADER / NAV */
  .header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .request-btn {
    width: 100%;
    text-align: center;
  }

  /* REQUEST DIESEL FORM */
  .request-section {
    padding: 45px 16px !important;
  }

  .diesel-form {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
    gap: 14px !important;
  }

  .form-group.full {
    grid-column: span 1 !important;
  }

  .submit-btn {
    grid-column: span 1 !important;
    width: 100%;
  }

  /* PRICE CARDS spacing */
  .prices-section {
    margin-top: 20px !important;
    padding: 0 14px;
  }
}
/* ===== MOBILE FIXES (HEADER + FOOTER + OVERFLOW) ===== */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

@media (max-width: 768px) {

  /* TOP BAR */
  .topbar { padding: 10px 14px; }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .topbar-left span,
  .topbar-left a {
    display: inline-block;
    margin: 0 12px 6px 0;
    word-break: break-word;
  }
  .topbar-right { gap: 10px; }

  /* HEADER */
  .header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
  }
  .logo img { height: 52px; }
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    text-align: center;
  }
  .nav a { margin: 0; }
  .request-btn { width: 100%; text-align: center; }

  /* HERO / PRICES spacing */
  .hero { height: auto !important; padding: 14px !important; }
  .hero-box { width: 100%; max-width: 100%; border-radius: 16px; padding: 18px; }
  .prices-section {
    margin-top: 18px !important;
    padding: 0 14px 30px !important;
    flex-wrap: wrap;
    gap: 14px;
  }
  .price-card { width: 100%; max-width: 420px; }

  /* REQUEST FORM */
  .request-section { padding: 45px 14px; }
  .diesel-form {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
  }
  .form-group.full,
  .submit-btn { grid-column: span 1 !important; }

  /* FOOTER */
  .footer,
  .footer-container,
  .footer-main {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
    padding: 26px 14px !important;
  }

  .footer-col { width: 100% !important; }

  /* newsletter input + button (no overflow) */
  .newsletter-form,
  .footer-newsletter form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .newsletter-form input,
  .footer-newsletter input {
    width: 100% !important;
  }
  .newsletter-form button,
  .footer-newsletter button {
    width: 100% !important;
  }

  /* social icons wrap nicely */
  .footer-social,
  .footer-social-newsletter {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }
}
/* ====== MOBILE GLOBAL FIX ====== */
html, body { overflow-x: hidden; }
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* ====== MOBILE HEADER + TOPBAR ====== */
@media (max-width: 768px) {

  /* Top blue bar */
  .top-bar, .topbar, .top-header, .header-top {
    padding: 10px 12px !important;
  }

  .top-bar .container,
  .topbar-inner,
  .topbar,
  .top-header .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  /* Force long email/phone to wrap cleanly */
  .top-bar a, .topbar a, .top-header a,
  .top-bar span, .topbar span, .top-header span {
    word-break: break-word !important;
    white-space: normal !important;
  }

  /* Social icons in top bar */
  .top-social, .topbar-right, .topbar-social {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: flex-start !important;
  }

  /* Main header */
  header, .header {
    padding: 12px 12px !important;
  }

  .header .container,
  .header-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }

  nav, .nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px 16px !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* Request Diesel button full width */
  .request-btn, .request-diesel-btn, .cta-btn {
    width: 100% !important;
    max-width: 520px !important;
    text-align: center !important;
  }
}

/* ====== MOBILE FOOTER FIX ====== */
@media (max-width: 768px) {

  footer, .footer {
    padding: 22px 14px !important;
  }

  /* IMPORTANT: make footer columns stack */
  .footer-content,
  .footer-container,
  .footer-main,
  .footer-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .footer-col,
  .footer-left,
  .footer-links,
  .footer-contact,
  .footer-newsletter {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Newsletter form should not overflow */
  .newsletter-form,
  .footer-newsletter form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .newsletter-form input,
  .footer-newsletter input {
    width: 100% !important;
  }

  .newsletter-form button,
  .footer-newsletter button {
    width: 100% !important;
  }

  /* Social icons in footer wrap and center */
  .footer-social,
  .footer-social-newsletter {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }
}
/* ================= MOBILE HEADER FIX ================= */
@media (max-width: 768px) {

  /* TOPBAR */
  .topbar {
    padding: 10px 15px;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .topbar-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
  }

  .topbar-left a,
  .topbar-left span {
    margin: 0;
    white-space: nowrap;
  }

  /* HEADER */
  .header {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .nav a {
    margin: 0;
    font-size: 14px;
  }

  .request-btn {
    width: 100%;
    text-align: center;
  }
}
/* =====================================
   FORCE MOBILE TOPBAR & HEADER FIX
   ===================================== */
@media (max-width: 768px) {

  .topbar {
    width: 100%;
    padding: 14px 10px;
  }

  .topbar-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px;
  }

  .topbar-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px;
    font-size: 14px;
  }

  .topbar-left span,
  .topbar-left a {
    display: block;
    color: #fff;
    white-space: normal;
  }

  .topbar-social {
    display: flex !important;
    justify-content: center !important;
    gap: 12px;
  }
}  /* ✅ THIS LINE FIXES EVERYTHING */

 /* ===== GLOBAL MOBILE FIX ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== GLOBAL MOBILE FIX ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.about-card {
  width: 100%;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* ================= MOBILE FIX (GLOBAL) ================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* ---------- TOP BAR ---------- */
  .topbar {
    padding: 10px 15px;
    text-align: center;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 8px;
  }

  .topbar-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .topbar-social {
    margin-top: 8px;
  }

  /* ---------- HEADER ---------- */
  .header {
    flex-direction: column;
    padding: 15px;
    gap: 12px;
  }

  .logo img {
    height: 55px;
  }

  /* Hide desktop nav */
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 15px 0;
    border-top: 1px solid #eee;
  }

  .nav a {
    padding: 12px;
    display: block;
    text-align: center;
  }

  /* Show nav when active */
  .nav.active {
    display: flex;
  }

  /* Hamburger */
  .menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: #224880;
  }

  .request-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* ---------- HERO ---------- */
  .hero {
    height: auto;
  }

  .hero-box {
    width: 90%;
    padding: 24px;
  }

  .hero-box h1 {
    font-size: 1.8rem;
  }

  .hero-box h2 {
    font-size: 1.3rem;
  }

  /* ---------- PRICES ---------- */
  .prices-section {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
  }

  .price-card {
    width: 100%;
  }

  /* ---------- ABOUT ---------- */
  .about-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .about-images img {
    height: auto;
  }

  /* ---------- SERVICES ---------- */
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  /* ---------- INDUSTRIES ---------- */
  .industry-grid {
    grid-template-columns: 1fr;
  }

  /* ---------- REQUEST FORM ---------- */
  .diesel-form {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  /* ---------- FOOTER ---------- */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
.thankyou-page{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(180deg, #0e2d57 0%, #f6f7fb 65%);
}

.thankyou-card{
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.thankyou-logo{
  height: 70px;
  width: auto;
  margin: 0 auto 14px;
  display: block;
}

.thankyou-card h1{
  margin: 0 0 10px;
  color: #0e2d57;
}

.thankyou-card p{
  margin: 0 0 18px;
  color: #333;
  line-height: 1.5;
}

.thankyou-btn{
  display: inline-block;
  background: #0e2d57;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}/* ===== MOBILE FOOTER LOGO FIX ===== */
@media (max-width: 768px) {

  .footer-logo,
  .footer-logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-top,
  .footer-column,
  .footer-content {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
/* ===== PRICES: CENTER ICON + TEXT (MOBILE FIX) ===== */

.price-card{
  display: flex;
  flex-direction: column;     /* stack icon then text */
  align-items: center;        /* center horizontally */
  text-align: center;         /* center text */
}

.price-card .price-icon{
  display: block;
  margin: 0 auto 10px;        /* center + spacing under icon */
  width: 42px;                /* adjust size if you want */
  height: auto;
}
/* ===== UNIFY MOBILE NAV (INDEX + CONTACT) ===== */
@media (max-width: 768px) {

  /* Both header wrappers */
  .header, .site-header {
    text-align: center;
  }

  /* Both inner containers */
  .header, .site-header .header-inner, .header .logo {
    justify-content: center;
  }

  /* Center logo on both pages */
  .header .logo img,
  .site-header .logo {
    display: block;
    margin: 12px auto;
    max-width: 200px;
    height: auto;
  }

  /* Make links vertical on both pages */
  .header .nav,
  .site-header .main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 10px 0 18px;
  }

  /* Center the Request Diesel button on both pages */
  .header .request-btn,
  .site-header .request-btn {
    display: block;
    width: min(420px, 90%);
    margin: 14px auto 12px;
    text-align: center;
  }
}
/* ===== ABOUT SECTION IMAGES – MOBILE FIX ===== */
@media (max-width: 768px) {

  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .about-images img {
    width: 100%;
    height: 120px;        /* same height */
    object-fit: cover;    /* crop nicely */
    border-radius: 14px;
    display: block;
  }
}
.whatsapp-float{
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2147483647 !important; /* strongest */
  box-shadow: 0 10px 25px rgba(0,0,0,.25) !important;
}

.whatsapp-float img{
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  object-fit: contain !important;
  display: block !important;
}
/* ===== FORCE FLOATING WHATSAPP BUTTON ===== */
a.whatsapp-float{
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2147483647 !important;
  box-shadow: 0 10px 25px rgba(0,0,0,.25) !important;
  text-decoration: none !important;
}

a.whatsapp-float img{
  width: 30px !important;
  height: 30px !important;
  display: block !important;
  object-fit: contain !important;
}
/* change indicator */
.price-change{
  margin-top: 6px;
  font-weight: 700;
  font-size: 14px;
}

/* FORCE colors for price arrows (put at VERY END of styles.css) */
.price-change{
  margin-top: 6px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
}

/* ↓ price down = GOOD (green) */
.price-change.price-down{ color:#16a34a !important; }

/* ↑ price up = BAD (red) */
.price-change.price-up{ color:#dc2626 !important; }

/* = same */
.price-change.price-same{ color:#64748b !important; }

.price-change{
  font-size: 25px !important;   /* يكبر السهم */
  font-weight: 900 !important;  /* أثخن */
  line-height: 1 !important;
  letter-spacing: 0.5px;
}
.price-change{
  font-size: 20px !important;
  font-weight: 900 !important;
}
/* ✅ FIX: About stats overflow on mobile */
@media (max-width: 768px){
  .about-stats{
    grid-template-columns: 1fr !important;  /* بدل 3 أعمدة */
    gap: 16px !important;
  }
  .stat-box{
    width: 100% !important;
  }
}
/* ✅ Make prices overlap hero nicely (controlled) */
.hero{
  padding-bottom: 140px;              /* مساحة تحت البوكس */
}

#prices{
  margin-top: -50px;                   /* يطلع فوق على صورة الهيرو */
  position: relative;
  z-index: 5;
}

/* خلي البوكس الأزرق دايمًا فوق */
.hero-box{
  position: relative;
  z-index: 10;
}
@media (max-width: 768px){
  .hero{ padding-bottom: 90px; }
  #prices{ margin-top: -50px; }
}
/* ===== FIX spacing inside price cards ===== */
.price-card{
  padding: 28px 22px 30px !important; /* زيادة padding */
}

.price-number{
  margin-bottom: 12px !important; /* فراغ تحت السعر */
}

.price-change{
  margin-bottom: 14px !important; /* فراغ تحت السهم */
}

.price-card .updated{
  margin-top: 12px !important;   /* نزّل Updated لتحت */
  font-size: 13px;
  opacity: 0.7;
}
/* ===== NAV LINKS (same on all pages) ===== */
nav a {
  font-weight: 500;
  font-size: 16px;
  color: #123a72;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: 0.2s ease;
}

nav a:hover {
  font-weight: 600;
}

/* underline line */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #123a72;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

/* active page link */
nav a.active {
  font-weight: 600;
}

nav a.active::after {
  width: 100%;
}
/* ====== MOBILE NAV FIX ====== */
@media (max-width: 768px){

  .header{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .header .logo img{
    max-height: 40px;
  }

  /* نخبي المنيو افتراضياً على الموبايل */
  .header .nav{
    display: none !important;
    flex-basis: 100%;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
  }

  /* لما تنفتح (class = open) */
  .header .nav.open{
    display: flex !important;
  }

  /* زر Request Diesel ياخد عرض كامل تحت المنيو */
  .header .request-btn{
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  /* شكل زر الهامبرغر */
  .nav-toggle{
    display: flex;
    border: none;
    background: #19457d;
    width: 40px;
    height: 28px;
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(15,23,42,.25);
  }

  .nav-toggle span{
    height: 2px;
    width: 22px;
    background: #ffffff;
    border-radius: 4px;
    margin: 0 auto;
  }
}
