.elementor-21199 .elementor-element.elementor-element-9b487f3{--display:flex;--margin-top:0rem;--margin-bottom:0rem;--margin-left:0rem;--margin-right:0rem;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-a5717c2 */:root {
        --green: #42b351;
        --green-dark: #2e8a3c;
        --green-light: #ebf7ed;
        --green-mid: rgba(66, 179, 81, 0.11);
        --green-glow: rgba(66, 179, 81, 0.18);
        --blue: #1a69e4;
        --blue-dark: #1250b0;
        --blue-light: #ebf0fd;
        --blue-mid: rgba(26, 105, 228, 0.1);
        --bg: #f4f7f5;
        --white: #ffffff;
        --border: rgba(0, 0, 0, 0.08);
        --border-g: rgba(66, 179, 81, 0.22);
        --border-b: rgba(26, 105, 228, 0.2);
        --text: #0d1a12;
        --text-mid: #3a5244;
        --text-muted: #6e887a;
      }

      .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 19px;
        font-weight: 900;
        color: var(--text);
        text-decoration: none;
        letter-spacing: -0.02em;
      }
      .nav-mark {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--green), var(--blue));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
      }
      .nav-badge {
        font-size: 12px;
        font-weight: 700;
        padding: 5px 15px;
        border-radius: 100px;
        background: var(--blue-mid);
        color: var(--blue-dark);
        border: 1px solid var(--border-b);
        letter-spacing: 0.02em;
      }

      /* ── HERO ── */
      .hero {
        position: relative;
        overflow: hidden;
        padding: 96px 52px 80px;
        text-align: center;
      }

      /* Layered background */
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 70% 60% at 20% 50%,
            rgba(66, 179, 81, 0.1) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse 70% 60% at 80% 50%,
            rgba(26, 105, 228, 0.09) 0%,
            transparent 60%
          ),
          #f4f7f5;
      }

      /* Dot grid */
      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(0, 0, 0, 0.055) 1px,
          transparent 1px
        );
        background-size: 30px 30px;
        mask-image: radial-gradient(
          ellipse 85% 75% at 50% 50%,
          black 30%,
          transparent 100%
        );
      }

      .hero-inner {
        position: relative;
        z-index: 1;
      }

      .hero-pill {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 7px 20px;
        margin-bottom: 28px;
        font-size: 12.5px;
        font-weight: 700;
        color: var(--text-mid);
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
      }
      .pill-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--green), var(--blue));
        animation: pulse 2.2s infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.4;
          transform: scale(0.7);
        }
      }

      .hero h1 {
        font-size: clamp(34px, 5.8vw, 70px);
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -0.025em;
        margin-bottom: 22px;
        color: var(--text);
      }
      .hero h1 .g {
        color: var(--green);
      }
      .hero h1 .b {
        color: var(--blue);
      }

      .hero-desc {
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.9;
        max-width: 600px;
        margin: 0 auto 48px;
        font-weight: 400;
      }

      /* Metric chips */
      .hero-metrics {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 44px;
      }
      .metric-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 12px 20px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
        transition:
          transform 0.22s,
          box-shadow 0.22s;
      }
      .metric-chip:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
      }
      .chip-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
      }
      .chip-icon.g {
        background: var(--green-light);
      }
      .chip-icon.b {
        background: var(--blue-light);
      }
      .chip-val {
        font-size: 20px;
        font-weight: 900;
        letter-spacing: -0.02em;
        color: var(--text);
        font-family: "Cairo", sans-serif;
      }
      .chip-val.g {
        color: var(--green-dark);
      }
      .chip-val.b {
        color: var(--blue-dark);
      }
      .chip-lbl {
        font-size: 12px;
        color: var(--text-muted);
        font-weight: 500;
      }

      .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        color: #fff;
        font-family: "Tajawal", sans-serif;
        font-size: 15px;
        font-weight: 800;
        padding: 14px 34px;
        border-radius: 13px;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(26, 105, 228, 0.28);
        transition:
          transform 0.22s,
          box-shadow 0.22s;
        letter-spacing: 0.01em;
      }
      .hero-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(26, 105, 228, 0.36);
      }

      /* ── DIVIDER ── */
      .wave-divider {
        width: 100%;
        overflow: hidden;
        line-height: 0;
        margin-bottom: -1px;
      }
      .wave-divider svg {
        display: block;
        width: 100%;
      }

      /* ── SECTION SHARED ── */
      .sec-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        display: block;
        margin-bottom: 10px;
      }
      .sec-title {
        font-size: clamp(26px, 3.5vw, 42px);
        font-weight: 900;
        letter-spacing: -0.025em;
        line-height: 1.15;
        margin-bottom: 14px;
      }
      .sec-desc {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.85;
        font-weight: 400;
      }

      /* ── FUEL STATIONS ── */
      .stations-section {
        background: var(--white);
        padding: 80px 52px;
        border-bottom: 1px solid var(--border);
      }
      .stations-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 72px;
        align-items: center;
      }

      .stations-text .sec-label {
        color: var(--green-dark);
      }
      .stations-text .sec-title span {
        color: var(--green);
      }
      .stations-text .sec-desc {
        margin-bottom: 32px;
      }

      /* Map visual mockup */
      .map-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        position: relative;
      }
      .map-header {
        padding: 16px 20px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .map-header-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
      }
      .map-header span {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-mid);
        margin-right: auto;
      }
      .map-header-badge {
        font-size: 11px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 100px;
        background: var(--green-light);
        color: var(--green-dark);
        border: 1px solid var(--border-g);
      }
      .map-body {
        padding: 28px;
        min-height: 260px;
        position: relative;
        background:
          radial-gradient(
            ellipse 90% 80% at 50% 50%,
            rgba(66, 179, 81, 0.06) 0%,
            transparent 70%
          ),
          var(--bg);
      }

      /* Saudi Arabia SVG map */
      .map-svg-wrap {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Station dots scattered */
      .s-dots {
        position: absolute;
        inset: 0;
        pointer-events: none;
      }
      .s-dot {
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 0 3px rgba(66, 179, 81, 0.2);
        animation:
          dotPop 0.4s forwards,
          glow 2.5s infinite;
        opacity: 0;
      }
      @keyframes dotPop {
        to {
          opacity: 1;
          transform: scale(1);
        }
        from {
          transform: scale(0);
        }
      }
      @keyframes glow {
        0%,
        100% {
          box-shadow: 0 0 0 3px rgba(66, 179, 81, 0.2);
        }
        50% {
          box-shadow: 0 0 0 6px rgba(66, 179, 81, 0.08);
        }
      }

      /* Coverage regions */
      .coverage-region {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(66, 179, 81, 0.1);
        border: 1.5px dashed rgba(66, 179, 81, 0.35);
        position: absolute;
        animation: breathe 3s ease-in-out infinite;
      }
      @keyframes breathe {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.8;
        }
        50% {
          transform: scale(1.08);
          opacity: 1;
        }
      }

      /* Stat row */
      .stat-row {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 10px;
      }
      .stat-box {
        flex: 1;
        min-width: 120px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 16px 18px;
        text-align: center;
        transition:
          border-color 0.25s,
          transform 0.25s,
          box-shadow 0.25s;
      }
      .stat-box:hover {
        border-color: var(--border-g);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(66, 179, 81, 0.1);
      }
      .stat-box .n {
        font-size: 22px;
        font-weight: 900;
        color: var(--green);
        font-family: "Cairo", sans-serif;
      }
      .stat-box .l {
        font-size: 11.5px;
        color: var(--text-muted);
        font-weight: 500;
        margin-top: 3px;
      }

      /* ── SERVICE PROVIDERS ── */
      .services-section {
        padding: 80px 52px;
        background: var(--bg);
      }
      .services-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .services-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
        margin-bottom: 48px;
      }
      .services-text .sec-label {
        color: var(--blue-dark);
      }
      .services-text .sec-title span {
        color: var(--blue);
      }

      /* Service cards grid */
      .srv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .srv-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 26px 22px;
        position: relative;
        overflow: hidden;
        transition:
          transform 0.25s,
          border-color 0.25s,
          box-shadow 0.25s;
        opacity: 0;
        transform: translateY(24px);
        animation: riseUp 0.55s forwards;
      }
      .srv-card:nth-child(1) {
        animation-delay: 0.05s;
      }
      .srv-card:nth-child(2) {
        animation-delay: 0.14s;
      }
      .srv-card:nth-child(3) {
        animation-delay: 0.23s;
      }
      .srv-card:nth-child(4) {
        animation-delay: 0.32s;
      }
      .srv-card:nth-child(5) {
        animation-delay: 0.41s;
      }
      .srv-card:nth-child(6) {
        animation-delay: 0.5s;
      }

      @keyframes riseUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .srv-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--green), var(--blue));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s;
        border-radius: 0 0 20px 20px;
      }
      .srv-card:hover {
        transform: translateY(-5px);
        border-color: var(--border-b);
        box-shadow: 0 16px 40px rgba(26, 105, 228, 0.09);
      }
      .srv-card:hover::after {
        transform: scaleX(1);
      }

      .srv-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        background: var(--blue-light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        margin-bottom: 16px;
        transition: background 0.25s;
      }
      .srv-card:hover .srv-icon {
        background: linear-gradient(
          135deg,
          var(--green-light),
          var(--blue-light)
        );
      }

      .srv-card h3 {
        font-size: 15px;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 7px;
      }
      .srv-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.75;
        font-weight: 400;
      }

      .srv-count {
        display: inline-block;
        margin-top: 12px;
        font-size: 11px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 100px;
        background: var(--blue-light);
        color: var(--blue-dark);
        border: 1px solid var(--border-b);
      }

      /* ── GRADIENT BANNER ── */
      .banner {
        background: linear-gradient(
          130deg,
          var(--green) 0%,
          #1d8ea8 50%,
          var(--blue) 100%
        );
        padding: 64px 52px;
        position: relative;
        overflow: hidden;
      }
      .banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.07) 1px,
          transparent 1px
        );
        background-size: 24px 24px;
      }
      .banner-inner {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
      }
      .banner-text h2 {
        font-size: clamp(22px, 3vw, 36px);
        font-weight: 900;
        color: #fff;
        margin-bottom: 10px;
        letter-spacing: -0.02em;
      }
      .banner-text p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.7;
      }

      .banner-stats {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
      }
      .bstat {
        text-align: center;
      }
      .bstat .bn {
        font-size: clamp(28px, 4vw, 46px);
        font-weight: 900;
        color: #fff;
        font-family: "Cairo", sans-serif;
        letter-spacing: -0.02em;
        line-height: 1;
      }
      .bstat .bl {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 4px;
      }

      .banner-cta {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #fff;
        color: var(--green-dark);
        font-family: "Tajawal", sans-serif;
        font-size: 15px;
        font-weight: 800;
        padding: 14px 30px;
        border-radius: 13px;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transition:
          transform 0.22s,
          box-shadow 0.22s;
        letter-spacing: 0.01em;
        white-space: nowrap;
      }
      .banner-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
      }

      /* ── LOGOS / TRUST ── */
      .logos-section {
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 56px 52px;
      }
      .logos-inner {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
      }
      .logos-label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 32px;
        display: block;
      }
      .logos-row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
      }
      .logo-chip {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 12px 22px;
        font-size: 13px;
        font-weight: 700;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 8px;
        transition:
          border-color 0.22s,
          color 0.22s,
          transform 0.22s;
      }
      .logo-chip:hover {
        border-color: var(--border-g);
        color: var(--green-dark);
        transform: translateY(-2px);
      }
      .logo-chip .ico {
        font-size: 17px;
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 768px) {
        nav {
          padding: 0 20px;
        }
        .hero {
          padding: 72px 20px 56px;
        }
        .stations-section,
        .services-section {
          padding: 60px 20px;
        }
        .stations-inner {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .services-top {
          grid-template-columns: 1fr;
          gap: 24px;
        }
        .srv-grid {
          grid-template-columns: 1fr;
        }
        .banner {
          padding: 48px 20px;
        }
        .banner-inner {
          flex-direction: column;
        }
        .banner-stats {
          justify-content: center;
        }
        .logos-section {
          padding: 48px 20px;
        }
      }/* End custom CSS */