body {
      /*background: #000;*/
      font-size: 14px;
      color: #fff;
      margin: 0;
      padding: 0;
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: 0.5px;
      -webkit-font-smoothing: antialiased;
}

/* Navigation link colors */
#Services, #Training, #Team, #contactUs, #loginLink, #AboutUs { color: #000; }

/* Banner */
.hero-carousel-section {
    position: relative;
    margin-top: 0;
    height: 50vh;
    overflow: hidden;
}

.hero-carousel .hero-slide {
    position: relative;
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.hero-carousel .banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: min(90%, 650px);
    background: rgba(0,0,0,0.35);
    padding: 20px;
    color: #fff;
    z-index: 2;
}

.btn-style1 {
    padding: 10px 20px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    display: inline-block;
}

.btn-style1:hover {
    background: #fff;
    color: #000;
}



/* Helpers */
.bg-color { background-color:#C0C0C0; }
.Head { background:#fff; }
.phoneLink { text-decoration:underline; color:#84A4FC !important; }
.phoneLink:hover { color:#728EDB !important; text-decoration:none; }

/* Responsive adjustments */
@media (max-width:1024px) { .banner-content { width:80%; margin:0 auto; } #Speech{ font-size:32px!important; } }
@media (max-width:767px) { #Speech { font-size:24px!important; } .mobileExperienceText { display:block; text-align:center; margin-top:15px; } }
@media (min-width:576px) { .mobileExperienceText { display:none; } }

/* ==========================
   OUR SERVICES VIDEO SECTION
   ========================== */
.services-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0; 
}

.services-video-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.services-video-section .services-content {
    position: relative;
    z-index: 2;
}

/* ==========================
   OUR SERVICES MARQUEE CARDS
   ========================== */
.service-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.service-marquee .swiper-wrapper {
    display: flex;
    gap: 30px;
    width: max-content;
    cursor: grab;
}

.service-marquee .swiper-wrapper:active {
    cursor: grabbing;
}

.service-marquee .swiper-slide {
    flex-shrink: 0;
    width: 340px; /* slightly wider for longer titles */
}

.service-card-link {
    width: 100%;
}

.service-marquee .card {
    width: 100%;
    max-width: 360px; /* ensures it doesn't grow too wide */
    height: 380px; /* taller to fit icon + text comfortably */
}
.service-marquee .card-back {
    background: transparent;
}


/* CARD FLIP STYLES */
.card-style-04 {
    perspective: 1000px;
}

.card-style-04 .card-body {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

.card-style-04:hover .card-body {
    transform: rotateY(180deg);
}

.card-style-04 .card-front,
.card-style-04 .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    background: transparent;
    gap: 12px; /* slightly more spacing */
}

.card-style-04 .card-front {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-style-04 .card-front .card-butn span {
    font-size: 18px;
    font-weight: 600;
    color: #232323;
    position: absolute;
    bottom: 18%; /* moved up slightly for spacing */
    right: 0;
    padding: 10px 25px;
    background: #fff;
    border-radius: 4px;
}

.card-style-04 .card-back {
    transform: rotateY(-180deg);
    background: #84a4fc;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #000;
}

.card-style-04 .card-back img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.card-style-04 .card-back h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.card-style-04 .card-back p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* ===== Our Services Mobile Adjustments ===== */
@media (max-width: 991px) {
    .service-marquee .swiper-slide .card {
        height: auto; /* let content dictate height */
        min-height: 250px;
        padding: 10px;
    }

    .service-marquee .swiper-slide .card-body {
        flex-direction: column;
        gap: 10px;
    }

    .service-marquee .swiper-slide .card-back p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .service-marquee .swiper-slide .card-back h3 {
        font-size: 1.1rem;
    }

    .service-marquee .swiper-slide .card-back img {
        width: 50px;
        height: 50px;
    }

    .service-marquee {
        overflow-x: auto; /* allow horizontal scrolling if needed */
        padding-bottom: 20px;
    }

    /* Marquee slide spacing */
    .service-marquee .swiper-wrapper {
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .service-marquee .swiper-slide .card-back p {
        font-size: 0.85rem;
    }

    .service-marquee .swiper-slide .card-back h3 {
        font-size: 1rem;
    }

    .service-marquee .swiper-slide .card-back img {
        width: 40px;
        height: 40px;
    }

    .service-marquee .swiper-slide {
        width: 100%; /* make cards narrower on very small screens */
    }
}
/* ==================================================
   DISPLAY UTILITIES
   ================================================== */
.d-inline-block { display: inline-block !important; }
.d-flex         { display: flex !important; }
.d-none         { display: none !important; }

/* ==================================================
   POSITIONING
   ================================================== */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

/* ==================================================
   BORDERS
   ================================================== */
.border {
    border: var(--bs-border-width)
            var(--bs-border-style)
            var(--bs-border-color) !important;
}

.border-0 { border: 0 !important; }

.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

/* ==================================================
   FLEX / ALIGNMENT
   ================================================== */
.align-items-center { align-items: center !important; }
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

/* ==================================================
   SPACING
   ================================================== */
.mb-0  { margin-bottom: 0 !important; }
.mb-3  { margin-bottom: 1rem !important; }
.mb-4  { margin-bottom: 1.5rem !important; }
.ms-3  { margin-left: 1rem !important; }

.p-0   { padding: 0 !important; }
.p-2   { padding: 0.5rem !important; }
.p-3   { padding: 1rem !important; }
.pt-5  { padding-top: 3rem !important; }

/* ==================================================
   TYPOGRAPHY
   ================================================== */
.lh-1        { line-height: 1 !important; }
.text-start { text-align: left !important; }
.text-center{ text-align: center !important; }

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

/* ==================================================
   BACKGROUNDS
   ================================================== */
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
    background-color: transparent !important;
}

/* ==================================================
   BORDER RADIUS
   ================================================== */
.rounded        { border-radius: var(--bs-border-radius) !important; }
.rounded-circle { border-radius: 50% !important; }

/* ==================================================
   RESPONSIVE UTILITIES
   ================================================== */
@media (min-width: 576px) {
    .d-sm-block { display: block !important; }
}

@media (min-width: 768px) {
    .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
    .mb-lg-0 { margin-bottom: 0 !important; }
    .ps-lg-5 { padding-left: 3rem !important; }
}

/* ==================================================
   CONTAINER WIDTH OVERRIDES
   ================================================== */
@media (min-width: 1200px) {
    .container { max-width: 1170px; }
}

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}
/* ==================================================
   ABOUT SECTION
   ================================================== */
.about-section {
    position: relative;
    padding-top: 80px;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.exp-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.w-55px {
    width: 55px;
    height: 55px;
    object-fit: cover;
}

/* ==================================================
   PROCESS SECTION
   ================================================== */
.process-section {
    overflow: hidden;
    padding: 110px 0;
}

.process-section .line-shape img {
    width: 120px;
    height: auto;
}

/* ==================================================
   PROCESS ITEM CARD
   ================================================== */
.process-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.process-item .thumb {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
}

.process-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-item .thumb .step-number {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 14px;

    background: #3078c8;
    color: #fff;

    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
}

.process-decor {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 160px;
    opacity: 0.5;
}

/* ==================================================
   GLOBAL RESET / BASE ELEMENTS
   ================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    vertical-align: middle;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

/* ==================================================
   HEADINGS & TYPOGRAPHY
   ================================================== */
.h1,
.h4,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    .h1 { font-size: 2.5rem; }
}

h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2 { font-size: 2rem; }
}

h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3 { font-size: 1.75rem; }
}

.h4,
h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    .h4,
    h4 {
        font-size: 1.5rem;
    }
}

h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-5 { font-size: 3rem; }
}

/* ==================================================
   BUTTON RESET
   ================================================== */
button {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

[type="button"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

[role="button"] {
    cursor: pointer;
}

/* ==================================================
   GRID / LAYOUT
   ================================================== */
.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;

    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;

    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    margin-top: var(--bs-gutter-y);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/* ==================================================
   COLUMNS
   ================================================== */
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
/* =========================
   Layout Helpers
   ========================= */

.container {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

/* =========================
   Typography
   ========================= */

h2,
h3,
h4,
h5,
h6,
.h1,
.h4 {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    color: #1f2732;
    letter-spacing: -0.02em;
}

h4 a {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    color: #1f2732;
}

.display-28 {
    font-size: 1.1rem;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-800 {
    font-weight: 800;
}

/* =========================
   Colors & Backgrounds
   ========================= */

.text-primary {
    color: #84a4fc !important;
}

.bg-primary {
    background-color: #84a4fc !important;
}

.bg-secondary {
    background-color: #1f2732 !important;
}

.bg-transparent {
    background-color: transparent;
}

/* =========================
   Spacing & Positioning
   ========================= */

.border-width-2 {
    border-width: 2px !important;
}

.mb-2-9 {
    margin-bottom: 2.9rem;
}

.top-15 {
    top: 15%;
    bottom: inherit;
}

.bottom-10 {
    bottom: 10%;
    top: inherit;
}

.right-5 {
    right: 5%;
    left: inherit;
}

/* =========================
   Width Utilities
   ========================= */

.w-55px {
    width: 55px;
}

.w-60px {
    width: 60px !important;
}

/* =========================
   Section Padding
   ========================= */

@media screen and (max-width: 1199px) {
    section {
        padding: 90px 0;
    }
}

@media screen and (max-width: 991px) {
    section {
        padding: 70px 0;
    }
}

@media screen and (min-width: 992px) {
    .pb-lg-24 {
        padding-bottom: 12.5rem;
    }
}

@media screen and (min-width: 1200px) {
    .ps-xl-7 {
        padding-left: 4rem;
    }
}

/* =========================
   Links
   ========================= */

a:hover,
a:active {
    color: #84a4fc;
    text-decoration: none;
}

/* =========================
   Animations
   ========================= */

.ani-move {
    animation: ImageMove 5s linear infinite;
}

.ani-top-bottom {
    animation: TopBottom 5s ease-in-out infinite;
}

/* =========================
   Scroll To Top
   ========================= */

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    width: 40px;
    height: 40px;
    line-height: 40px;

    font-size: 20px;
    text-align: center;
    color: #fff;
    background: #84a4fc;

    display: none;
    outline: 0;
    transition: all 0.3s ease;
}

.scroll-to-top i {
    color: #fff;
}

.scroll-to-top:hover {
    background: #1f2732;
    color: #fff;
}

.scroll-to-top:hover i {
    color: #fff;
}

.scroll-to-top:visited {
    color: #fff;
    text-decoration: none;
}

/* =========================
   Section Titles
   ========================= */

.section-title .sm-title {
    position: relative;
    display: inline-block;

    margin-bottom: 12px;
    padding-bottom: 12px;

    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #84a4fc;

    z-index: 9;
}

.section-title h2 {
    position: relative;
    z-index: 9;
}

.section-title .sm-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 80px;
    height: 2px;

    background: #dedede;
    transform: translateX(-50%);
}

.section-title .sm-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;

    width: 8px;
    height: 8px;
    border-radius: 50px;

    background-color: #84a4fc;
    animation: pulsex 5s ease infinite alternate;
}

/* =========================
   Title Style
   ========================= */

.title-style1 > span {
    position: relative;
    display: inline-block;

    margin-bottom: 12px;
    padding-right: 50px;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #84a4fc;
}

.title-style1 > span::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 9px;

    width: 40px;
    height: 2px;
    background-color: #272c49;
}

.title-style1 > span::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 14px;

    width: 30px;
    height: 2px;
    background-color: #84a4fc;
}

.title-style1.white > span::before {
    background-color: #fff;
}
.mobileExperienceText {
    color: #ffffff;                 /* text fill color */
    -webkit-text-stroke: 0.5px #000;/* black border */
    text-stroke: 0.5px #000;        /* future support */
}
/* =========================
   Process Section
   ========================= */

.main-process {
    position: relative;
    z-index: 1;
    padding-top: 33px;
}

.main-process .line-shape {
    position: absolute;
    top: 25px;
    left: 0;

    z-index: -1;
    transform: rotate(-3deg);
}

@media screen and (max-width: 991px) {
    .main-process .line-shape {
        display: none;
    }
}

/* =========================
   Hero / Header
   ========================= */

.hero-carousel-section {
    position: relative;
    height: 50vh;
    margin-top: 0;
    overflow: hidden;
}

.Head {
    background: #fff;
}

.phoneLink {
    color: #84a4fc !important;
    text-decoration: underline;
}

.phoneLink:hover {
    color: #728edb !important;
    text-decoration: none;
}

/* =========================
   Mobile Visibility
   ========================= */

@media (max-width: 767px) {
    .mobileExperienceText {
        display: block;
        text-align: center;
        margin-top: 15px;
    }
}

@media (min-width: 576px) {
    .mobileExperienceText {
        display: none;
    }
}


/*! CSS Used keyframes */
@-webkit-keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@-webkit-keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);}to{opacity:1;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}}
@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);}to{opacity:1;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}}
@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}
@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}
@keyframes ImageMove{0%{transform:translate(0px, 0px);}25%{transform:translate(10px, 20px);}50%{transform:translate(30px, 30px);}75%{transform:translate(20px, 10px);}100%{transform:translate(0px, 0px);}}
@keyframes ImageMove{0%{transform:translate(0px, 0px);}25%{transform:translate(10px, 20px);}50%{transform:translate(30px, 30px);}75%{transform:translate(20px, 10px);}100%{transform:translate(0px, 0px);}}
@keyframes TopBottom{0%{transform:translate(0px, 0px);}65%{transform:translate(0, 30px);}100%{transform:translate(0px, 0px);}}
@keyframes TopBottom{0%{transform:translate(0px, 0px);}65%{transform:translate(0, 30px);}100%{transform:translate(0px, 0px);}}
@keyframes pulsex{0%{transform:translateX(0);}100%{transform:translateX(-100px);}}
@keyframes pulsex{0%{transform:translateX(0);}100%{transform:translateX(-100px);}}

