/* http://meyerweb.com/eric/tools/css/reset/
   v2.0b1 | 201101
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  -ms-interpolation-mode: bicubic;
}

/* normalize.css v2.0.1 | MIT License | git.io/normalize
   Modified to remove duplications when using Meyer reset
*/
audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

svg:not(:root) {
  overflow: hidden;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

/* SCSS Variables
---------------------------------------------------------------------------------- */
/* Styles for HtmlEditorFields
---------------------------------------------------------------------------------- */
/* Mixins
---------------------------------------------------------------------------------- */
/* Media queries
---------------------------------------------------------------------------------- */
/* High-DPI displays
---------------------------------------------------------------------------------- */
/* Fluid font-size mixin
 *
 * Usage example: @include fluid-font-size( (1.2rem, 320px), (3rem, 960px) );
 *
 * Will result in font size of 1.2rem @ 320px, which will grow in sync with the
 * viewport width. It will reach 3rem @ 960px.
 *
 * Also dds a media query to stop the font size growing once it hits the max
 * size. This can be disabled - sometimes the media query merging logic gets
 * messed up, so it may be necessary to cap it manually
---------------------------------------------------------------------------------- */
/* Strip 'px', 'rem' etc units from a number
---------------------------------------------------------------------------------- */
/* Set base font size / family
---------------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* Typography
---------------------------------------------------------------------------------- */
/* The following is used by both style.scss (front-end) and editor.scss (CMS)
---------------------------------------------------------------------------------- */

.typography {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  /* TinyMCE alignment
  ---------------------------------------------------------------------------------- */
  /* Images
  ---------------------------------------------------------------------------------- */
  /* Image captions
  ---------------------------------------------------------------------------------- */
  /* Tables
  ---------------------------------------------------------------------------------- */
}
.typography p {
  margin-bottom: 1em;
}
.typography strong {
  font-weight: bold;
}
.typography em {
  font-style: italic;
}
.typography .small {
  font-size: 1.2rem;
}
.typography .blue {
  color: #0B1B4D;
}
.typography > *:last-child {
  margin-bottom: 0;
}
.typography .jumbo {
  font-size: 1.6rem;
}
.typography hr {
  height: 0;
  margin: 1.5em 0;
  border: 0;
  border-top: solid 1px rgba(11, 27, 77, 0.25);
  outline: none;
}
.typography h1,
.typography .h1 {
  margin-bottom: 1em;
  color: #0B1B4D;
  font-weight: bold;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
}
.typography h1.no-gutter,
.typography .h1.no-gutter {
  margin-bottom: 0;
}
.typography h2,
.typography .h2 {
  margin-bottom: 1em;
  color: #0B1B4D;
  font-weight: bold;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
}
.typography h2.no-gutter,
.typography .h2.no-gutter {
  margin-bottom: 0;
}
.typography h3,
.typography .h3 {
  margin-bottom: 0.5em;
  color: #0B1B4D;
  font-weight: bold;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
}
.typography h3.no-gutter,
.typography .h3.no-gutter {
  margin-bottom: 0;
}
.typography ul {
  margin: 0 0 1em;
  padding: 0 0 0 1.5em;
  list-style-type: disc;
}
.typography ol {
  margin: 0 0 1em;
  padding: 0 0 0 1.5em;
  list-style-type: decimal;
}
.typography blockquote {
  margin: 0 0 1em;
  font-style: italic;
}
.typography blockquote p {
  margin: 0;
}
.typography blockquote cite {
  display: block;
  font-weight: bold;
  font-style: normal;
}
.typography sup,
.typography sub {
  position: relative;
  top: -0.4em;
  font-size: 80%;
  vertical-align: baseline;
}
.typography sub {
  top: 0.4em;
}
.typography a {
  color: #000;
}
.typography a:link, .typography a:visited {
  text-decoration: underline;
}
.typography a:hover, .typography a:active {
  text-decoration: none;
}
.typography .left,
.typography .text-left {
  text-align: left;
}
.typography .center,
.typography .text-center {
  text-align: center;
}
.typography .right,
.typography .text-right {
  text-align: right;
}
.typography img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.typography img.left, .typography img.right, .typography img.leftAlone, .typography img.rightAlone, .typography img.center {
  display: block;
  float: none;
  margin: 0 auto 1em;
}
.typography .captionImage {
  max-width: 100%;
  margin-bottom: 1em;
}
.typography .captionImage img {
  margin-bottom: 0;
}
.typography .captionImage p {
  margin: 0.25em 0;
  font-style: italic;
}
.typography table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.typography table th,
.typography table td {
  padding: 0.25em;
  text-align: left;
}
.typography table th:first-child,
.typography table td:first-child {
  padding-left: 0;
}
.typography table th:last-child,
.typography table td:last-child {
  padding-right: 0;
}
.typography table th.right,
.typography table td.right {
  text-align: right;
}
.typography table th.numeric,
.typography table td.numeric {
  font-variant-numeric: lining-nums tabular-nums;
}
.typography table tr {
  border-bottom: solid 1px rgba(11, 27, 77, 0.25);
}
.typography table tr:last-child {
  border-bottom: 0;
}

.typography--center {
  text-align: center;
}

.typography--white {
  color: #fff;
}
.typography--white h1,
.typography--white .h1,
.typography--white h2,
.typography--white .h2,
.typography--white h3,
.typography--white .h3,
.typography--white a {
  color: #fff;
}
.typography--white hr {
  border-color: rgba(255, 255, 255, 0.25);
}
.typography--white table tr {
  border-color: rgba(255, 255, 255, 0.25);
}

@media screen and (min-width: 480px) {
  .typography img.left, .typography img.right, .typography img.leftAlone, .typography img.rightAlone {
    display: inline-block;
  }
  .typography img.left {
    float: left;
    margin: 0 1em 0 0;
  }
  .typography img.right {
    float: right;
    margin: 0 0 0 1em;
  }
  .typography img.leftAlone {
    float: left;
    margin: 0 100% 1em 0;
  }
  .typography img.rightAlone {
    float: right;
    margin: 0 0 1em 100%;
  }
  .typography .captionImage.left {
    float: left;
    margin: 0 1em 1em 0;
  }
  .typography .captionImage.right {
    float: right;
    margin: 0 0 1em 1em;
  }
  .typography .captionImage.center {
    margin: 0 auto 1em;
  }
  .typography .captionImage img {
    float: none;
    margin: 0;
  }
}
/* Mixins
---------------------------------------------------------------------------------- */
/* Media queries
---------------------------------------------------------------------------------- */
/* High-DPI displays
---------------------------------------------------------------------------------- */
/* Fluid font-size mixin
 *
 * Usage example: @include fluid-font-size( (1.2rem, 320px), (3rem, 960px) );
 *
 * Will result in font size of 1.2rem @ 320px, which will grow in sync with the
 * viewport width. It will reach 3rem @ 960px.
 *
 * Also dds a media query to stop the font size growing once it hits the max
 * size. This can be disabled - sometimes the media query merging logic gets
 * messed up, so it may be necessary to cap it manually
---------------------------------------------------------------------------------- */
/* Strip 'px', 'rem' etc units from a number
---------------------------------------------------------------------------------- */
/* Utility Classes
---------------------------------------------------------------------------------- */
/* Occasionally handly class for forcing stuff to hide
---------------------------------------------------------------------------------- */
.h {
  display: none !important;
}

/* Visually hide things, but leave them accessible to screenreaders
---------------------------------------------------------------------------------- */
.h-hide-visually,
.security__login-fields .form__field-label,
.security__login-fields .mfa-app .control-label,
.mfa-app .security__login-fields .control-label {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  white-space: nowrap;
}

/* Clearfix - Assign class to element to self clear children
---------------------------------------------------------------------------------- */
.group {
  zoom: 1;
}
.group:before, .group:after {
  display: table;
  content: "";
}
.group:after {
  clear: both;
}

/* Utility class for replacing text with a background-image
---------------------------------------------------------------------------------- */
.replace {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
}

/* Layout
---------------------------------------------------------------------------------- */
/* ============ Global ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.monthly-section {
  width: 100%;
  background: #fff;
}

/* ============ HERO SECTION ============ */
.hero-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-only {
  display: none;
}

.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  max-width: 700px;
  font-size: 16px;
  margin-bottom: 20px;
}

.primary-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
}

/* ============ FLOATING BAR ============ */
.floating-bar {
  display: flex;
  justify-content: center;
  gap: 25px;
  background: #0d6efd;
  color: #fff;
  padding: 15px 0;
  font-size: 16px;
}

.floating-bar .divider {
  width: 1px;
  height: 20px;
  background: #fff;
}

/* ============ SERVICE SECTION ============ */
.service-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  overflow: hidden;
}

.service-content {
  width: 50%;
  z-index: 2;
}

.service-content h2 {
  color: #0d6efd;
  font-size: 36px;
  margin-bottom: 20px;
}

.service-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.secondary-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
}

.secondary-btn .arrow {
  margin-left: 8px;
}

/* ============ IMAGE ============ */
.service-image {
  width: 45%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.service-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ============ BLUE SHAPE ============ */
.blue-shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: #0d6efd;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}

/* Left side */
.left-shape {
  left: -250px;
}

/* Right side */
.right-shape {
  right: -250px;
}

.anpr-blog-card {
    background-color: #fff;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
}

.anpr-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.anpr-blog-header h1 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #000;
}

.read-more-btn {
    font-weight: 600;
    font-size: 0.875rem;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn.secondary {
    background-color: #2563eb;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.read-more-btn.secondary:hover {
    background-color: #fff;
    color: #2563eb;
    border-color: #1d4ed8;
}

.arrow {
    font-size: 1rem;
}

.anpr-blog-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .anpr-blog-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .anpr-left-section {
        position: relative;
        width: 40%;
        display: flex;
        justify-content: flex-start;
    }

    .blue-rectangle {
        width: 15rem;
        height: 21rem;
        background-color: #2563eb;
    }

    /* .image-wrapper {
        position: absolute;
        top: -3rem;
        left: 4rem;
        width: 15rem;
        height: 20rem;
        overflow: hidden;
        border: 5px solid #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    } */

    /* .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    } */

    .anpr-right-section {
        width: 50%;
        text-align: left;
        position: relative;
    }

    .anpr-title {
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        color: #fff;
        background-color: #2563eb;
        padding: 1.5rem;
        margin: 0 0 1rem -7rem;
        position: absolute;
        top: 0;
    }

    .anpr-text {
        color: #4b5563;
        margin-top: 10rem; /* Adjust to create spacing from title */
        margin-bottom: 2rem;
        line-height: 1.5;
    }
}

@media (min-width: 1024px) {
    .blue-rectangle {
        width: 18rem;
        height: 25rem;
    }

    /* .image-wrapper {
        width: 18rem;
        height: 24rem;
        top: -3.5rem;
        left: 5rem;
    } */

    .anpr-title {
        font-size: 1.5rem;
        margin-left: -8rem;
    }
}

.card-section {
    position: relative;
    background-color: #fff;
    padding: 4rem 1.5rem 2rem;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Blue background block at bottom */
.blue-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 66%;
    background-color: #2563eb;
    z-index: 0;
}

/* Cards container */
.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.card {
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem;
    padding: 1rem;
}

.card-image {
    width: 100%;
    height: 5rem;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.card-text {
    color: #fff;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card-btn {
    background-color: #fff;
    color: #000;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card-btn:hover {
    background-color: #e0f2ff;
}

/* Responsive */
@media (min-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .card-image {
        height: 9rem;
    }

    .card-text {
        font-size: 1rem;
    }

    .card-btn {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .card-image {
        height: 12rem;
    }
}

.our-blog {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

/* Mobile Section */
.our-blog-mobile {
    display: block;
    text-align: center;
    padding: 3rem 1rem;
    background-image: url('/Blog.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.our-blog-mobile h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.our-blog-mobile p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-btn {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 0.5rem 2rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #2563eb;
    color: #fff;
}

/* Desktop Section */
.our-blog-desktop {
    display: none;
    position: relative;
    width: 100%;
    height: 400px;
    border-bottom: 2px solid #2163FF;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.blog-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.desktop-text {
    position: relative;
    z-index: 1;
    max-width: 32rem;
    width: 30rem;
    padding: 4rem 2rem;
    color: #fff;
}

.desktop-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.desktop-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .our-blog-mobile {
        display: none;
    }

    .our-blog-desktop {
        display: block;
        height: 500px;
    }

    .desktop-text h1 {
        font-size: 4rem;
    }

    .desktop-text p {
        font-size: 1rem;
    }
}

@media (min-width: 1280px) {
    .our-blog-desktop {
        height: 600px;
    }

    .desktop-text h1 {
        font-size: 5rem;
    }

    .desktop-text p {
        font-size: 1.125rem;
    }
}

.about-us-business {
    font-family: Arial, sans-serif;
    position: relative;
}

/* Container for Images and Overlay */
.about-us-container {
    position: relative;
    width: 100%;
    height: 500px; /* default height */
}

.about-us-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* Show desktop on md+ */
.about-us-desktop {
    display: none;
}

/* Show mobile by default */
.about-us-mobile {
    display: block;
}

/* Text Overlay */
.about-us-text {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
}

.desktop-heading {
    display: none;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.mobile-heading {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.text-bg p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.contact-btn {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 0.5rem 2rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
    background-color: #2563eb;
    color: #fff;
}

/* Responsive */
.text-bg {
    display: none; /* hide by default (on small screens) */
    padding: 2rem;
    max-width: 90%;
    color: #fff;
}

/* Show only on large screens */
@media (min-width: 768px) {
    .text-bg {
        display: block; /* show on desktop */
        background-color: transparent;
        padding: 0;
        max-width: 50%;
    }

    .text-bg p {
        font-size: 1rem;
    }

    .about-us-desktop {
        display: block;
    }

    .about-us-mobile {
        display: none;
    }

    .desktop-heading {
        display: block;
        font-size: 3rem;
    }

    .mobile-heading {
        display: none;
    }

    .about-us-container {
        height: 600px;
    }
}


.blue-parking-services {
    font-family: Arial, sans-serif;
    background-color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.blue-parking-services h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111;
}

.blue-parking-services h2 span {
    color: #2563eb; /* Blue */
}

.underline {
    width: 80px;
    height: 6px;
    background-color: #2563eb;
    margin: 1rem auto 2rem;
    border-radius: 3px;
}

.intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.icon-circle {
    background-color: #ebf3ff;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.05);
}

.icon-circle img {
    width: 2.5rem;
    height: 2.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #555;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.feature-card button {
    background-color: #dbeafe;
    color: #2563eb;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card button:hover {
    background-color: #2563eb;
    color: #fff;
}

/* Responsive */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blue-parking-services h2 {
        font-size: 2.5rem;
    }

    .intro {
        font-size: 1.125rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

.faq-about-us {
    background-color: #ebf3ff;
    padding: 4rem 1rem;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-image img {
    border-radius: 1rem;
    max-width: 100%;
}

.faq-list h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 0.5rem;
}

.underline {
    width: 80px;
    height: 6px;
    background-color: #304C80;
    border-radius: 3px;
    margin-bottom: 2rem;
}

.faq-item {
    border: 1px solid rgba(48,76,128,0.3);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background-color: #304C80;
    color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    outline: none;
    font-size: 1rem;
}

.faq-question .arrow {
    transition: transform 0.3s ease;
}

.faq-answer {
    overflow: hidden;
    background-color: white;
    padding: 0 1.5rem;
    color: #333;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin: 1rem 0;
}

/* Responsive */
@media (min-width: 768px) {
    .faq-grid {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }
    .faq-image, .faq-list {
        flex: 1;
    }

    .faq-list h2 {
        font-size: 2.5rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}

.logo-carousel-section {
  background-color: #2563eb; /* blue-600 */
  padding: 5rem 0;
  overflow: hidden;
}

.logo-carousel {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.logo-item {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  height: 3rem;
  object-fit: contain;
}

/* Responsive widths */
@media (min-width: 768px) {
  .logo-item {
    width: 440px;
  }
}

@media (min-width: 1024px) {
  .logo-item {
    width: 400px;
  }
}

@media (min-width: 1280px) {
  .logo-item {
    width: 240px;
  }
}

/* Hide scrollbar for a clean look */
.logo-carousel::-webkit-scrollbar {
  display: none;
}
.logo-carousel {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.testimonials-section {
  background: #fff;
  padding: 4rem 1rem;
  overflow: hidden;
  font-family: sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 4rem;
  height: 2px;
  background: #1e3a8a;
  margin: 0 auto 1.5rem;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #666;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
}

.testimonial-intro h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-intro p {
  color: #666;
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.testimonial-card {
  flex: 0 0 33.33%;
  padding: 1rem;
  box-sizing: border-box;
}

.testimonial-card .stars {
  color: #facc15;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar {
  width: 48px;
  height: 48px;
  background: #e0ecff;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
}

.name {
  font-weight: bold;
}

.role {
  font-size: 0.85rem;
  color: #777;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.vmv-section {
  background: #fff;
  padding: 2rem 1rem;
  margin: 1rem 0;
}

.vmv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  text-align: center;
}

.vmv-box {
  background: #fff;
  padding: 2.5rem 1.5rem;
  box-sizing: border-box;
}

.vmv-icon img {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.vmv-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vmv-text {
  color: #555;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.6;
}

.vmv-center {
  border: 1px solid #eee;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  margin-top: -2rem;
}

@media (min-width: 768px) {
  .vmv-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .vmv-box {
    padding: 4rem 2rem;
  }

  .vmv-center {
    margin-top: -2.5rem;
  }
}

.why-choose-section {
  background: #fff;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
}

/* --- Top Section --- */
.why-top {
  display: grid;
  grid-template-columns: 1fr;
  background: #f5f5f5;
  padding: 2rem;
  gap: 2rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.why-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 1rem;
}

.why-text p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.highlight {
  color: #1d4ed8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #1d4ed8;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #153e99;
}

.cta-btn .arrow {
  margin-left: 8px;
  font-size: 1.2rem;
}

.why-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Bottom Section --- */
.why-bottom {
  max-width: 1200px;
  margin: -2rem auto 0;
  background: #1d4ed8;
  color: #fff;
  border-radius: 3rem;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 300px;
}

.why-icon img {
  width: 120px;
  height: auto;
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .why-top {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
  }

  .why-text h2 {
    font-size: 2.5rem;
  }

  .why-bottom {
    grid-template-columns: repeat(3, 1fr);
    padding: 3rem;
  }

  .why-card p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .why-text h2 {
    font-size: 2.75rem;
  }
}


.contact-section {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

/* Banner */
.contact-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* .banner-text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 1rem;
    color: #fff;
} */

.banner-text {
    position: absolute; /* or relative depending on your layout */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 4rem 0;
    width: 100%;
}

.banner-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.banner-text p {
    font-size: 1rem;
}

/* Heading */
.contact-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 2rem;
}

.highlight {
    color: #2563eb;
}

.heading-underline {
    width: 80px;
    height: 5px;
    background-color: #2563eb;
    margin: 0.5rem auto 1rem auto;
    border-radius: 9999px;
}

.contact-subtext {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #4b5563;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.contact-card {
    padding: 1rem;
}

.icon-circle {
    width: 6rem;
    height: 6rem;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    font-size: 2rem;
    color: #2563eb;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #4b5563;
}

/* Info & Form Section */
.contact-info-form {
    display: flex;
    flex-direction: column;
    background-color: #f3f4f6;
    padding: 4rem 1rem;
    gap: 2rem;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background-color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.info-box h3 {
    background-color: #2563eb;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.info-box ul {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.info-box ul li {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

/* Form */
.form-box {
    background-color: #2563eb;
    padding: 2rem;
    border-radius: 0.5rem;
    color: #fff;
}

.form-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: none;
    font-size: 0.875rem;
}

.form-group input {
    color: #000;
}

.form-group textarea {
    color: #000;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}

.form-buttons button {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    background-color: #000;
    color: #fff;
    transition: background-color 0.3s ease;
}

.form-buttons button:hover {
    background-color: #1f2937;
}

/* Responsive */
@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info-form {
        flex-direction: row;
        gap: 2rem;
    }

    .info-boxes {
        flex: 1;
    }

    .form-box {
        flex: 1;
    }

    .banner-text h1 {
        font-size: 3rem;
    }

    .banner-text p {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .contact-banner {
        height: 500px;
    }
}


/* Alternate section layout */
.service-section.left-image .service-content {
  order: 1;
}

.service-section.left-image .service-image {
  order: 2;
}

.service-section.right-image .service-content {
  order: 2;
}

.service-section.right-image .service-image {
  order: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .service-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .service-content,
  .service-image {
    width: 100%;
    text-align: center;
  }

  .blue-shape {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}


/* Component: alerts
---------------------------------------------------------------------------------- */
.alert {
  display: block;
  margin: 12px 0;
  padding: 1em 1.25em;
  border: solid 2px #E74D00;
  color: #0B1B4D;
  background: #fff;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: left;
}
.alert:first-child {
  margin-top: 0;
}
.alert:last-child {
  margin-bottom: 0;
}
.alert svg {
  display: block;
  margin-top: 0.1em;
  margin-right: 1.25em;
  fill: #E74D00;
}
.alert p {
  margin: 0;
}
.alert strong {
  font-weight: bold;
}
.alert a {
  color: #0B1B4D;
}
.alert a:link, .alert a:visited {
  text-decoration: underline;
}
.alert a:hover, .alert a:active {
  text-decoration: none;
}

.alert--no-gutter {
  margin-top: 0;
  margin-bottom: 0;
}

.alert--warning,
.alert--bad,
.alert--error {
  border-color: #840000;
  background-color: #FFC400;
}
.alert--warning strong,
.alert--bad strong,
.alert--error strong {
  color: #333;
}
.alert--warning svg,
.alert--bad svg,
.alert--error svg {
  fill: #840000;
}
.alert--warning a,
.alert--bad a,
.alert--error a {
  color: #840000;
}

.alert--highlight {
  border-color: #0B1B4D;
  color: #fff;
  background-color: #0B1B4D;
}
.alert--highlight svg {
  fill: #fff;
}
.alert--highlight a,
.alert--highlight h2,
.alert--highlight .h2,
.alert--highlight h3,
.alert--highlight .h3 {
  color: #fff;
}

.alert__flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.alert__flex > * {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.alert__flex > svg {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: block;
}

/* Component: booking forms etc
---------------------------------------------------------------------------------- */
.booking {
  max-width: 420px;
  margin-right: auto;
  margin-left: auto;
}

.booking--loading {
  position: relative;
}
.booking--loading:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: calc(200px + 8em);
  z-index: 10;
  content: "";
  background: rgba(255, 255, 255, 0.75);
}
.booking--loading:after {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 11;
  width: 8em;
  height: 8em;
  margin: -4em 0 0 -4em;
  border: solid 1em rgba(231, 77, 0, 0.35);
  border-left-color: #E74D00;
  border-radius: 50%;
  content: "";
  -webkit-animation: spinner 1s infinite linear;
          animation: spinner 1s infinite linear;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*------------------------------------
	Enter registration form
------------------------------------*/
.booking__registration-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  width: 100%;
  margin-bottom: 24px;
}
.booking__registration-form .fieldset {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
}
.booking__registration-form .form__group {
  margin-top: 0;
}
.booking__registration-form .form__field-label, .booking__registration-form .mfa-app .control-label, .mfa-app .booking__registration-form .control-label {
  font-size: 1.6rem;
}
.booking__registration-form .form__field-extra-label {
  padding: 0;
  border: 0;
}
.booking__registration-form .form__field-holder input.text {
  padding: 0.4em 0.75em;
  font-weight: bold;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/*------------------------------------
	Pre-selected addon when only 1 is available
------------------------------------*/
.booking__preselected-addon {
  display: block;
  padding: 0.5em 1em;
  border: solid 1px #E74D00;
  border-radius: 2px;
  color: #fff;
  background: #0B1B4D;
  font-size: 1.3rem;
}

/* Component: button
---------------------------------------------------------------------------------- */
.button, .mfa-app .btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 12px 0 0;
  padding: 0.6em 1em;
  border: solid 1px #0B1B4D;
  border-radius: 0;
  color: #0B1B4D;
  background-color: #fff;
  font-size: 1.4rem;
  font-family: inherit;
  line-height: 1.2857142857;
  text-align: left;
  text-decoration: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.button:last-child, .mfa-app .btn:last-child {
  margin-right: 0;
}
.button:link, .mfa-app .btn:link, .button:visited, .mfa-app .btn:visited {
  background-color: #fff;
}
.button:hover, .mfa-app .btn:hover, .button:active, .mfa-app .btn:active {
  background-color: #EEEEEE;
}
.typography .button, .typography .mfa-app .btn, .mfa-app .typography .btn {
  color: #0B1B4D;
  text-decoration: none !important;
}
.button svg, .mfa-app .btn svg {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: inline-block;
  fill: #E74D00;
}
.button svg:first-child, .mfa-app .btn svg:first-child {
  margin-right: 1em;
}
.button svg:last-child, .mfa-app .btn svg:last-child {
  margin-left: 1em;
}
.button:focus, .mfa-app .btn:focus {
  border-color: #000 !important;
  color: #000 !important;
  background-color: #FFC400 !important;
  outline: solid 3px transparent;
  box-shadow: none !important;
}
.button:focus svg, .mfa-app .btn:focus svg {
  fill: #000 !important;
}
.button[disabled], .mfa-app [disabled].btn {
  opacity: 0.5;
  pointer-events: none;
}

.button--small, .mfa-app .btn {
  font-size: 1.3rem;
}
.button--small svg:first-child, .mfa-app .btn svg:first-child {
  margin-right: 0.75em;
}
.button--small svg:last-child, .mfa-app .btn svg:last-child {
  margin-left: 0.75em;
}

.button--mid {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1.6rem;
}

.button--large {
  font-size: 1.8rem;
}

.button--strong, .mfa-app .btn-primary {
  font-weight: bold;
}

.button[disabled], .mfa-app [disabled].btn,
.button--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.button--outline-white {
  border-color: #fff;
}

.button--outline-orange, .mfa-app .btn-secondary {
  border-color: #E74D00;
}

.button--min-width {
  min-width: 155px;
}

.button--blue, .mfa-app .btn-primary {
  color: #fff;
  background-color: #0B1B4D;
}
.button--blue:link, .mfa-app .btn-primary:link, .button--blue:visited, .mfa-app .btn-primary:visited {
  background-color: #0B1B4D;
}
.button--blue:hover, .mfa-app .btn-primary:hover, .button--blue:active, .mfa-app .btn-primary:active {
  background-color: #021639;
}
.typography .button--blue, .typography .mfa-app .btn-primary, .mfa-app .typography .btn-primary {
  color: #fff;
}
.button--blue svg, .mfa-app .btn-primary svg {
  fill: #fff;
}

.button--orange {
  border-color: #E74D00;
  color: #fff;
  background-color: #E74D00;
}
.button--orange:link, .button--orange:visited {
  background-color: #E74D00;
}
.button--orange:hover, .button--orange:active {
  background-color: #b43c00;
}
.typography .button--orange {
  color: #fff;
}
.button--orange svg {
  fill: #fff;
}

.button--red {
  border-color: #840000;
  color: #fff;
  background-color: #840000;
}
.button--red:link, .button--red:visited {
  background-color: #840000;
}
.button--red:hover, .button--red:active {
  background-color: #510000;
}
.typography .button--red {
  color: #fff;
}
.button--red svg {
  fill: #fff;
}

/* Component: max width container
---------------------------------------------------------------------------------- */
.container {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.container--inset {
  max-width: 1350px;
}

.home-top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.banner_heading{
  font-size: 4.8rem;
  font-weight: 700;
  color: #2163ff;
}

/* Mobile Text Section */
.mobile-text {
  display: block;
  text-align: center;
  padding: 3rem 1rem;
}
.mobile-text h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2163ff;
  margin-bottom: 1rem;
}
.mobile-text p {
  color: #000;
  margin-bottom: 1.2rem;
}
.mobile-text .btn-primary {
  background-color: #2163ff;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-text .btn-primary:hover {
  background-color: #004de6;
}

/* Image Section */
/* .image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-bottom: 1.5rem;
} */
.desktop-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-img {
  display: block;
  width: 90%;
  height: 90%;
  margin-left: 1rem;
  border-radius: 30px;
  object-fit: cover;
}

.banner_para{
  font-size: 1.6rem;
  color: #000;  
}

/* Text inside desktop image */
.image-text {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 10;
  align-items: center;
  justify-content: flex-start;
  padding-left: 7rem;
}

.text-box {
  max-width: 42rem;
}

.text-box h1 {
  font-size: 4.8rem;
  font-weight: 600;
  color: #2163ff;
  margin-bottom: 1rem;
}
.text-box p {
  color: #000;
  margin-bottom: 1.5rem;
}
.text-box .btn-primary {
  background-color: #2163ff;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}
.text-box .btn-primary:hover {
  background-color: #004de6;
}

.parking-options-section {
  background-color: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.parking-options-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.parking-options-section .title-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 30px;
}

.title-divider .line {
  width: 90px;
  height: 2px;
  background-color: #2163ff;
  border-radius: 5px;
}

.title-divider .dot {
  width: 8px;
  height: 8px;
  background-color: #2163ff;
  transform: rotate(45deg);
  margin: 0 8px;
}

.parking-options-section .section-description {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
}

.parking-options-section .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.parking-options-section .card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.parking-options-section .card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border-color: #2163ff;
  transform: translateY(-3px);
}

.parking-options-section .icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  filter: invert(34%) sepia(96%) saturate(3250%) hue-rotate(215deg) brightness(95%) contrast(102%);
}

.parking-options-section .card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.parking-options-section .card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.parking-options-section .card a {
  font-size: 14px;
  color: #2163ff;
  font-weight: 600;
  text-decoration: none;
}

.parking-options-section .card a:hover {
  text-decoration: underline;
}


/* Container & Layout */
.prebook-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.prebook-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.prebook-text, .prebook-image {
    flex: 1 1 45%;
}

/* Typography */
.prebook-title {
    font-size: 48px;
    font-weight: bold;
    color: #2163ff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.prebook-subtitle {
    font-weight: 600;
    margin-bottom: 15px;
}

.prebook-description {
    color: #555;
    margin-bottom: 25px;
}

/* Checklist */
.prebook-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.prebook-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.checkmark {
    color: green;
    font-weight: bold;
    margin-top: 2px;
}

/* Button */
.prebook-button button {
    background-color: #2163ff;
    color: #fff;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid #2163ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prebook-button button:hover {
    background-color: #fff;
    color: #2163ff;
}

/* Image */
/* .image-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
} */

/* Animations */
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-left {
    animation: slideLeft 0.5s ease-in forwards;
}

.slide-right {
    animation: slideRight 0.5s ease-out forwards;
}

/* Responsive */
@media(max-width: 768px) {
    .prebook-container {
        flex-direction: column;
    }

    .prebook-text, .prebook-image {
        flex: 1 1 100%;
    }

    .prebook-title {
        font-size: 36px;
    }
}

/* Container */
.faq-section {
    background-color: #F8FAFC;
    padding: 60px 20px;
    text-align: center;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
.faq-title {
    font-size: 48px;
    font-weight: bold;
    color: #2163ff;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-description {
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
}

@media(min-width: 768px) {
    .faq-grid {
      display: flex;
        grid-template-columns: 1fr;
    }
}

/* FAQ Item */
.faq-item {
    border: 1px solid #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    background-color: #222;
    color: #fff;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 16px;
}

.faq-answer {
    background-color: #fff;
    color: #555;
    padding: 24px;
    font-size: 14px;
    line-height: 1.6;
}


/* Blue Box Section */
.parking-box {
  width: 90%;
  background-color: #2163ff;
  border-radius: 30px;
  padding: 2rem 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
}
.parking-box h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.parking-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.parking-icons .icon img {
  width: 100px;
  height: auto;
}

.prebooking-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 20px;
  max-width: 1200px;
  margin: 2rem auto;
  box-sizing: border-box;
}

.contact-section {
    background-color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* Text Column */
.contact-text {
    flex: 1 1 45%;
}

.contact-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.highlight {
    color: #2163ff;
}

.contact-subtitle {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

/* Form Column */
.contact-form-wrapper {
    flex: 1 1 45%;
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 15px;
}

.contact-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 5px;
}

.required {
    color: red;
}

.invisible {
    visibility: hidden;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #2163ff;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: none;
}

.submit-button {
    background-color: #2163ff;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #2163ff;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #fff;
    color: #2163ff;
}

.prebook-section {
    padding: 60px 20px;
    background-color: #fff;
}

.prebook-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

/* Text Column */
.prebook-text {
    flex: 1 1 45%;
}

.prebook-title {
    font-size: 48px;
    font-weight: bold;
    color: #2163ff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.prebook-subtitle {
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.prebook-description {
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* Checklist */
.prebook-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.prebook-checklist li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.prebook-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e; /* green check */
    font-weight: bold;
}

/* Button */
.prebook-button {
    background-color: #2163ff;
    color: #fff;
    border: 2px solid #2163ff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prebook-button:hover {
    background-color: #fff;
    color: #2163ff;
}

/* Image Column */
.prebook-image {
    flex: 1 1 45%;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.prebook-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .prebook-container {
        flex-direction: column;
    }

    .prebook-text,
    .prebook-image {
        flex: 1 1 100%;
    }
}


.footer-section {
    background-color: #1c2230;
    color: #fff;
    font-family: sans-serif;
}

.footer-newsletter {
    background-color: #2163ff;
    padding: 20px 40px;
    font-size: 28px;
    font-weight: 600;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 40px 20px;
}

.footer-column {
    flex: 1 1 220px;
}

@media screen and (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%;
    }
  
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    color: #2163ff;
    background: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
    text-align: center;
}

.footer-about {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-socials a {
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    margin-right: 5px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.footer-socials a.facebook { background: #2e4a7d; }
.footer-socials a.twitter { background: #00aced; }
.footer-socials a.youtube { background: #ff0000; }

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-line {
    width: 40px;
    height: 3px;
    background-color: #2163ff;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-contact .icon {
    margin-right: 8px;
}

.footer-copyright {
    border-top: 1px solid #444;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-logo {
        text-align: left;
    }
}



/* Left text */
.prebooking-text {
  width: 100%;
  margin-bottom: 2rem;
}
.prebooking-text .headline {
  color: #2163ff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-align: left;
}
.prebooking-text .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: left;
}
.prebooking-text .description {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}
.prebooking-text .btn-primary {
  background-color: #2163ff;
  color: #fff;
  border: 2px solid #2163ff;
  padding: 0.6rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}
.prebooking-text .btn-primary:hover {
  background: #fff;
  color: #2163ff;
  border: 2px solid #2163ff;
}

/* Right image */
.prebooking-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (min-width: 768px) {
  .prebooking-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem 3rem;
  }
  .prebooking-text {
    width: 50%;
    padding-right: 2rem;
  }
  .prebooking-image {
    width: 50%;
  }
  .prebooking-text .headline {
    font-size: 2.5rem;
  }
  .prebooking-text .title {
    font-size: 2rem;
  }
}

/* --- Simple fade animations (simulate framer motion) --- */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-left {
  animation: fadeLeft 0.8s ease-out forwards;
}
.fade-in-right {
  animation: fadeRight 0.8s ease-out forwards;
}


/* Responsive */
@media (min-width: 768px) {
  .mobile-text {
    display: none;
  }
  .desktop-img {
    display: block;
  }
  .mobile-img {
    display: none;
  }
  /* .image-wrapper {
    height: 660px;
  } */
  .image-text {
    display: flex;
  }
  .parking-box {
    margin-top: -5rem;
    width: 65rem;
  }
  .parking-box h1 {
    font-size: 2.5rem;
  }
  .parking-icons .icon img {
    width: 140px;
  }
}


.blue_line{
  padding-left: 15px;
  padding-right: 15px;
}

/* Component: content containers
---------------------------------------------------------------------------------- */
.content {
  padding: 24px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .content--extra-padding {
    padding: 40px;
  }
}
.content--grey {
  background: #EEEEEE;
}

.content--blue {
  background: #0B1B4D;
}

.content--orange {
  background: #E74D00;
}

.content--bordered {
  border: solid 1px #0B1B4D;
}

.content--border-bottom {
  border-bottom: solid 1px #0B1B4D;
}

/* Layout: footer
---------------------------------------------------------------------------------- */
.footer {
  padding: 20px 0;
  border-top: solid 1px #707070;
  color: #707070;
  background: #fff;
  font-size: 1.2rem;
  font-family: arial, sans-serif;
  line-height: 1.5;
}
.footer strong {
  font-weight: bold;
}
.footer dt,
.footer dd {
  display: inline-block;
}
.footer dd {
  margin-right: 0.5em;
}
.footer dd:last-child {
  margin-right: 0;
}
.footer a {
  color: inherit;
}
.footer a:link, .footer a:visited {
  text-decoration: underline;
}
.footer a:hover, .footer a:active {
  text-decoration: none;
}
.footer a:focus {
  color: #333;
  text-decoration: none;
  outline: solid 3px transparent;
  background: #FFC400;
  box-shadow: 0 -2px #FFC400, 0 1px #000;
}
.footer a.alt:link, .footer a.alt:visited {
  text-decoration: none;
}
.footer a.alt:hover, .footer a.alt:active {
  text-decoration: underline;
}

@media screen and (min-width: 480px) {
  .footer {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}
/* Component: generic form styles
---------------------------------------------------------------------------------- */
div.formtacular-hidden {
  display: none;
}

.form--narrow {
  max-width: 792px;
  margin-right: auto;
  margin-left: auto;
}

.form--narrower {
  max-width: 368px;
  margin-right: auto;
  margin-left: auto;
}

/*------------------------------------
	Input group
------------------------------------*/
.form__group {
  margin-top: 24px;
}
.form__group:first-child {
  margin-top: 0;
}

.form__group--narrow-gutter {
  margin-top: 12px;
}

/*------------------------------------
	Labels/input wrapper
------------------------------------*/
.form__field {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
}

/*------------------------------------
	Label
------------------------------------*/
.form__field-label, .mfa-app .control-label {
  display: block;
  width: 100%;
  padding-bottom: 0.5em;
  color: #0B1B4D;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: left;
}
.holder-required .form__field-label, .holder-required .mfa-app .control-label, .mfa-app .holder-required .control-label {
  color: #840000;
}

/*------------------------------------
	Input holder
------------------------------------*/
.form__field-holder {
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}
.form__group--auto-width .form__field-holder {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
}
.form__field-holder.validation-passed:after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  content: "";
  background: url("../images/icons.svg#icon-success-view") no-repeat 0 0;
  background-size: 100% 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: invert(54%) sepia(13%) saturate(1419%) hue-rotate(75deg) brightness(96%) contrast(89%);
          filter: invert(54%) sepia(13%) saturate(1419%) hue-rotate(75deg) brightness(96%) contrast(89%);
}
.form__field-holder.validation-failed:before {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background: #840000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__field-holder.validation-failed:after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  content: "!";
  color: #fff;
  font-weight: bold;
  font-family: courier, monospace;
  line-height: 16px;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*------------------------------------
	Right-hand label
------------------------------------*/
.form__field-extra-label {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  overflow: hidden;
  padding: 0.5em 1em;
  border: solid 1px #0B1B4D;
  border-left: 0;
  color: #fff;
  background: #0B1B4D;
  font-weight: bold;
  font-size: 1.3rem;
}

/*------------------------------------
	Description
------------------------------------*/
.form__field-description {
  margin: 0 0 1em !important;
  color: #000;
}
.form__field-description:last-child {
  margin: 1em 0 0 !important;
}

/*------------------------------------
	Columns
------------------------------------*/
.form__columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -24px;
  margin-right: -12px;
  margin-left: -12px;
}
.form__columns > .form__group {
  width: 100%;
  margin-top: 24px;
  padding-right: 12px;
  padding-left: 12px;
}

.form__columns--fluid {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.form__columns--fluid > .form__group {
  width: auto;
  max-width: 100%;
}
.form__columns--fluid > .form__group.field-large {
  width: 420px;
}
.form__columns--fluid > .form__group.field-mid {
  width: 40ex;
}
.form__columns--fluid > .form__group.field-small {
  width: 30ex;
}
.form__columns--fluid > .form__group.field-extra-small {
  width: 20ex;
}

.form__columns--preserve-gutter {
  margin-top: 0;
}

.form__columns--align-center {
  -ms-flex-align: center;
      align-items: center;
}

@media screen and (min-width: 768px) {
  .form__columns > .form__group {
    width: 50%;
  }
  .form__columns > .form__group--narrow {
    width: 33.333333%;
  }
  .form__columns--fluid > .form__group {
    width: auto;
  }
}
/*------------------------------------
	Alerts
------------------------------------*/
.form__alert {
  margin: 0.5em 0;
  padding: 0.4em 0.8em;
  border: solid 1px #840000;
  color: #840000;
  background: #fff;
  text-align: left;
}

/*------------------------------------
	Actions wrapper
------------------------------------*/
.form__actions {
  margin-top: 24px;
}
.form__actions #ForgotPassword {
  margin: 1em 0 0;
  font-size: 1.4rem;
}

/*------------------------------------
	Text inputs
------------------------------------*/
.mfa-app .form-control, .form__field-holder input.text,
.form__field-holder textarea.textarea,
.form__field-holder span.readonly {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5em 0.7em;
  border: solid 1px #0B1B4D;
  border-radius: 0;
  color: #000;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: inherit;
  line-height: 1.3;
  -webkit-appearance: none;
          appearance: none;
}
.mfa-app .form-control::-webkit-input-placeholder, .form__field-holder input.text::-webkit-input-placeholder, .form__field-holder textarea.textarea::-webkit-input-placeholder, .form__field-holder span.readonly::-webkit-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.mfa-app .form-control:-ms-input-placeholder, .form__field-holder input.text:-ms-input-placeholder, .form__field-holder textarea.textarea:-ms-input-placeholder, .form__field-holder span.readonly:-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.mfa-app .form-control::-ms-input-placeholder, .form__field-holder input.text::-ms-input-placeholder, .form__field-holder textarea.textarea::-ms-input-placeholder, .form__field-holder span.readonly::-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.mfa-app .form-control::placeholder, .form__field-holder input.text::placeholder,
.form__field-holder textarea.textarea::placeholder,
.form__field-holder span.readonly::placeholder {
  color: #000;
  opacity: 0.5;
}
.mfa-app .form-control:focus, .form__field-holder input.text:focus,
.form__field-holder textarea.textarea:focus,
.form__field-holder span.readonly:focus {
  outline: solid 3px transparent;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px #FFC400;
}
.mfa-app .text-center.form-control, .form__field-holder input.text-center.text,
.form__field-holder textarea.text-center.textarea,
.form__field-holder span.text-center.readonly {
  text-align: center;
}

.form__field-holder span.readonly {
  background-color: #EEEEEE;
}

/*------------------------------------
	Dropdown field
------------------------------------*/
.form__field-holder select.dropdown {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5em calc(2em + 1.3ex) 0.5em 0.7em;
  border: solid 1px #0B1B4D;
  border-radius: 0;
  color: #333;
  background-color: #fff;
  font-weight: normal;
  font-size: 1.6rem;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: 1.3;
  -webkit-appearance: none;
          appearance: none;
}
.form__field-holder select.dropdown::-ms-expand {
  display: none;
}
.form__field-holder select.dropdown[disabled] {
  opacity: 0.75;
}
.form__field-holder select.dropdown:focus {
  outline: solid 3px transparent;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px #FFC400;
}
.dropdown .form__field-holder {
  position: relative;
  font-size: 1.6rem;
}
.dropdown .form__field-holder:before, .dropdown .form__field-holder:after {
  position: absolute;
  top: 50%;
  right: 1.2em;
  z-index: 3;
  width: 1.2ex;
  height: 2px;
  content: "";
  background: #0B1B4D;
  pointer-events: none;
}
.dropdown .form__field-holder:before {
  -webkit-transform: translateY(0.25ex) rotate(45deg);
          transform: translateY(0.25ex) rotate(45deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.dropdown .form__field-holder:after {
  -webkit-transform: translateY(0.25ex) translateX(100%) translateX(-1px) rotate(-45deg);
          transform: translateY(0.25ex) translateX(100%) translateX(-1px) rotate(-45deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

/*------------------------------------
	Radio
------------------------------------*/
.form__field-holder .optionset {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form__field-holder .optionset > div {
  position: relative;
  width: 100%;
  margin-top: 12px;
}
.form__field-holder .optionset > div:first-child {
  margin-top: 0;
}
.form__field-holder .optionset > div label {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  display: block;
  padding: 0.5em 1em 0.5em 30px;
  border: solid 1px rgba(11, 27, 77, 0.25);
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.3rem;
}
.form__field-holder .optionset > div label:before {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 13px;
  height: 13px;
  border: solid 1px #0B1B4D;
  border-radius: 100%;
  content: "";
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__field-holder .optionset > div label:after {
  position: absolute;
  top: 50%;
  left: 14px;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #E74D00;
  opacity: 0;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__field-holder .optionset input {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  display: block;
  width: 26px;
  height: 26px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.form__field-holder .optionset input:focus ~ label {
  box-shadow: 0 0 0 2px #FFC400;
}
.form__field-holder .optionset input:checked ~ label {
  border-color: #E74D00;
  color: #fff;
  background: #0B1B4D;
}
.form__field-holder .optionset input:checked ~ label:after {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .form__field-holder .optionset--half > div {
    width: calc(50% - 12px);
  }
  .form__field-holder .optionset--half > div:nth-child(2) {
    margin-top: 0;
  }
  .form__field-holder .optionset--third > div {
    width: calc(33.333333% - 16px);
  }
  .form__field-holder .optionset--third > div:nth-child(3) {
    margin-top: 0;
  }
}
/*------------------------------------
	Checkboxsets
------------------------------------*/
.form__field-holder .checkboxset > div label:before, .form__field-holder .checkboxset > div label:after {
  border-radius: 6px;
}
.form__field-holder .checkboxset > div label:after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 5px;
  border-width: 0 0 3px 3px;
  border-color: #fff;
  border-top-color: transparent;
  border-radius: 0;
  background: transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*------------------------------------
	Checkbox
------------------------------------*/
.form__field-holder.form-check {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 13px;
}
.form__field-holder.form-check label {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  display: block;
  padding: 0 0 0 0.5em;
  color: #0B1B4D;
  font-size: 1.3rem;
}
.form__field-holder.form-check label:before {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  border: solid 1px #0B1B4D;
  content: "";
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__field-holder.form-check label:after {
  position: absolute;
  top: 50%;
  left: 3px;
  display: block;
  width: 7px;
  height: 7px;
  opacity: 0;
  content: "";
  background: #E74D00;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__field-holder.form-check input {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: block;
  width: 13px;
  height: 13px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__field-holder.form-check input:focus ~ label:before {
  box-shadow: 0 0 0 2px #FFC400;
  border-width: 2px;
}
.form__field-holder.form-check input:checked ~ label:after {
  opacity: 1;
}

/*------------------------------------
	Confirmed password field
------------------------------------*/
.confirmedpassword .form__field-holder .form__group:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .confirmedpassword .form__field-holder {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .confirmedpassword .form__field-holder .form__group {
    width: calc(50% - 12px);
    margin-top: 0;
  }
}
/*------------------------------------
	Fieldgroup wrapper
------------------------------------*/
.fieldgroup__fields {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*------------------------------------
	Fieldgroup field
------------------------------------*/
.fieldgroup__field .form__group {
  margin-top: 0;
  margin-right: 24px;
}

/* Layout: header
---------------------------------------------------------------------------------- */
.header {
  position: relative;
  z-index: 2;
  border-bottom: solid 1px #0B1B4D;
  box-shadow: 0 2px 4px rgba(11, 27, 77, 0.2);
}

/*------------------------------------
	Flex wrapper
------------------------------------*/
.header__flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: center;
  margin: 0;
}

/* Base: show normal nav, hide hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000; /* adjust color as needed */
  border-radius: 2px;
}

/* For screens smaller than large (max-width: 1024px) */
@media (max-width: 1024px) {
  .header__center {
    display: none; /* hide buttons */
  }

  .hamburger {
    display: flex; /* show hamburger */
  }

  /* When hamburger is active (menu open) */
  .header__center.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 70px; /* adjust depending on header height */
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
  }
}

/* --- Hamburger button --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001; /* keep on top */
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #1765ff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

/* --- Animate to X when active --- */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Desktop menu --- */
.header__menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Mobile menu --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header__menu {
    position: absolute;
    padding-top: 5px;
    padding-bottom: 5px;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-200%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .header__menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .header__button {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-radius: 0;
    background: #1765ff;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s ease;
  }

  .header__button:hover {
    background: #0b4cd8;
  }
}


.logo_bold{
  font-size: 33px;
  font-weight: bold;
  color: #1765ff;
}

@media (max-width: 1024px) { /* tablets */
  .logo_bold {
    font-size: 28px;
  }
}

@media (max-width: 768px) { /* large phones */
  .logo_bold {
    font-size: 24px;
  }
}

@media (max-width: 480px) { /* small phones */
  .logo_bold {
    font-size: 20px;
  }
}

.logo_blueparking{
  size: 7rem;
  width: 7rem;
}

@media (max-width: 1024px) { /* tablets */
  .logo_blueparking {
    size: 6rem;
    width: 6rem;
  }
}

@media (max-width: 768px) { /* large phones */
  .logo_blueparking {
    size: 5rem;
    width: 5rem;
  }
}

@media (max-width: 480px) { /* small phones */
  .logo_blueparking {
    size: 4rem;
    width: 4rem;
  }
}

/* new bp logo */

.new_logo_blueparking{
  size: 7rem;
  width: 13rem;
}

@media (max-width: 1024px) { /* tablets */
  .new_logo_blueparking {
    size: 6rem;
    width: 12rem;
  }
}

@media (max-width: 768px) { /* large phones */
  .new_logo_blueparking {
    size: 5rem;
    width: 10rem;
  }
}

@media (max-width: 480px) { /* small phones */
  .new_logo_blueparking {
    size: 4rem;
    width: 8rem;
  }
}

/*------------------------------------
	Logo
------------------------------------*/
.header__logo {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 9px;
}
.header__logo:focus {
  background: #FFC400;
  outline: solid 1px #000;
  outline-offset: 3px;
  box-shadow: -3px -3px #FFC400, -3px 3px #FFC400, 3px 3px #FFC400, 3px -3px #FFC400;
}

/*------------------------------------
	Nav menu
------------------------------------*/
.header__nav {
  margin: 9px;
}

/*------------------------------------
	Current user/logout section
------------------------------------*/
.header__current-user {
  display: -ms-flexbox;
  display: flex;
  margin: 9px;
}

/*------------------------------------
	Pill
------------------------------------*/
.header__pill {
  display: block;
  padding: 0.6em 1.1em;
  border: solid 1px #0B1B4D;
  color: #0B1B4D;
  font-size: 1.4rem;
  line-height: 1.3;
}

.header__pill--strong {
  font-weight: bold;
}

.header__pill--link {
  color: #fff;
  background: #0B1B4D;
  text-decoration: none;
}
.header__pill--link:link, .header__pill--link:visited {
  background: #0B1B4D;
}
.header__pill--link:hover, .header__pill--link:active {
  background: #021639;
}
.header__pill--link:focus {
  border-color: #000 !important;
  color: #000 !important;
  background-color: #FFC400 !important;
  outline: solid 3px transparent;
}

/* Component: inline form styles
---------------------------------------------------------------------------------- */
.inline-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}
.inline-form .fieldset {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}
.inline-form .fieldset .form__group {
  margin-top: 0;
  margin-right: 12px;
}
.inline-form .form__actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 0;
}

/* Layout: locations search form
---------------------------------------------------------------------------------- */
.locations-search-form {
  margin-bottom: 12px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
.locations-search-form .fieldset .form__group {
  margin: 0;
}
.locations-search-form input {
  font-size: 1.4rem !important;
}
.locations-search-form input,
.locations-search-form button {
  height: 3.7rem;
}

@media screen and (min-width: 850px) {
  .locations-search-form {
    margin-bottom: 0;
    width: auto;
    margin-right: 12px;
  }
}
/* Component: Silverstripe MFA styles
---------------------------------------------------------------------------------- */
:root {
  --color-text: $color__black;
  --color-dark-text: $color__black;
  --color-loading-indicator: #4a90e2;
  --color-tile-border: #546780;
  --color-tile-border-hover: hsla(0,0%,100%,.1);
  --color-tile-border-active: #4a90e2;
  --tile-box-shadow-active: 0 0 0 2px #4a90e2 inset;
  --tile-mask-background: rgba(0,0,0,.75);
}

.mfa-app {
  font-size: 1.4rem;
  line-height: 1.5;
}
.mfa-app .mfa-app-title {
  margin-bottom: 0.65em;
  color: rgb(var(--blue-dark));
  font-weight: 800;
  font-size: 3.3rem;
  line-height: 1.2121212121;
}
.mfa-app .mfa-section-title {
  margin-bottom: 0.8em;
  color: rgb(var(--blue-dark));
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.2083333333;
}
.mfa-app .mfa-feature-list-title {
  margin-top: 0;
  margin-bottom: 1em;
  color: rgb(var(--blue-dark));
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.2777777778;
}
.mfa-app .mfa-feature-list {
  padding-left: 0;
}
.mfa-app .mfa-feature-list-item__title {
  margin-bottom: 0.5em;
  color: rgb(var(--blue-light));
  font-weight: bold;
  font-size: 1.6rem;
}
.mfa-app .mfa-feature-list-item__description {
  font-size: 1.4rem;
  line-height: 1.5;
}
.mfa-app .mfa-action-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mfa-app .mfa-action-list__item {
  margin-right: 0.75em;
}
.mfa-app .mfa-action-list__item:last-child {
  margin-right: 0;
}
.mfa-app .mfa-totp__scan {
  font-size: 1.4rem;
  line-height: 1.5;
}
.mfa-app .mfa-totp__manual-code {
  font-weight: 700;
}
.mfa-app .mfa-totp__validate-right {
  margin-left: 24px;
}
.mfa-app .mfa-register-backup-codes__code-grid {
  margin: 0 0 1em;
}
.mfa-app .mfa-register-backup-codes__helper-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 1em;
}

/* Component: navigation menu
---------------------------------------------------------------------------------- */
/*------------------------------------
	Menu flex wrapper
------------------------------------*/
.nav__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin: -3px -6px;
}

/*------------------------------------
	Item
------------------------------------*/
.nav__item {
  margin: 3px 6px;
}
.nav__item:last-child {
  margin-right: 0;
}

/*------------------------------------
	Link
------------------------------------*/
.nav__link {
  display: block;
  padding: 0.6em 1.1em;
  border: solid 1px #0B1B4D;
  color: #fff;
  background: #0B1B4D;
  font-size: 1.4rem;
  line-height: 1.3;
  text-decoration: none;
}
.nav__link:link, .nav__link:visited {
  background: #0B1B4D;
}
.nav__link:hover, .nav__link:active {
  background: #021639;
}
.nav__link:focus {
  border-color: #000 !important;
  color: #000 !important;
  background-color: #FFC400 !important;
  outline: solid 3px transparent;
}

.nav__link--current {
  border-color: #E74D00;
  color: #0B1B4D;
  background: #fff;
  font-weight: bold;
}
.nav__link--current:link, .nav__link--current:visited, .nav__link--current:hover, .nav__link--current:active {
  background: #fff;
}

/* Component: nearest car parks map
---------------------------------------------------------------------------------- */
.nearest-map {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 350px;
  background: #fff;
}

/* Component: payments fields
---------------------------------------------------------------------------------- */
/*------------------------------------
	Stripe card details
------------------------------------*/
.payments__card {
  width: 100%;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.4rem;
}
.payments__card .StripeElement {
  padding: 0.7em;
  border: solid 1px #0B1B4D;
  background: #fff;
}
.payments__card .StripeElement input {
  line-height: 1.3;
}

/*------------------------------------
	Payment request button
------------------------------------*/
.payments__request-button.StripeElement {
  margin-bottom: 12px;
}

/*------------------------------------
	Actions wrapper
------------------------------------*/
.payments__actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: flex-end;
}

/* Component: security templates
---------------------------------------------------------------------------------- */
/*------------------------------------
	Columns container
------------------------------------*/
@media screen and (min-width: 768px) {
  .security__columns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
/*------------------------------------
	Column
------------------------------------*/
.security__column {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .security__column {
    width: calc(50% - 12px);
  }
  .security__column:nth-child(2) {
    margin-bottom: 0;
  }
}
/*------------------------------------
	Login form fields
------------------------------------*/
.security__login-fields .form__field-holder input.text {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .security__login-fields {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .security__login-fields .form__group {
    width: calc(50% - 12px);
  }
  .security__login-fields .form__group:first-child, .security__login-fields .form__group:nth-child(2) {
    margin-top: 0;
  }
}
/* Component: splashscreen
---------------------------------------------------------------------------------- */
.splashscreen {
  max-width: 420px;
  margin-right: auto;
  margin-left: auto;
}

/*------------------------------------
	Section
------------------------------------*/
.splashscreen__section {
  width: 100%;
  margin-bottom: 12px;
  padding: 24px;
  background: #0B1B4D;
}
.splashscreen__section:last-child {
  margin-bottom: 0;
}
.splashscreen__section .form__field-label, .splashscreen__section .mfa-app .control-label, .mfa-app .splashscreen__section .control-label {
  padding-bottom: 1em;
  color: #fff;
  font-size: 1.6rem;
}
.splashscreen__section .form__field-description {
  color: #fff;
}
.splashscreen__section .form__field-extra-label {
  padding: 0;
  border: 0;
}
.splashscreen__section .form__field-holder input.text {
  padding: 0.4em 0.75em;
  border-color: #fff;
  font-weight: bold;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.splashscreen__section .form__field-holder input.text.orange {
  color: #E74D00;
}
.splashscreen__section .form__field-holder input.text.orange::-webkit-input-placeholder {
  color: #E74D00;
  opacity: 0.5;
}
.splashscreen__section .form__field-holder input.text.orange:-ms-input-placeholder {
  color: #E74D00;
  opacity: 0.5;
}
.splashscreen__section .form__field-holder input.text.orange::-ms-input-placeholder {
  color: #E74D00;
  opacity: 0.5;
}
.splashscreen__section .form__field-holder input.text.orange::placeholder {
  color: #E74D00;
  opacity: 0.5;
}

/* Layout: viewport
---------------------------------------------------------------------------------- */
.viewport {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.viewport > * {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .viewport {
    min-height: 100vh;
  }
}
.viewport__main {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
}
.viewport__main > * {
  width: 100%;
}


.header__top {
  background-color: #1765ff;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__top-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-family: sans-serif;
}

.header__top-right {
  display: flex;
  align-items: center;
}

.header__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__button--white {
  background: #fff;
  color: #1765ff;
}

.header__button--blue {
  background: #1765ff;
  color: #fff;
}

.header__button:hover {
  opacity: 0.9;
}




.complaints-policy {
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #222;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.complaints-policy h1 {
  text-align: center;
  text-decoration: underline;
  font-size: 26px;
  margin-bottom: 40px;
}

.complaints-policy h2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.complaints-policy h3 {
  font-size: 17px;
  margin-top: 10px;
  font-weight: 600;
}

.complaints-policy p {
  margin-bottom: 10px;
  text-align: justify;
}

.complaints-policy ul {
  margin-left: 25px;
  margin-top: 5px;
  margin-bottom: 15px;
}

.complaints-policy li {
  margin-bottom: 5px;
}

.policy-bold {
  font-weight: bold;
}

.last-c-policy{
  font-size: medium;
}


.manage-pcn-main {
  font-family: "Poppins", sans-serif;
}

/* --- HERO SECTION --- */
.pcn-hero {
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
}

.pcn-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.pcn-hero .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* --- MAIN SECTION --- */
.pcn-section {
  background: #f4f6fa;
  padding: 60px 0;
}

.pcn-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 500px) {
  .pcn-container {
    justify-content: center;
  }
}

/* --- CARD STYLING --- */
.pcn-card {
  background: linear-gradient(180deg, #2163ff 0%, #84a9ff 100%);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 360px;
  height: 32rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pcn-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.pcn-card p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 25px;
  flex-grow: 1;
}

.pcn-btn {
  background: white;
  color: #1f2b68;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.pcn-btn:hover {
  background: #e6e9ff;
}

.manage-pcn-heading {
  font-weight: bold;
  padding: 0 20px;
}

/* For medium screens (500px and above) */
@media screen and (min-width: 500px) {
  .manage-pcn-heading {
    font-size: large;
  }
}
@media screen and (max-width: 500px) {
  .manage-pcn-heading {
    font-size: medium;
  }
}

/* For large screens (700px and above) */
@media screen and (min-width: 700px) {
  .manage-pcn-heading {
    font-size: large; /* same large size on big screens */
  }
}


.middle-stripe {
  background-color: #2563eb; /* blue patti */
  width: 100%;
  padding: 5px 0;           /* stripe thickness */
  display: flex;
  justify-content: center;
  align-items: center;
}


.middle-stripe__info{
  font-size: medium;
  font-weight: 900;
}

/* Base layout - large screens (default) */
.middle-stripe {
  background-color: #2563eb;
  width: 100%;
  padding: 5px 0;
  display: flex;
  justify-content: center; /* button center */
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.middle-stripe__info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 13px;
  font-size: medium;
  font-weight: 900;
  flex-wrap: wrap;
  right: 20px;
}

.middle-stripe__info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  text-decoration: none;
}

/* ---------- Medium screens (tablets) ---------- */
@media (max-width: 992px) {
  .middle-stripe {
    justify-content: flex-start; /* Get Help on left */
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
  }

  .middle-stripe__info {
    flex-direction: column;
    align-items: flex-end;
    right: 15px;
    margin-left: 0;
    font-size: 0.95rem; /* slightly smaller */
  }

  .middle-stripe__info a svg {
    width: 18px;
    height: 18px;
  }
}

/* ---------- Small screens (mobiles) ---------- */
@media (max-width: 600px) {
  .middle-stripe {
    justify-content: flex-start; /* Get Help on left */
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
  }

  .middle-stripe__info {
    flex-direction: column;
    align-items: flex-end;
    right: 10px;
    font-size: 1rem; /* smaller text */
    gap: 8px;
  }

  .middle-stripe__info a svg {
    width: 16px;
    height: 16px;
  }
}

.stripe-btn {
  background-color: #fff;    /* white button */
  color: #2563eb;            /* blue text */
  border: none;
  padding: 8px 15px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 9999px;     /* pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
}

.stripe-btn:hover {
  background-color: #2563eb;
  color: #fff;
  transform: scale(1.05);
}

.contact-us-info{
    font-size: 15px;
    background: white;
    color: #2563eb;
    padding: 10px 10px;
    font-weight: bold;
}