body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0
}

html,
body {
    font-family: var(--font-primary);
    font-weight: 400;
    box-sizing: border-box;
    color: var(--secondary-1);
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--primary-1);
}

    a:hover {
        color: var(--secondary-2);
    }

    a:-webkit-any-link:focus-visible {
        outline: 0
    }

ul {
    list-style: none
}

/* ==============================
   Header
   ============================== */

/* Header typography (no numeric font-weight) */
.site-header .navbar,
.site-header .navbar .nav-link,
.site-header .navbar .dropdown-menu,
.site-header .navbar .dropdown-item,
.btn-fuel-locations {
    font-family: var(--font-primary);
}

/* Increase header height (~30px more spacious) */
.site-header .navbar {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.site-logo {
    height: 56px;
}

/* Nav links: use font families instead of numeric weights */
.navbar .nav-link {
    font-family: var(--font-primary);
    color: var(--text-color);
    position: relative;
    transition: color 200ms ease, transform 200ms ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: var(--fs-18);
}

    .navbar .nav-link:hover,
    .navbar .nav-link:focus {
        color: var(--primary);
        transform: translateY(-1px);
    }

/* Remove Bootstrap default caret to prevent thicker/odd underline behavior */
.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Custom dropdown arrow next to About Us */
.dropdown-arrow {
    font-size: 0.75rem;
    color: currentColor;
    transition: transform 180ms ease;
}

/* Rotate arrow when open */
.navbar .dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Fix underline thickness consistency (same for dropdown + normal links) */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.45rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
    transform: scaleX(1);
}

/* Modern dropdown menu: rounded + shadow + animated */
.navbar .dropdown-menu {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    padding: 0.6rem;
    margin-top: 0;
    /* animation base state */
    display: block; /* enables transition */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

    /* When Bootstrap opens it (mobile click), animate in */
    .navbar .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

/* Child item styling */
.navbar .dropdown-item {
    font-family: var(--font-primary);
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: rgba(0, 56, 118, 0.06);
        color: var(--primary);
        transform: translateX(2px);
    }

    .navbar .nav-link:focus-visible,
    .navbar .dropdown-item:focus-visible,
    .btn-fuel-locations:focus-visible,
    .hero-slider .owl-nav button:focus-visible {
        outline: 3px solid rgba(0, 147, 178, 0.35);
        outline-offset: 3px;
    }
/* Desktop hover behavior only (open on hover, not click) */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (min-width: 992px) {
    .navbar .dropdown {
        position: relative;
    }

        .navbar .dropdown > .dropdown-menu {
            top: calc(100% - 2px);
        }

            .navbar .dropdown > .dropdown-menu::before {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                top: -10px;
                height: 10px;
            }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 0.5rem;
        padding-bottom: 0.75rem;
    }

    .navbar .nav-item {
        width: 100%;
    }

    .navbar .nav-link {
        width: 100%;
        padding: 0.95rem 0.25rem;
    }

    /* Mobile dropdown becomes an inline "panel" */
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 14px;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
        background: var(--white);
        /* Slide-down animation */
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
        transition: max-height 300ms ease, opacity 300ms ease, transform 300ms ease, padding 300ms ease, margin 300ms ease;
    }

        .navbar .dropdown-menu.show {
            max-height: 500px;
            margin: 0.4rem 0 0.8rem 0;
            padding: 0.55rem;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

    .navbar .dropdown-item {
        padding: 0.85rem 0.9rem;
        border-radius: 12px;
        font-family: var(--font-primary);
        transition: background-color 200ms ease, color 200ms ease;
    }

        .navbar .dropdown-item:hover,
        .navbar .dropdown-item:focus,
        .navbar .dropdown-item:active {
            background: rgba(0, 56, 118, 0.08);
            color: var(--primary);
        }
}
/* Fuel Locations button: font + hover animation */
.btn-fuel-locations {
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.75rem 1.05rem;
    box-shadow: 0 10px 18px rgba(244, 161, 25, 0.25);
    transition: all 0.3s ease;
    transform-origin: center;
}

    .btn-fuel-locations:hover,
    .btn-fuel-locations:focus {
        background: var(--secondary-2);
        color: var(--white);
        transform: scale(1.05);
    }

@media (max-width: 767px) {
    .site-logo {
        height: 56px;
    }
}
/* ==============================
   End: Header
   ============================== */

/* ==============================
   Hero / Slider
   ============================== */
.hero-slider-wrap {
    position: relative;
    overflow: hidden;
}

.hero-slider,
.hero-slide {
    height: 600px;
}

    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage,
    .hero-slider .owl-item {
        height: 100%;
    }

    .hero-slider .owl-stage-outer {
        overflow: hidden;
    }

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.55;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 14px;
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--primary);
}

.hero-heading,
.hero-title {
    color: var(--white);
    font-size: var(--fs-54);
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.12;
    text-shadow: 0 14px 34px var(--text-color);
    margin: 0;
    max-width: 960px;
    margin: auto;
}

.hero-accent {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-desc {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: var(--fs-26);
    line-height: 1.6;
    color: var(--white);
    margin: 14px auto 0;
    max-width: 980px;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white) !important;
    border: 2px solid var(--primary) !important;
    display: grid;
    place-items: center;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

    .hero-slider .owl-nav button.owl-prev span,
    .hero-slider .owl-nav button.owl-next span {
        color: var(--primary);
        font-size: 26px;
        line-height: 1;
        top: -3px;
        position: relative;
    }

    .hero-slider .owl-nav button.owl-prev:hover,
    .hero-slider .owl-nav button.owl-next:hover {
        background: var(--primary) !important;
        transform: translateY(-1px);
    }

        .hero-slider .owl-nav button.owl-prev:hover span,
        .hero-slider .owl-nav button.owl-next:hover span {
            color: var(--white);
        }

.hero-slider .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
    transform: translateY(-50%);
    z-index: 6;
    pointer-events: none;
}

    .hero-slider .owl-nav button.owl-prev,
    .hero-slider .owl-nav button.owl-next {
        pointer-events: auto;
    }

.hero-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 9;
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .hero-slider .owl-dots .owl-dot span {
        display: block; /* REQUIRED */
        width: 10px;
        height: 10px;
        background: var(--bg-light);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .hero-slider .owl-dots .owl-dot.active span {
        background: var(--secondary);
        transform: scale(1.2);
    }

@media only screen and (max-width: 1199px) {
    .hero-heading,
    .hero-title {
        font-size: var(--fs-40);
    }
}

@media only screen and (max-width: 991px) {
    .hero-slider, .hero-slide {
        height: 520px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider, .hero-slide {
        height: 420px;
    }

    .hero-tagline {
        font-size: var(--fs-12);
        padding: 9px 12px;
    }

    .hero-heading,
    .hero-title {
        font-size: var(--fs-28);
    }

    .hero-desc {
        font-size: var(--fs-16);
    }

    .hero-slider .owl-nav button.owl-prev,
    .hero-slider .owl-nav button.owl-next {
        display: none;
    }
}

/* ==============================
   End: Hero / Slider
   ============================== */

/* ==============================
   About Section
   ============================== */
.about-section {
    position: relative;
    padding: var(--fs-100) 0;
    overflow: hidden;
}

.about-section__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/bg-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section__media {
    position: relative;
    padding-right: 18px;
}

.about-section__image-wrap {
    background: var(--white);
    border: 6px solid var(--white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about-section__image {
    display: block;
    width: 100%;
    height: auto;
}

.about-section__image-wrap--main {
    border-radius: 16px;
    overflow: hidden;
}

.about-section__image-wrap--overlap {
    position: absolute;
    right: 0;
    bottom: -26px;
    width: 48%;
    max-width: 320px;
    border-radius: 16px;
    overflow: hidden;
}

.about-section__content {
    color: var(--text-color);
}

.about-section__label {
    display: inline-block;
    padding: 8px 12px;
    background: rgba(244, 161, 25, 0.18);
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: var(--fs-12);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 14px;
}

.about-section__title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--fs-34);
    line-height: 1.25;
    color: var(--text-color);
    margin: 0 0 16px 0;
}

.about-section__text {
    font-family: var(--font-primary);
    font-size: var(--fs-18);
    line-height: 1.6;
    color: rgba(34, 34, 34, 0.78);
    margin: 0;
}

@media (max-width: 991px) {
    .about-section__image-wrap--overlap {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: var(--fs-54) 0;
    }

    .about-section__media {
        padding-right: 0;
    }

    .about-section__image-wrap--overlap {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: -18px;
        width: min(72%, 320px);
    }

    .about-section__content {
        padding-top: 54px;
    }
}
/* ==============================
   End: About Section
   ============================== */
/* ==============================
   Services Section
   ============================== */
.services-section {
    padding: var(--fs-70) 0;
    background: var(--white);
}

.services-section__header {
    margin-bottom: 34px;
}

.services-section__label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.services-section__title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--fs-34);
    line-height: 1.25;
    color: var(--text-color);
    margin: 0;
}

.service-card {
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 260ms ease, box-shadow 260ms ease;
}

    .service-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
    }

.service-card__media {
    position: relative;
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 380ms ease;
}

.service-card:hover .service-card__img {
    transform: scale(1.06);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    padding: 18px;
    background: rgba(0, 56, 118, 0.72);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.service-card:hover .service-card__overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-card__name {
    font-family: var(--font-primary);
    font-size: var(--fs-24);
    color: var(--white);
    margin: 0;
}

.service-card__desc {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 260px;
}

.service-card__btn {
    margin-top: 8px;
    padding: 0.65rem 1.1rem;
}

.service-card__footer {
    padding: 14px 14px 16px;
    text-align: center;
}

.service-card__footer-title {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

@media (max-width: 575.98px) {
    .services-section__title {
        font-size: var(--fs-28);
    }

    .service-card__img {
        height: 240px;
    }
}

/* ==============================
   End: Services Section
   ============================== */

/* ==============================
   Footer
   ============================== */
.site-footer {
    background: var(--footer-bg);
    padding: var(--fs-70) 0 var(--fs-24);
    color: var(--footer-text);
}

.site-footer__logo {
    height: 48px;
    width: auto;
    display: block;
}

.site-footer__about {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    line-height: 1.8;
    color: var(--footer-text);
    margin: 14px 0 0 0;
}

.site-footer__title {
    font-family: var(--font-primary);
    font-size: var(--fs-20);
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 14px 0;
}

.site-footer__list {
    padding: 0;
    margin: 0;
}

    .site-footer__list li {
        margin-bottom: 10px;
    }

.site-footer__link {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    color: var(--footer-text);
    transition: color 180ms ease;
}

    .site-footer__link:hover,
    .site-footer__link:focus {
        color: var(--primary);
    }

.site-footer__list--contact .site-footer__contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.site-footer__icon {
    color: var(--primary);
    margin-top: 2px;
}

.site-footer__text {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    color: var(--footer-text);
}

.site-footer__social {
    display: flex;
    gap: 10px;
}

.site-footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0, 56, 118, 0.08);
    color: var(--primary);
    transition: background-color 180ms ease, transform 180ms ease, color 180ms ease;
}

    .site-footer__social-link:hover,
    .site-footer__social-link:focus {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-1px);
    }

.site-footer__bottom {
    margin-top: var(--fs-36);
}

.site-footer__divider {
    height: 1px;
    background: var(--footer-border);
    margin-bottom: 14px;
}

.site-footer__copyright {
    text-align: center;
    font-size: var(--fs-16);
    color: rgba(34, 34, 34, 0.65);
}

@media (max-width: 991.98px) {
    .site-footer {
        padding: var(--fs-54) 0 var(--fs-24);
    }
}
/* ==============================
   End: Footer
   ============================== */

/* ==============================
   Inner Banner (Common)
   ============================== */

/* ==============================
   Inner Banner (Common)
   ============================== */

/* .inner-banner {
  position: relative;
  background-image: url("../images/inner-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  max-height: 300px;
  overflow: hidden;
} */
.inner-banner {
    background-color: #f6f8fa;
}


/* .inner-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
 
.inner-banner__container {
  position: relative;
  z-index: 1;
  min-height: clamp(180px, 22vw, 300px);
  display: flex;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
} */

.inner-banner__content {
    width: 100%;
    padding: 50px 0;
    position: relative;
}

    .inner-banner__content::after {
        content: '';
        position: absolute;
        top: -22px;
        left: 0;
        width: 20vw;
        max-width: 303px;
        aspect-ratio: 303 / 99;
        background: url(../images/header-ripple.gif) no-repeat center center;
        background-size: contain;
        z-index: 99999;
    }

@media only screen and (max-width: 991px) {
    .inner-banner__content {
        padding: 30px 0;
    }

        .inner-banner__content::after {
            background: none;
        }
}

@media only screen and (max-width: 767px) {
    .inner-banner__content {
        padding: 0px;
    }
}

.inner-banner__title {
    font-family: var(--font-primary);
    font-size: clamp(var(--fs-24), 3.1vw, var(--fs-40));
    line-height: 1.15;
    margin-bottom: 8px;
}

.inner-banner__breadcrumb {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
}

.inner-banner__breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.inner-banner__breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
}

    .inner-banner__breadcrumb-item + .inner-banner__breadcrumb-item::before {
        content: "/";
        margin-right: 8px;
        color: var(--text-color);
    }

.inner-banner__breadcrumb-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 180ms ease;
}

    .inner-banner__breadcrumb-link:hover,
    .inner-banner__breadcrumb-link:focus {
        color: var(--primary);
    }

@media (max-width: 575.98px) {
    .inner-banner__container {
        padding-top: 22px;
        padding-bottom: 22px;
    }
}

/* ==============================
   End: Inner Banner (Common)
   ============================== */

/* ==============================
    Overview Page (Sidebar + Content)
    ============================== */

.overview-page {
    padding: var(--fs-54) 0;
}

.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.overview-sidebar__cta {
    width: 100%;
    justify-content: center;
}

.overview-sidebar__search .input-group {
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(34, 34, 34, 0.12);
    overflow: hidden;
}

.overview-sidebar__search-input {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    border: 0;
    padding: 0.8rem 1rem;
}

    .overview-sidebar__search-input:focus {
        box-shadow: none;
    }

.overview-sidebar__search-btn {
    background: var(--secondary);
    color: var(--white);
    border: 0;
    padding: 0 1.05rem;
    transition: background-color 180ms ease, transform 180ms ease;
}

    .overview-sidebar__search-btn:hover,
    .overview-sidebar__search-btn:focus {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-1px);
    }

.overview-content {
    font-family: var(--font-primary);
    color: var(--text-color);
    position: relative; /* Allow absolutely positioned SVG curve */
}

.full-width-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .overview-content {
        padding-left: 10px;
    }
}

@media (min-width: 992px) {
    .overview-content {
        padding-left: 18px;
    }
}

.overview-content p {
    font-size: var(--fs-18);
    line-height: 1.6;
    color: var(--secondary-1);
    margin: 0 0 14px 0;
}

.overview-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 180ms ease;
}

    .overview-content a:hover,
    .overview-content a:focus {
        color: var(--secondary-2);
    }

.overview-content ul,
.overview-content ol {
    margin: 0 0 14px 0;
}

.overview-content ul {
    list-style: none;
    padding-left: 0;
}

    .overview-content ul li {
        position: relative;
        padding-left: 26px;
        font-size: var(--fs-18);
    }

        .overview-content ul li::before {
            content: "\2022";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            font-size: 35px;
            left: 0;
            top: -19px;
            color: var(--primary);
        }

.overview-content ol {
    padding-left: 1.15rem;
}

.overview-content li {
    font-size: var(--fs-16);
    line-height: 1.85;
    color: var(--secondary-1);
    margin-bottom: 8px;
}

.overview-content .oc-heading {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.2;
    margin: 0 0 12px 0;
    position: relative;
    padding-bottom: 10px;
}

    .overview-content .oc-heading::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 64px;
        height: 3px;
        background: var(--secondary);
        border-radius: 999px;
    }

.overview-content h1 {
    font-size: var(--fs-40);
}

.overview-content h2 {
    font-size: var(--fs-34);
}

.overview-content h3 {
    font-size: var(--fs-26);
}

.overview-content h4 {
    font-size: var(--fs-22);
}

.overview-content h5 {
    font-size: var(--fs-18);
}

.overview-content h6 {
    font-size: var(--fs-16);
}


.content-section-image {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
}

@media (max-width: 991.98px) {
    .overview-page {
        padding: var(--fs-40) 0;
    }

    .overview-content h1 {
        font-size: var(--fs-34);
    }

    .overview-content h2 {
        font-size: var(--fs-28);
    }

    .overview-content h3 {
        font-size: var(--fs-22);
    }
}

@media (max-width: 575.98px) {
    .overview-sidebar {
        gap: 12px;
    }
}

/* ==============================
    End: Overview Page
    ============================== */

/* ==============================
   Overview Sidebar: ISO Accreditation
   ============================== */

.overview-iso {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    background: rgba(0, 56, 118, 0.04);
    border: 1px solid rgba(34, 34, 34, 0.08);
}

.overview-iso__img {
    width: 54px;
    height: auto;
    flex: 0 0 auto;
    animation: overviewIsoBlink 2.8s ease-in-out infinite;
}

.overview-iso__text {
    font-family: var(--font-primary);
    font-size: var(--fs-15);
    line-height: 1.4;
    color: var(--secondary-1);
    margin: 0;
}

@keyframes overviewIsoBlink {
    0%, 100% {
        opacity: 1;
        filter: saturate(1);
    }

    55% {
        opacity: 0.55;
        filter: saturate(1.25);
    }
}

@media (prefers-reduced-motion: reduce) {
    .overview-iso__img {
        animation: none;
    }
}

/* ==============================
   End: Overview Sidebar: ISO Accreditation
   ============================== */

/* ==============================
   Community: Quote Box
   ============================== */

.quotes-box {
    position: relative;
    padding: 22px 22px 22px 28px;
    margin: 16px 0 20px 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 56, 118, 0.06), rgba(0, 147, 178, 0.05));
    border: 1px solid rgba(34, 34, 34, 0.08);
    font-family: var(--font-primary);
    font-size: var(--fs-18) !important;
    line-height: 1.75;
    color: var(--text-color);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    letter-spacing: 0.01em;
    animation: quoteReveal 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

    .quotes-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 16px;
        bottom: 16px;
        width: 4px;
        border-radius: 999px;
        background: linear-gradient(180deg, var(--secondary), var(--primary));
    }

    .quotes-box::after {
        content: "\201C";
        position: absolute;
        right: 14px;
        top: 2px;
        font-family: var(--font-primary);
        font-size: var(--fs-54);
        line-height: 1;
        color: rgba(0, 147, 178, 0.18);
        pointer-events: none;
    }

    .quotes-box:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
    }

@keyframes quoteReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .quotes-box {
        animation: none;
        transform: none;
    }
}

@media (max-width: 991px) {
    .quotes-box {
        font-size: var(--fs-16) !important;
    }
}

@media (max-width: 575.98px) {
    .quotes-box {
        font-size: var(--fs-16);
        padding: 18px 16px 18px 22px;
    }

        .quotes-box::after {
            font-size: var(--fs-40);
        }
}

/* ==============================
   End: Community: Quote Box
   ============================== */


/* ===============================
   News Listing Card Design
   =============================== */

.news-box .news-card {
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 45px color-mix(in srgb, var(--text-color) 12%, transparent);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

    .news-box .news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 70px color-mix(in srgb, var(--text-color) 18%, transparent);
    }

.news-box .news-img {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--bg-light);
}

    .news-box .news-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform 420ms ease;
    }

    .news-box .news-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, color-mix(in srgb, var(--primary) 0%, transparent) 10%, color-mix(in srgb, var(--primary) 60%, transparent) 100% );
        opacity: 0;
        transition: opacity 320ms ease;
    }

.news-box .news-card:hover .news-img img {
    transform: scale(1.06);
}

.news-box .news-card:hover .news-img::after {
    opacity: 1;
}

.news-box .news-img::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--secondary) 40%, transparent);
    transition: opacity 320ms ease;
}

.news-box .news-card:hover .news-img::before {
    opacity: 1;
    animation: newsGlow 2.8s ease-in-out infinite;
}

.news-box .news-card__body {
    padding: 16px 16px 18px;
}

.news-box .news-card__date {
    font-family: var(--font-primary);
    font-size: var(--fs-13);
    color: color-mix(in srgb, var(--text-color) 70%, transparent);
    margin-bottom: 8px;
}

.news-box .news-card__title {
    margin: 0 0 8px 0;
}

.news-box .news-card__title-link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--fs-18);
    line-height: 1.35;
    color: var(--text-color);
    transition: color 180ms ease;
}

    .news-box .news-card__title-link:hover,
    .news-box .news-card__title-link:focus {
        color: var(--primary);
    }

.news-box .news-card__desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    line-height: 1.8;
    color: var(--secondary-1);
    margin: 0 0 14px 0;
}

.news-box .news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    color: var(--primary);
    position: relative;
    transition: color 180ms ease;
}

    .news-box .news-card__more i {
        transition: transform 180ms ease;
    }

    .news-box .news-card__more::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -4px;
        height: 2px;
        background: color-mix(in srgb, var(--secondary) 70%, transparent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 220ms ease;
    }

    .news-box .news-card__more:hover,
    .news-box .news-card__more:focus {
        color: var(--secondary-2);
    }

        .news-box .news-card__more:hover i,
        .news-box .news-card__more:focus i {
            transform: translateX(4px);
        }

        .news-box .news-card__more:hover::after,
        .news-box .news-card__more:focus::after {
            transform: scaleX(1);
        }

@keyframes newsGlow {
    0%, 100% {
        opacity: 1;
    }

    55% {
        opacity: 0.55;
    }
}

@media (max-width: 991.98px) {
    .news-box .news-img img {
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .news-box .news-card__body {
        padding: 14px 14px 16px;
    }

    .news-box .news-img img {
        height: 250px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-box .news-card,
    .news-box .news-img img,
    .news-box .news-img::after,
    .news-box .news-img::before,
    .news-box .news-card__more,
    .news-box .news-card__more i {
        transition: none;
    }

        .news-box .news-card:hover {
            transform: none;
        }

            .news-box .news-card:hover .news-img::before {
                animation: none;
            }
}

/* ===============================
   End: News Listing Card Design
   =============================== */

/* ===============================
   Contact Card Design
   =============================== */

.card-box-common {
    margin-top: var(--fs-24);
}

.contact-card {
    border-radius: 16px;
    padding: 18px;
    background: var(--white);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--text-color) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--text-color) 8%, transparent);
    transition: transform 220ms ease, box-shadow 220ms ease;
    min-height: 268px;
}

    .contact-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px color-mix(in srgb, var(--text-color) 14%, transparent);
    }

.contact-card__title {
    font-family: var(--font-primary);
    font-size: var(--fs-18);
    line-height: 1.25;
    color: var(--text-color);
    margin: 0 0 12px 0;
}

.contact-card__list {
    margin: 0;
    padding: 0;
}

.contact-card__row {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
}

    .contact-card__row + .contact-card__row {
        border-top: 1px solid color-mix(in srgb, var(--text-color) 10%, transparent);
    }

.contact-card__icon {
    color: var(--primary);
    margin-top: 2px;
    width: 18px;
    flex: 0 0 18px;
}

.contact-card__text {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    line-height: 1.8;
    color: var(--secondary-1);
}

.contact-card__link {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    color: var(--secondary-1);
    text-decoration: none;
    transition: color 180ms ease;
}

    .contact-card__link:hover,
    .contact-card__link:focus {
        color: var(--primary);
    }

@media (max-width: 575.98px) {
    .contact-card {
        padding: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-card,
    .contact-card__link {
        transition: none;
    }

        .contact-card:hover {
            transform: none;
        }
}

/* ===============================
   End: Contact Card Design
   =============================== */

/* ===============================
   Begin: Process Section Styles
   =============================== */

.process-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.process-subtitle {
    display: block;
    color: var(--secondary);
    font-family: var(--font-primary);
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.process-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary, #2b3990);
    margin-bottom: 0;
}

.process-steps-single-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
}

.process-step {
    background: var(--background-light);
    border-radius: 1rem;
    box-shadow: 0 2px 8px 0 rgba(44,59,105,0.06);
    padding: 1.3rem 1.1rem 1.1rem 1.1rem;
    min-width: 150px;
    max-width: 200px;
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: transform 0.16s, box-shadow 0.16s;
}

    .process-step:hover, .process-step:focus-within {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 8px 24px 0 rgba(44, 59, 105, 0.13);
    }

.process-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary, #e2ad43) 60%, var(--blue-light, #5bc6f9) 100%);
    box-shadow: 0 0 12px 0 rgba(91,198,249,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.15rem;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--white);
    z-index: 3;
}

.process-step-content {
    margin-top: 1.7rem;
    text-align: center;
}

.process-step-title {
    font-size: 1.02rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.process-step-desc {
    font-size: 0.92rem;
    color: var(--text-color);
    line-height: 1.5;
    opacity: 0.97;
}

.process-steps-single-row {
    position: relative;
    z-index: 2;
}

@media (max-width: 1100px) {
    .process-steps-single-row {
        gap: 0.7rem;
    }

    .process-step {
        max-width: 160px;
        min-width: 120px;
        padding: 1.1rem 0.6rem 1rem 0.6rem;
    }
}

@media (max-width: 900px) {
    .process-steps-single-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem 2vw;
    }

    .process-step {
        max-width: 220px;
        min-width: 120px;
        margin-bottom: 1.1rem;
    }
}

@media (max-width: 700px) {
    .process-header {
        margin-bottom: 1.2rem;
    }

    .process-title {
        font-size: 1.3rem;
    }

    .process-steps-single-row {
        flex-direction: column;
        align-items: center;
        gap: 1.7rem;
        width: 100%;
        margin-bottom: 1.2rem;
    }

    .process-step {
        max-width: 340px;
        min-width: 0;
        width: 92vw;
        margin-bottom: 0.5rem;
        padding: 1.5rem 0.7rem 1.1rem 0.7rem;
    }
}

@media (max-width: 450px) {
    .process-step {
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
}
/* ===============================
   End: Process Section Styles
   =============================== */

.process-section {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem 3.5rem 1.5rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(44, 59, 105, 0.10);
    position: relative;
    overflow: visible;
}

.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.process-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0;
}

.process-steps-rows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    position: relative;
}

.process-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

    .process-row:first-child {
        margin-bottom: 0.2rem;
    }

    .process-row:last-child {
        margin-top: 0.2rem;
    }

    .process-row .process-step {
        margin-bottom: 0;
    }

    .process-row:last-child .process-step {
        margin-left: 5%;
        margin-right: 5%;
    }

.process-step {
    background: var(--background-light, #f5f7fa);
    border-radius: 1rem;
    box-shadow: 0 4px 18px 0 rgba(44, 59, 105, 0.14);
    padding: 2.5rem 1.2rem 1.5rem 1.2rem;
    flex: 1 1 180px;
    max-width: 210px;
    min-width: 170px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}

    .process-step:hover, .process-step:focus-within {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 8px 32px 0 rgba(44, 59, 105, 0.14);
    }

.process-step-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary, #2b3990) 60%, var(--blue-light, #5bc6f9) 100%);
    box-shadow: 0 0 18px 0 rgba(91,198,249,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--white);
    z-index: 3;
}

.process-step-content {
    margin-top: 1.3rem;
    text-align: center;
}

.process-step-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary, #2b3990);
    margin-bottom: 0.5rem;
}

.process-step-desc {
    font-size: 0.97rem;
    color: var(--text, #444e5e);
    line-height: 1.6;
    opacity: 0.95;
}

.process-curve {
    position: absolute;
    left: 0;
    right: 0;
    top: 48px;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

/* ---------- Responsive Styles ---------- */

/* iPad Pro/Tablets: Uniform 3+2 Layout */
@media (max-width: 1100px) and (min-width: 768px) {
    .process-header {
        margin-bottom: 2.2rem;
    }

    .process-steps-rows {
        gap: 1.2rem;
    }

    .process-row {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.2rem;
    }

        .process-row .process-step {
            min-width: 0;
            max-width: 220px;
            flex: 1 1 0;
            height: 210px;
            margin-left: 0;
            margin-right: 0;
        }

        .process-row:last-child .process-step {
            max-width: 260px;
        }

        .process-row:first-child .process-step:nth-child(3) {
            width: auto;
            max-width: 220px;
            margin-left: 0;
            margin-right: 0;
            height: 210px;
        }

    .process-step-content {
        margin-top: 1.1rem;
    }
}

/* Smaller Tablets: Slightly Smaller Cards */
@media (max-width: 900px) and (min-width: 768px) {
    .process-row {
        gap: 0.7rem;
    }

        .process-row .process-step {
            max-width: 180px;
            height: 195px;
        }

        .process-row:last-child .process-step {
            max-width: 220px;
            height: 195px;
        }

    .process-step-content {
        margin-top: 1rem;
    }
}

/* Mobile: Single Column, Improved Spacing */
@media (max-width: 700px) {
    .process-section {
        padding: 1.5rem 0.3rem 2.5rem 0.3rem;
    }

    .process-header {
        margin-bottom: 1.2rem;
    }

    .process-title {
        font-size: 1.3rem;
    }

    .process-steps, .process-steps-rows, .process-row {
        flex-direction: column;
        align-items: center;
        gap: 2.2rem;
        width: 100%;
    }

        .process-step, .process-row .process-step, .process-row:last-child .process-step {
            max-width: 340px;
            min-width: 0;
            width: 90vw;
            margin-bottom: 0.5rem;
            padding: 2.2rem 0.7rem 1.2rem 0.7rem;
            height: auto;
        }

    .process-curve {
        display: none;
    }
}

/* Extra Small Mobile: Tighter Padding */
@media (max-width: 450px) {
    .process-step {
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
}

/* Fine-tuned for Mobile (below 600px): Balanced Margins & Gaps */
@media (max-width: 600px) {
    .process-header {
        margin-bottom: 2.2rem;
    }

    .process-subtitle {
        margin-bottom: 0.8rem;
    }

    .process-title {
        margin-bottom: 0.6rem;
    }

    .process-steps, .process-steps-rows, .process-row {
        gap: 2.7rem;
    }

    .process-step {
        margin-bottom: 1.2rem;
    }
}

/* ===============================
     End: Process Section Styles
     =============================== */

/* ===============================
   Begin: CTA Primary Button Styles
   =============================== */
.cta_primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55em;
    padding: 0.7em 1.2em 0.7em 1.2em;
    font-family: var(--font-primary);
    font-size: var(--fs-18);
    color: var(--white) !important;
    background: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 2em;
    box-shadow: 0 1px 6px 0 rgba(44,59,105,0.07);
    text-decoration: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.18s;
    cursor: pointer;
    position: relative;
    outline: none;
    min-width: 140px;
}

    .cta_primary i {
        font-size: 1.12em;
        margin-left: 0.12em;
        margin-right: 0;
        transition: transform 0.18s, color 0.18s;
        color: var(--white);
        display: inline-flex;
        align-items: center;
    }

    .cta_primary i {
        font-size: 1.12em;
        margin-left: 0.3em;
        transition: transform 0.18s, color 0.18s;
        color: var(--white);
    }

    .cta_primary:hover,
    .cta_primary:focus {
        background: var(--white);
        color: var(--secondary) !important;
        border-color: var(--secondary);
        box-shadow: 0 4px 18px 0 rgba(44,59,105,0.13);
        text-decoration: none;
    }

        .cta_primary:hover i,
        .cta_primary:focus i {
            color: var(--secondary);
            transform: translateX(4px);
        }

    .cta_primary:active {
        background: var(--secondary);
        color: var(--white) !important;
        box-shadow: 0 2px 6px 0 rgba(44,59,105,0.09);
    }

        .cta_primary:active i {
            color: var(--white);
            transform: translateX(2px);
        }

@media (max-width: 600px) {
    .cta_primary {
        font-size: 1rem;
        padding: 0.62em 1.5em 0.62em 1em;
    }

        .cta_primary i {
            font-size: 1em;
        }
}
/* ===============================
   End: CTA Primary Button Styles
   =============================== */

/* ===============================
   Individual Page Tabs & Form Styles
   =============================== */
.individual-tabs {
    border-bottom: 2px solid var(--primary);
    gap: 0.5rem;
}

    .individual-tabs .nav-link {
        font-family: var(--font-primary);
        font-size: 14px;
        color: var(--primary);
        background: var(--background-light, #f5f7fa);
        border: none;
        border-radius: 0.7rem 0.7rem 0 0;
        margin-right: 0.2rem;
        padding: 0.8rem 2.1rem;
        transition: color 0.18s, background 0.18s, box-shadow 0.18s;
        outline: none;
        position: relative;
    }

        .individual-tabs .nav-link.active,
        .individual-tabs .nav-link:focus,
        .individual-tabs .nav-link:hover {
            color: var(--white);
            background: var(--primary);
            box-shadow: 0 6px 16px 0 rgba(44,59,105,0.10);
        }

        .individual-tabs .nav-link:focus {
            z-index: 2;
        }

.individual-tab-content {
    background: var(--white);
    border-radius: 1.3rem;
    box-shadow: 0 4px 22px 0 rgba(44,59,105,0.06);
    padding: 2.2rem 1.2rem 2.5rem 1.2rem;
    margin-bottom: 2rem;
}

.form-heading {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: 1.6rem;
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .individual-tab-content {
        padding: 1.2rem 0.5rem 1.7rem 0.5rem;
    }

    .form-heading {
        font-size: 1.15rem;
    }

    .individual-tabs .nav-link {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .individual-tabs {
        flex-wrap: wrap;
        gap: 0.2rem;
    }

        .individual-tabs .nav-link {
            padding: 0.6rem 0.7rem;
            font-size: 0.98rem;
        }
}

/* --- Enhanced Individual Tabs & Form Section Headings --- */
.individual-tabs {
    border: none;
    justify-content: flex-start;
    background: transparent;
    margin-bottom: 10px;
    gap: 10px;
}

    .individual-tabs .nav-link {
        color: var(--primary);
        background: var(--background-light);
        border: none;
        border-radius: 5px;
        font-family: var(--font-primary);
        font-size: 14px;
        padding: 10px 7px;
        margin-bottom: 0;
        margin-right: 0.15rem;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
        position: relative;
        outline: none;
        z-index: 1;
    }

        .individual-tabs .nav-link.active,
        .individual-tabs .nav-link:focus,
        .individual-tabs .nav-link:hover {
            color: var(--white);
            background: var(--primary);
            box-shadow: 0 6px 22px 0 rgba(44,59,105,0.13);
            transform: translateY(-2px) scale(1.04);
            z-index: 2;
        }

        .individual-tabs .nav-link:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }

.individual-tab-content {
    background: var(--white);
    border-radius: 1.4rem;
    box-shadow: 0 8px 32px 0 rgba(44,59,105,0.09);
    padding: 2.5rem 1.5rem 2.8rem 1.5rem;
    margin-bottom: 2.2rem;
}

.form-section-heading {
    font-family: var(--font-primary);
    font-size: 1.22rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 0.7rem;
    display: flex;
    align-items: center;
}

    .form-section-heading::before {
        content: "";
        display: inline-block;
        width: 24px;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
        margin-right: 0.7rem;
    }

@media (max-width: 1199.98px) {
    .individual-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.6rem;
        margin-bottom: 2.1rem;
        background: transparent;
        border-radius: 1.7rem;
        padding: 0.3rem 0.3rem 0.2rem 0.3rem;
    }

        .individual-tabs .nav-link {
            background: var(--background-light, #f5f7fa);
            margin-bottom: 0.18rem;
            text-align: left;
            transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
        }

            .individual-tabs .nav-link.active {
                background: var(--primary);
                color: var(--white);
                box-shadow: 0 6px 24px 0 rgba(44,59,105,0.17);
                font-weight: 900;
                border-bottom: 2.5px solid var(--secondary);
                transform: translateY(-1px) scale(1.03);
            }
}

@media (max-width: 900px) {
    .individual-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.7rem;
    }

    .individual-tab-content {
        padding: 1.3rem 0.5rem 1.7rem 0.5rem;
    }

    .form-section-heading {
        font-size: 1.06rem;
        padding-left: 0.2rem;
    }
}

@media (max-width: 767px) {
    .individual-tabs {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.45rem;
        margin-bottom: 1.2rem;
    }

        .individual-tabs li.nav-item {
            width: 49%;
        }

        .individual-tabs .nav-link {
            width: 100%;
        }
}


@media (max-width: 600px) {
    .individual-tabs {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 0.7rem;
    }

    .form-section-heading {
        font-size: 0.98rem;
        margin-bottom: 0.7rem;
    }
}

@media (max-width: 575px) {
    .individual-tabs li.nav-item {
        width: 100%;
    }

    .individual-tabs .nav-link {
        width: 100%;
    }
}
/* Visually enhance active tab on all screens */
.individual-tabs .nav-link.active {
    font-size: 14px;
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px 0 rgba(44,59,105,0.17);
    border-bottom: 2.5px solid var(--secondary);
    z-index: 3;
}

/* ===============================
   Question Box (Refuelling Obligations Tab)
   =============================== */
.question-box {
    text-align: left;
}

.question-title {
    font-family: var(--font-primary);
    color: var(--primary);
    font-size: 1.01rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}

.question-link {
    margin-right: 5px;
}

.question-text {
    font-family: var(--font-primary);
}

.question-text-cmn {
    font-family: var(--font-primary);
    font-size: var(--fs-16);
    margin-bottom: 10px;
}

/*video section design*/
.video-box {
    position: relative;
    margin: 20px 0 30px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

    .video-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .video-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 100%;
        background: linear-gradient( 90deg, var(--secondary), var(--primary) );
        z-index: 2;
    }

    .video-box iframe {
        width: 100%;
        height: 450px;
        border: 0;
        display: block;
    }
/* NORMAL FOCUS (BLUE) */
.custom-form {
    font-family: var(--font-primary);
}

    .custom-form .form-control:focus, .custom-form .form-control:active {
        border-color: var(--primary) !important;
        box-shadow: none !important;
    }

    .custom-form .form-select:focus, .custom-form .form-select:active {
        border-color: var(--primary) !important;
        box-shadow: none !important;
    }

    .custom-form .form-check-input {
        width: 18px;
        height: 18px;
        border-radius: 4px;
        border: 2px solid var(--primary);
        background-color: transparent;
        accent-color: var(--primary);
        box-shadow: none;
        transition: all 0.3s ease;
    }

        .custom-form .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
            accent-color: var(--white);
        }

        .custom-form .form-check-input:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(0, 56, 118, 0.25);
        }

    .custom-form .form-check-label {
        font-size: 14px;
        color: var(--text-color);
        line-height: normal;
        margin-top: 0px;
    }

    .custom-form .form-check-input[type="radio"] {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid var(--primary);
        background-color: transparent;
        accent-color: var(--primary);
    }

        .custom-form .form-check-input[type="radio"]:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .custom-form .form-check-input[type="radio"]:focus {
            box-shadow: 0 0 0 4px rgba(0, 56, 118, 0.25);
        }


/* ===============================
   Second Tab CSS (Terms & Conditions)
   =============================== */
.terms-header {
    font-family: var(--font-primary);
    font-size: 1.08rem;
    color: var(--primary);
    letter-spacing: 0.01em;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
}

    .terms-header::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 3px;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
        margin-right: 0.7rem;
    }

.terms-scrollbox {
    background: var(--white);
    border-radius: 5px;
    background-clip: padding-box;
    border: 1.5px solid var(--primary);
    max-height: 350px;
    min-height: 350px;
    overflow-y: scroll;
    width: 100%;
    padding: 1.7rem 2.5rem 1.7rem 2.3rem;
    font-size: 1rem;
    color: var(--text-color);
    box-shadow: 0 1px 8px 0 rgba(44,59,105,0.06);
    margin-bottom: 0.7rem;
    line-height: 1.7;
    word-break: break-word;
    box-sizing: border-box;
}

.terms-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-bottom: 15px;
}

    .terms-list li {
        position: relative;
        padding-left: 26px;
        font-size: var(--fs-16);
        margin-bottom: 10px;
    }

        .terms-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.05em;
            color: var(--secondary);
        }

    .terms-list strong {
        color: var(--primary);
        font-weight: 800;
        letter-spacing: 0.01em;
    }

/* Previous button theme styling */
.btn.cta_secondary {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    border: 2px solid var(--primary);
    border-radius: 2em;
    box-shadow: 0 2px 10px 0 rgba(44,59,105,0.06);
    transition: background 0.16s, color 0.16s, border 0.16s, box-shadow 0.16s;
    padding: 0.7em 1.2em 0.7em 1.2em;
}

    .btn.cta_secondary:hover, .btn.cta_secondary:focus {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
        box-shadow: 0 6px 18px 0 rgba(44,59,105,0.11);
    }

    .btn.cta_secondary:focus {
        outline: none;
        outline-offset: 2px;
    }

.terms-scrollbox::-webkit-scrollbar {
    width: 8px;
    background: var(--bg-light);
    border-radius: 6px;
}

.terms-scrollbox::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

.terms-link {
    font-family: var(--font-primary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: underline;
    transition: color 0.18s;
}

    .terms-link:hover, .terms-link:focus {
        color: var(--primary);
        text-decoration: underline;
    }

.terms-title, .terms-desc {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .terms-area {
        padding: 1.1rem 0.5rem 0.7rem 0.5rem;
    }

    .terms-header {
        font-size: 0.99rem;
    }
}

@media (max-width: 600px) {
    .terms-area {
        padding: 0.7rem 0.2rem 0.5rem 0.2rem;
    }

    .terms-header {
        font-size: 0.91rem;
    }
}
/* ===============================
   End: Second Tab CSS
   =============================== */

.terms-accept-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 2.2rem;
    align-items: flex-start;
    margin-top: 1.1rem;
    margin-bottom: 0.4rem;
}

    .terms-accept-row > div {
        min-width: 220px;
        flex: 1 1 220px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        word-break: break-word;
    }

@media (max-width: 900px) {
    .terms-accept-row {
        flex-direction: column;
        gap: 0.5rem 0;
        align-items: stretch;
    }

        .terms-accept-row > div {
            min-width: 0;
            flex: 1 1 100%;
            margin-bottom: 0.2rem;
        }
}

.terms-accept-row .btn {
    width: auto !important;
    min-width: 120px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767px) {
    .terms-accept-row .btn {
        width: auto !important;
        min-width: 120px;
        max-width: 100%;
        display: inline-block;
        margin-left: 0;
        margin-right: 0;
    }
}

.terms-btn-row .btn {
    width: auto !important;
    min-width: 120px;
    max-width: 100%;
    display: inline-block;
}

@media (max-width: 767px) {
    .terms-btn-row .btn {
        width: auto !important;
        min-width: 120px;
        max-width: 100%;
        display: inline-block;
    }
}
/* ===============================
   End: Individual Page Tabs & Form Styles
   =============================== */

/* ===============================
   3rd Tab Completion Styles
   =============================== */
.completion-box {
    background: var(--white);
    border-radius: 1.2rem;
    box-shadow: 0 6px 32px 0 rgba(44,59,105,0.10);
    max-width: 430px;
    margin: 2.5rem auto 2rem auto;
    padding: 2.2rem 2.2rem 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.completion-icon {
    font-size: 3.2rem;
    color: #3cc281;
    margin-bottom: 0.6rem;
}

.completion-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.01em;
    margin-bottom: 0.6rem;
}

.completion-receipt {
    margin-bottom: 1.1rem;
    font-size: 1.07rem;
}

.completion-receipt-label {
    background: var(--background-light);
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 0.98rem;
    border-radius: 0.4rem;
    padding: 0.2em 0.7em;
    margin-right: 0.3em;
}

.completion-receipt-number {
    font-family: var(--font-primary);
    background: var(--background-light01);
    color: var(--secondary);
    border-radius: 0.3em;
    padding: 0.16em 0.7em;
    font-size: 1em;
}

.completion-message {
    font-size: 1.09rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.completion-desc {
    font-size: 1.01rem;
    color: var(--text-color, #444e5e);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.completion-email {
    color: var(--secondary);
    font-weight: 600;
    font-family: var(--font-primary);
}

.completion-phone {
    color: var(--primary);
    font-family: var(--font-primary);
}

.completion-thankyou {
    font-size: 1.07rem;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 1.1rem;
}

@media (max-width: 600px) {
    .completion-box {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 97vw;
    }

    .completion-title {
        font-size: 1.07rem;
    }

    .completion-icon {
        font-size: 2.2rem;
    }
}
/* ===============================
   End: 3rd Tab Completion Styles
   =============================== */
div#map {
    width: 100%;
    height: 400px;
}

.map-title {
    font-size: var(--fs-20);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}


.fuel-text p {
    position: relative;
    padding-left: 40px; /* space for icon */
}

    .fuel-text p::before {
        content: "";
        position: absolute;
        left: 0;
        width: 34px;
        height: 34px;
        background-image: url('../images/map-icon-1.png');
        background-size: contain;
        background-repeat: no-repeat;
    }

.fuel-available-text p::before {
    background-image: url('../images/map-icon-3.png');
}

.process-step-desc a {
    color: var(--primary);
}

    .process-step-desc a:hover, .process-step-desc a:focus {
        color: var(--secondary-2);
    }

.field-validation-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
}

input.is-invalid,
select.is-invalid {
    border-color: #dc3545;
}

.site-footer__logo {
    height: 80px;
    width: auto;
    display: block;
}

.site-header .navbar {
    padding: 10px 0px;
}

.navbar-brand {
    padding: 0px;
}

@media (max-width: 767px) {
    .site-footer__logo {
        height: 60px;
    }
}

.anchorlink {
    color: var(--primary);
    text-decoration: none;
    transition: color 180ms ease;
}
header.site-header {
    border-bottom: 1px solid var(--primary);
}
@media (max-width: 991px) {
    .mobile-sticky {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}
@media (max-width: 1199px) {
    .inner-banner__content::after {
        top: -18px;
    }
}
 