
    /* SUPPORT CTA BUTTON */
.support-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: linear-gradient(180deg, #0b4fa3, #083b7a);
    border-radius: 14px;
    padding: 18px 10px;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(11,79,163,0.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

.support-cta img {
    width: 55px;
    margin-bottom: 8px;
}

.support-cta span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Desktop hover */
@media (hover:hover) {
    .support-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(11,79,163,0.45);
    }
}
@media (max-width: 767px) {
    .support-cta {
        padding: 22px 12px;
    }

    .support-cta img {
        width: 60px;
    }

    .support-cta span {
        font-size: 15px;
    }
}

  /* Service Card Base */
.service-box {
    width: 100%;
    background: linear-gradient(180deg, #f7f9fc, #ffffff);
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    border: 1px solid #eef2f7;
}

/* Hover Effect */
.service-link:hover .service-box {
    background: linear-gradient(180deg, #eef5ff, #ffffff);
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(30,115,190,0.18);
    border-color: #d6e6ff;
}

/* Icon Hover */
.service-link:hover img {
    transform: scale(1.08);
}

/* Icon Transition */
.service-box img {
    max-width: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}


.service-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-box ul li {
    font-size: 14px;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.service-box ul li::before {
  /*  content: "•";*/
    position: absolute;
    left: 0;
    color: #1e73be;
}
/* Equal height services - Bootstrap 3 safe */


.services-area .col-md-3 {
    display: flex;
}

.service-box {
    width: 100%;
}
/* Add vertical gap between rows */

/* Service Card Base */
.service-box {
    width: 100%;
    background: linear-gradient(180deg, #f7f9fc, #ffffff);
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    border: 1px solid #eef2f7;
}

/* Hover Effect */
.service-link:hover .service-box {
    background: linear-gradient(180deg, #eef5ff, #ffffff);
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(30,115,190,0.18);
    border-color: #d6e6ff;
}

/* Icon Hover */
.service-link:hover img {
    transform: scale(1.08);
}

/* Icon Transition */
.service-box img {
    max-width: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.service-link:hover h4 {
    color: #1e73be;
}
/* SERVICES GRID FIX – BOOTSTRAP 3 SAFE */

/* Row spacing */
.services-area .row {
    display: flex;
    flex-wrap: wrap;
}
.services-area .col-md-3,
.services-area .col-sm-6 {
    margin-bottom: 30px;
}
/* Columns stretch */
.services-area .col-md-3,
.services-area .col-sm-6 {
    display: flex;
}

/* Clickable area full height */
.service-link {
    display: flex;
    width: 100%;
    text-decoration: none;
}

/* Service Card */
.service-box {
    width: 100%;
    background: linear-gradient(180deg, #f7f9fc, #ffffff);
    padding: 15px 15px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 1px solid #eef2f7;

    /* FLEX MAGIC */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ICON FIX */
.service-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

/* Title */
.service-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 45px; /* keeps titles aligned */
}

/* List */
.service-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
    flex-grow: 1; /* equal height magic */
}

.service-box ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Hover Effects */
.service-link:hover .service-box {
    background: linear-gradient(180deg, #eef5ff, #ffffff);
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(30,115,190,0.18);
    border-color: #d6e6ff;
}

.service-link:hover img {
    transform: scale(1.1);
}

.service-link:hover h4 {
    color: #1e73be;
}


/**************popup**************/
/* ===== SERVICE HOVER POPUP ===== */
/* ===== SERVICE HOVER POPUP ===== */

.service-box {
   /* position: relative;*/
    overflow: visible;
}

/* Popup container */
.service-popup {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid #e5efff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

/* Arrow */
.service-popup::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

/* Show popup on hover */
.service-link:hover .service-popup {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

/* Popup list */
.service-popup ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-popup ul li {
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px dashed #e8effa;
    color: #333;
}

.service-popup ul li:last-child {
    border-bottom: none;
}

/* Mobile fallback (tap friendly) */
@media (max-width: 768px) {
    .service-popup {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 10px 0 0;
    }
}
@media (max-width: 768px) {

    /* Disable hover popup behaviour */
    .service-popup {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: none;
        padding: 10px 0 0;
        margin-top: 8px;
        display: none;   /* hidden by default */
    }

    /* Remove arrow */
    .service-popup::before {
        display: none;
    }

    /* Stop lift animation */
    .service-link:hover .service-box {
        transform: none;
    }

    /* Visual separation */
    .service-popup ul li {
        font-size: 14px;
    }
}
@media (max-width: 768px) {

    .service-link {
        display: block;
    }

    /* Details BELOW the box */
    .service-popup {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: none;
        padding: 12px 15px;
        margin-top: 10px;
        display: none;
        background: #f8faff;   /* same feel as desktop */
        border-radius: 10px;
    }

    .service-popup::before {
        display: none;
    }

    /* Stop hover lift */
    .service-link:hover .service-box {
        transform: none;
    }

    .service-popup ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .service-popup ul li {
        padding: 6px 0;
        font-size: 14px;
        border-bottom: 1px dashed #dbe6ff;
    }

    .service-popup ul li:last-child {
        border-bottom: none;
    }
}


/************end service popup*************/
.advisor-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.advisor-item {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.advisor-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.advisor-item h6 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.advisor-item small {
    font-weight: 400;
    font-size: 13px;
    color: #666;
}

/* Desktop hover only */
@media (hover: hover) {
    .advisor-card:hover .advisor-item {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
}
.service-popup a {
    color: #333;
    text-decoration: none;
    display: block;
}

.service-popup a:hover {
    color: #1e73be;
}
/******************/
.service-card {
    position: relative;
}

/* popup hidden */
.service-popup {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-radius: 6px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* keep popup open */
.service-card:hover .service-popup,
.service-popup:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* popup links */
.service-popup ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.service-popup li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.service-popup li a:hover {
    background: #f4f8fd;
    color: #1e73be;
}
@media (max-width: 991px) {
    .service-popup {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .service-card.open .service-popup {
        display: block;
    }
}
/*****************/

.service-popup ul li {
    padding: 3px 0;
    line-height: 1;
}

.service-popup ul li a {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.2px;
}
/*************************/
/* ===============================
   SERVICES – BOOTSTRAP 3 SAFE
================================ */

/* Service Card Wrapper */
.service-card {
    position: relative;
}

/* Clickable Link */
.service-link {
    display: block;
    text-decoration: none;
}

/* Card Box */
.service-box {
    background: linear-gradient(180deg, #f7f9fc, #ffffff);
    padding: 18px 15px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Icon */
.service-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

/* Title */
.service-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Hover Effects (Desktop) */
@media (hover: hover) {
    .service-card:hover .service-box {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px rgba(30,115,190,0.18);
        border-color: #d6e6ff;
    }

    .service-card:hover img {
        transform: scale(1.08);
    }

    .service-card:hover h4 {
        color: #1e73be;
    }
}

/* ===============================
   SERVICE POPUP
================================ */

.service-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 12px);
    width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 15px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    border: 1px solid #e5efff;

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

/* Arrow */
.service-popup::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent #fff;
}

/* Popup list */
.service-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-popup li a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.service-popup li a:hover {
    color: #1e73be;
}

/* Show popup on hover (desktop) */
@media (hover: hover) {
    .service-card:hover .service-popup {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }
}

/* ===============================
   MOBILE BEHAVIOUR
================================ */

@media (max-width: 991px) {
    .service-popup {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: #f8faff;
        border-radius: 10px;
        display: none;
    }

    .service-card.open .service-popup {
        display: block;
    }

    .service-popup::before {
        display: none;
    }
}
/* Slider Image Wrapper */
.slider-image {
    position: relative;
    overflow: hidden;
}

/* Curved Bottom */
.slider-image img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

/* FINAL MOBILE POPUP RULE — must be last */
@media (max-width: 991px) {
    .service-popup { display: none !important; }
    .service-card.open .service-popup { display: block !important; }
}


/* ===============================
   SUPPORT BOX – VISIBILITY BOOST
================================ */

.supportbg {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    border: 2px solid #e3ecff;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        0 0 0 6px rgba(30,115,190,0.05);
    position: relative;
}

/* Left accent line */
.supportbg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #1e73be, #3f8cff);
    border-radius: 16px 0 0 16px;
}

/* Title emphasis */
.supportbg h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e73be;
    margin-top: 0;
}

/* Description text */
.supportbg .supad {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
}

/* CTA button stronger presence */
.support-cta {
    display: inline-block;
    padding: 12px 28px;
    background: #1e73be;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(30,115,190,0.35);
    transition: all 0.3s ease;
}

.support-cta:hover {
    background: #155fa0;
    color: #fff;
    transform: translateY(-2px);
}

/* Image lift */
.supportbg img {
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.15));
}

/* ===============================
   MOBILE POLISH
================================ */
@media (max-width: 991px) {
    .supportbg {
        padding: 30px 20px;
        text-align: center;
    }

    .supportbg::before {
        width: 100%;
        height: 4px;
        border-radius: 16px 16px 0 0;
    }

    .support-cta {
        margin-top: 15px;
    }
}
/**********/
/* Hide image on mobile */
.desktop-only-img {
    display: none;
}

/* Show only on desktop */
@media (min-width: 768px) {
    .desktop-only-img {
        display: block;
    }
}
/***/
.largesren {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: right;
}

.largesren img {
    width: 100%;
    height: auto;
}
/* Remove left gap of image on mobile */
@media (max-width: 767px) {
    .largesren {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }

    .largesren img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
    }
}
@media (max-width: 767px) {
    .about-info .row {
        margin-left: 0;
        margin-right: 0;
    }
}
.item1{ max-height:220px;min-height:220px;}

 /* ===============================
   BANNER SLIDER
================================ */

.banner-area {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* The actual image fills full width */
.banner-img {
    width: 100%;
   height: calc(var(--vh, 1vh) * 100);
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Indicators */
.banner-area .carousel-indicators {
    bottom: 20px;
    z-index: 10;
}

.banner-area .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.banner-area .carousel-indicators .active {
    width: 28px;
    border-radius: 5px;
    background: #ffffff;
}

/* Arrows */
.banner-area .carousel-control {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.banner-area .carousel-control.left  { left: 20px; }
.banner-area .carousel-control.right { right: 20px; }

.banner-area .carousel-control:hover {
    background: rgba(30, 115, 190, 0.7);
}

.banner-area .carousel-control .fa {
    font-size: 22px;
    color: #fff;
    text-shadow: none;
    position: static;
    width: auto;
    height: auto;
}

/* Tablet */
@media (max-width: 1024px) {
    .banner-img { height: calc(var(--vh, 1vh) * 70); }
}

/* Mobile */
@media (max-width: 767px) {
    .banner-img {
        height: 55vw; /* proportional to width so image caption stays visible */
        min-height: 220px;
        object-position: center top;
    }

    .banner-area .carousel-control {
        width: 34px;
        height: 34px;
    }

    .banner-area .carousel-control .fa {
        font-size: 16px;
    }
}
.carousel-control {
  display: none !important;
}

 .carousel-indicators {
  bottom: 0;

}
.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: #ffffff;
  width: 14px;
  height: 14px;
}
.banner-img {
  width: 100%;
  /*height: 100vh;*/      /* Full screen height */
 height: calc(var(--vh, 1vh) * 100); 
  object-fit: cover;  /* Prevent distortion */
}
.banner-area {
  position: relative;
}

.carousel-indicators {
  bottom: 5px !important;   /* push close to bottom */
  margin-bottom: 0;
}
.fun-gradient {
    background: linear-gradient(135deg, #0f4c81 0%, #1769b3 50%, #1e88e5 100%);
    color: #ffffff;
}
.fun-gradient .fun-fact .medium,
.fun-gradient .fun-fact .timer,
.fun-gradient .icon i {
    color: #ffffff;
}
.fun-gradient {
    background: linear-gradient(120deg, #1b3c73 0%, #1e5aa8 60%, #2a7bd6 100%);
}
/****************************faq modify****/
/* Remove any default arrow */
.acd-items .panel-title a::after {
    content: none !important;
}

/* Circle icon with plus by default */
.acd-items .panel-title a::before {
    content: "+";                 /* Collapsed state */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;                  /* Circle width */
    height: 28px;                 /* Circle height */
    border-radius: 50%;           /* Circle shape */
    background-color: #1e73be;    /* Circle color for plus */
    color: #fff;                  /* Text color inside circle */
    font-weight: bold;
    font-size: 16px;
    margin-right: 12px;           /* Gap between icon and text */
    flex-shrink: 0;
    transition: all 0.3s ease;
    line-height: 1;               /* Ensures minus is horizontal */
}

/* Expanded panel: horizontal minus */
.acd-items .panel-title a[aria-expanded="true"]::before {
    content: "−";                 /* Horizontal minus */
    background-color: #00b67a;    /* Optional: different color when open */
    color: #fff;
    transform: none;              /* Make sure minus is not rotated */
}
/*****************************/
/* ==============================
   E-INVOICE SUPPORT SECTION
============================== */

.einvoice-support {
    padding: 40px 0;
}

.support-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 50px;
    border-radius: 60px;
    background: linear-gradient(90deg, #e9edf2 0%, #cfd8e3 100%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Left Title */
.support-left h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
    margin: 0;
}

/* Icon */
.support-icon img {
    width: 80px;
    height: auto;
}

/* Content Text */
.support-content {
    max-width: 480px;
}

.support-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Button */
.btn-enquire {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #1f6ed4;
    transition: all 0.3s ease;
}

.btn-enquire:hover {
    background: #1f6ed4;
    color: #fff;
}
/****************/
/* ==============================
   E-INVOICE SUPPORT SECTION
============================== */

.einvoice-support {
    padding: 40px 0;
}

.support-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px 35px; /* extra top space */
    border-radius: 60px;
    background: linear-gradient(90deg, #e9edf2 0%, #cfd8e3 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Left Title */
.support-left h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
    margin: 0;
}

/* Icon */
.support-icon img {
    width: 80px;
    height: auto;
}

/* Content Text */
.support-content {
    max-width: 480px;
}

.support-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Button */
.btn-enquire {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #1f6ed4;
    transition: all 0.3s ease;
}

.btn-enquire:hover {
    background: #1f6ed4;
    color: #fff;
}
.support-icon {
    position: absolute;
    top: -35px;   /* controls how much it overlaps */
    left: 35%;
    transform: translateX(-50%);
}

.support-icon img {
    width: 95px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}
.support-left {
    min-width: 220px;
}

.support-content {
    flex: 1;
    max-width: 500px;
}
.support-icon img {
    top: -12px;
}
@media (max-width: 992px) {

    .support-container {
        flex-direction: column;
        text-align: center;
        padding: 60px 25px 30px;
    }

    .support-icon {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .support-icon img {
        width: 75px;
    }
}
.support-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.counter-number {
  display: inline-block;
  white-space: nowrap;   /* prevents 1000 and + from breaking */
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.medium {
  display: block;
  margin-top: 8px;
  color: #ffffff;
}
.feature-header {
  display: flex;
  align-items: center;   /* vertically center */
  gap: 10px;             /* space between icon & text */
}

.feature-header img {
  width: 40px;           /* adjust as needed */
  height: auto;
}

@media (max-width: 767px) {
  .feature-header {
    display: flex;
    align-items: center;
  }
}
/* Make all FAQ panels match the background */
#FAQ .panel.panel-default {
    background-color: #eef7ff !important;
    border: none;
    box-shadow: none;
}

#FAQ .panel-body {
    background-color: #eef7ff;
}

#FAQ .panel-heading {
    background-color: #eef7ff;
}
/*********************/

@media (max-width: 767px) {
    .support-img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Remove any container padding that shrinks it */
    .event-area .container-fluid,
    .event-area .row.m-0,
    .event-area .col-md-12.p-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
@media (max-width: 767px) {
    .support-img {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-15px);  /* cancels Bootstrap's default gutter */
        display: block;
    }
}