@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
    font-family: 'poppins', sans-serif;
}

/* background-color: #1F81B0; */
/* #142537 */

:root{
    --main-color: #1F81B0;
    --black-color: #1F81B0;
    --dark-black-color: #010F1C;
    --white-color: #fff;
    --gray-color: #737887;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --lighBlue-color: #d9f1ff;
    --paragrapg-color: #4D4D4D;

    --primary-blue: #1F81B0;
    --secondary-blue: #1F81B0;
    --light-blue: #1F81B0;
    --dark-blue: #1a1a2e;
     --heading:"Bricolage Grotesque", sans-serif;
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    overflow-x: hidden;
    background: var(--white-color);
}

a{
    text-decoration: none!important;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb{
    background: var(--main-color);
}

.section-heading {
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading .container {
  max-width: 900px;
  margin: 0 auto;
}

/* ========= Subheading ========= */
.section-heading .subheading {
  position: relative;
  display: inline-block;
  color: #1F81B0;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  overflow: hidden;
  padding-bottom: 5px;
}

.sub-white {
  color: white;
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  overflow: hidden;
  padding-bottom: 5px;
}

/* ======= New Line Animation ======= */
.section-heading .subheading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #1F81B0, #1F81B0, #1F81B0);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineSlide 2.2s ease-out infinite alternate;
  border-radius: 3px;
}

.section-heading .sub-white::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, white, white, white);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineSlide 2.2s ease-out infinite alternate;
  border-radius: 3px;
}

@keyframes lineSlide {
  0% {
    transform: scaleX(0);
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ========= Main Heading ========= */
.section-heading .main-heading {
  font-size: 4.5rem;
  color: #0b0b22;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  font-family: var(--heading);
}

/* ========= Description ========= */
.section-heading .desc {
  color: #7a7a8c;
  font-size: 1.6rem;
  max-width: 600px;
  margin: 0 auto;
}

/*Start header*/
.job-away-nav {
    padding: 6rem 3%;
    position: absolute;
}

.contact-icons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgb(88 75 195 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.icon-btn i{
    font-size: 24px;
}

.icon-btn:hover{
    color: var(--white-color);
    background: var(--main-color);
}

/* Navigation Container */
.job-away-nav__container {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background-color: white;
    border-radius: 120px;
    box-shadow: 0 0.5rem 1.5rem rgb(0 55 255 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #142537;
}

/* Scrolled State */
.job-away-nav__container.scrolled {
    width: 100%;
    top: 0;
    border-radius: 0;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

/* Logo */
.job-away-nav__logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-logo img{
    height: 4.4rem;
}

.job-away-nav__logo:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.job-away-nav__links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.job-away-nav__link {
    position: relative;
    font-size: 1.6rem;
    color: var(--paragrapg-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    color: white;
}

.job-away-nav__link:hover {
    color: #4e6bff;
}

.job-away-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: #4e6bff;
    transition: width 0.3s ease;
}

.job-away-nav__link:hover::after {
    width: 100%;
}

/* Dropdown Indicator */
.job-away-nav__dropdown-indicator {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dropdown Menu */
.job-away-nav__dropdown {
    position: relative;
}

.job-away-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 0.8rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 22rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1.5rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.job-away-nav__dropdown:hover .job-away-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0.5rem);
}

.job-away-nav__dropdown:hover .job-away-nav__dropdown-indicator {
    transform: rotate(180deg);
    color: #4e6bff;
}

.job-away-nav__dropdown-item {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-away-nav__dropdown-item:hover {
    background-color: #f8f9ff;
    color: #4e6bff;
    padding-left: 2.5rem;
}

/* Search and Login */
.job-away-nav__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.job-away-nav__search {
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1100;
    position: relative;
    background: none;
    border: none;
    outline: none;
}

.job-away-nav__search:hover {
    color: #4e6bff;
    transform: scale(1.1);
}

.job-away-nav__login {
    font-size: 1.6rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.job-away-nav__login:hover {
    color: #4e6bff;
    transform: translateY(-0.1rem);
}

.job-away-nav__button {
    background: var(--main-color);
    background-color: #1F81B0;
    color: white;
    border: none;
    border-radius: 33px;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0.4rem 1rem rgba(78, 107, 255, 0.2);
}

.job-away-nav__button:hover {
    background-color: #3a56e8;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.5rem rgba(78, 107, 255, 0.3);
}

/* Search Bar */
.job-away-nav__search-container {
    position: fixed;
    top: -10rem;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    opacity: 0;
}

.job-away-nav__search-container.active {
    top: 0;
    opacity: 1;
}

.job-away-nav__search-input {
    width: 60%;
    padding: 1.5rem 2rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

.job-away-nav__search-input:focus {
    border-color: #4e6bff;
    box-shadow: 0 0 0 0.3rem rgba(78, 107, 255, 0.2);
}

.job-away-nav__search-close {
    margin-left: 1.5rem;
    font-size: 2.2rem;
    color: #777;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(0deg);
    background: none;
    border: none;
    outline: none;
}

.job-away-nav__search-close:hover {
    color: #ff4e4e;
    transform: rotate(90deg) scale(1.1);
}

/* Mobile Menu Toggle - Modern Styling */
.job-away-nav__menu-toggle {
    display: none;
    cursor: pointer;
    position: relative;
    width: 3.2rem;
    height: 2.4rem;
    z-index: 1100;
    background: none;
    border: none;
    outline: none;
    padding: 0;
}

.job-away-nav__menu-toggle .bar {
    position: absolute;
    width: 100%;
    height: 0.3rem;
    background-color: #333;
    border-radius: 0.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
}

.job-away-nav__menu-toggle .bar:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.job-away-nav__menu-toggle .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.job-away-nav__menu-toggle .bar:nth-child(3) {
    bottom: 0;
    transform-origin: left center;
}

.job-away-nav__menu-toggle.active .bar:nth-child(1) {
    transform: translateX(0.5rem) rotate(45deg) scaleX(0.8);
    background-color: #4e6bff;
}

.job-away-nav__menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-1rem);
}

.job-away-nav__menu-toggle.active .bar:nth-child(3) {
    transform: translateX(0.5rem) rotate(-45deg) scaleX(0.8);
    background-color: #4e6bff;
}

/* Mobile Menu */
.job-away-nav__mobile-actions {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}
/*End header*/
.section-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem; margin-bottom: 5rem;
}

.section-header__left {
}

.section-header__badge {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a73e8;
  border: 1px solid #1a73e8;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  background-color: #eaf3ff;
}

.section-header__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #111;
  margin: 0;
}

.section-header__btn {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #1e68f1, #001f75);
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-header2{
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.section-header2 h2{
    color: var(--white-color);
}

.section-header2 .discover-badge{
    background: #010e37;
    color: var(--white-color);
    border-color: rgb(18 104 251);
}

.section-header2 p{
    font-size: 1.8rem;
    color: rgb(255 255 255 / 70%); margin: 0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

/*Start home section*/
/*cursor design*/
/* REVISED Cursor System - Now Visible */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    /* Removed mix-blend-mode for better visibility */
    box-shadow: 0 0 0 2px var(--white); /* White border ensures visibility */
    transition: 
        width 0.3s ease,
        height 0.3s ease,
        background 0.3s ease;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white fill */
    transition: 
        transform 0.15s ease-out,
        width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border 0.3s ease;
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--secondary-blue);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.25s linear;
    box-shadow: 0 0 0 1px var(--white); /* White border */
}

/* Cursor States */
.cursor.hover {
    width: 16px;
    height: 16px;
    background-color: var(--secondary-blue);
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-width: 1px;
    border-color: rgba(131, 56, 236, 0.5);
    background-color: rgba(255, 255, 255, 0.2);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.9);
}

.cursor-ring.click {
    transform: translate(-50%, -50%) scale(0.8);
    border-color: var(--secondary-blue);
    background: rgba(131, 56, 236, 0.1);
}

/* Hide on touch devices */
@media (pointer: coarse) {
    .cursor, .cursor-ring, .cursor-dot {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/*Start home section*/
.home-section{
    padding: 6rem 5%;
    width: 100%;
    min-height: 100vh;
    background: url(../img/home-bg-faded-eagle.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex; align-items: center;
}

.img-section img{
    width: 100%; height: auto;
}

.home-content{
    max-width: 700px;
    margin: auto; text-align: center;
    margin-top: 8rem;
}

.home-content h1{
    font-size: 6rem;
    font-weight: 800;
    color: var(--dark-black-color);
    font-family: var(--heading);
    margin: 0; 
}

.home-content h5{
    font-size: 1.4rem;
    font-weight: 400;
    color: #121212;
    background: transparent;
    display: inline-flex;
    padding: 1rem 2rem;
    border: 1px solid #1663ef24;
    backdrop-filter: blur(14px);
    margin: 0 auto;
    border-radius: 33px;
    margin-bottom: 1rem;
}

.home-content h1 span{
    font-size: 6rem;
    font-weight: 800;
    color: var(--main-color);
    font-family: var(--heading);
}

.home-content p{
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--gray-color);
    margin: 0; padding: 1rem 0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.home-btns{
    display: inline-flex;
    align-items: center;
    gap: 1rem; border-radius: 100px;
    height: 78px;
        background: #ffffff5c;
    padding: 0 1rem;
    width: 50%;
    backdrop-filter: blur(31px);
    max-width: 580px;
    border: 1px solid #fff;
    background: var(--white-color);
}

.home-btns a{
    width: 100%;
    height: 60px;
    border-radius: 33px; font-size: 1.8rem; font-weight: 500;
    color: #121212; padding: 0 2rem;
    display: inline-flex; align-items: center; justify-content: center;
    gap: .6rem; white-space: nowrap; font-family: var(--heading);
}

.home-btns a:nth-child(1){
    /* background: var(--main-color); */
    background-color: #1F81B0;
    color: var(--white-color);
}

.home-btns a img{
    height: 22px;
}
/*End home section*/

/*Start success section*/
.success-section{
    padding: 2rem 3%;
    display: grid;
    grid-row-gap: 1.5rem;
    border-radius: 20px;
    transform: translateY(-50px);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    width: 95%; margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    background: rgba(255, 255, 255, 0.04);
    background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 10px 30px rgba(1, 15, 28, 0.1);
    backdrop-filter: blur(8px);
}

.success-section .success-section-card{
    display: flex; align-items: center;
    gap: 1.5rem;
}

.success-section-card-img{
    color: var(--white-color);
/*    background-image: linear-gradient(130deg, #6685ff 0%, #dfe5ff 115%);*/
/*    box-shadow: 0 4px 20px #d0d0d0;*/
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
/*    border: 2px solid #a8c7ff;*/
    transition: all .41s ease-in-out;
}

/*.success-section-card-img2{
    border: 2px solid #FF9D95;
    background-image: linear-gradient(130deg, #F57064 0%, #FFD0CC 115%);
}

.success-section-card-img3{
    background-image: linear-gradient(130deg, #F480D4 0%, #FFD3F3 115%);
    border: 2px solid #FBA3E3;
}

.success-section-card-img4{
    background-image: linear-gradient(130deg, #45C8C2 0%, #B6F7F4 115%);
    border: 2px solid #6CE1DC;
}

.success-section-card-img5{
    background-image: linear-gradient(130deg, #FFA41F 0%, #FFE3BB 115%);
    border: 2px solid #FEC269;
}*/

.success-section-card-img img{
    width: 100%;
}

.success-section-card-text h4{
    margin: 0;
    font-size: 3rem;
    color: var(--main-color);
    font-weight: 800;
    font-family: var(--heading);
}

.success-section-card-text p{
    margin: 0;
    font-size: 1.6rem;
    color: var(--gray-color);
}
/*End success section*/

/*Start how work section*/
.secure-pay-section{
    padding: 4rem 3%;
    background: #f4f7fc;
}

.secure-pay-section .sps-row { row-gap: 2.4rem; }

.secure-pay-section .sps-card {
  position: relative;
  background: #ffffff;
  border-radius: 2.4rem;
  box-shadow: 0 0.6rem 2.4rem rgba(15, 23, 42, 0.06);
  padding: 3.2rem 3rem 5.6rem;
  height: 100%;
/*  display: flex;*/
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.secure-pay-section .sps-card:hover .qr-code-icon{
    opacity: .3;
}

.sps-active .qr-code-icon{
    opacity: .1;
}

.qr-code-icon{
    position: absolute;
    top: 19px;
    left: 0;
    width: 65px;
}
/* Background animation layer */
.secure-pay-section .sps-card::before {
  content:"";
  position:absolute;
  inset:0;
  background: #584bc3;
  z-index:0;
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center ;
  transition: transform 0.6s ease;
}

/* Text + icon above */
.secure-pay-section .sps-icon,
.secure-pay-section .sps-title,
.secure-pay-section .sps-desc,
.secure-pay-section .sps-cta {
  position: relative;
  z-index: 1;
}

.sps-icon img{
    width: 100px;
}

/* Card hover/active lift */
.secure-pay-section .sps-card:hover,
.secure-pay-section .sps-card.sps-active {
  box-shadow: 0 1.2rem 3.2rem rgba(15,23,42,0.15);
}
.secure-pay-section .sps-card:hover::before,
.secure-pay-section .sps-card.sps-active::before {
  transform: scale(1);
}

/* Icon badge */
.secure-pay-section .sps-icon {
  margin: auto;
  margin-bottom: 2rem;
  transition: background 0.5s ease, transform 0.5s ease;
}
.secure-pay-section .sps-icon i,
.secure-pay-section .sps-icon img {
  font-size: 2.6rem;
  color:#1e293b;
  transition: color 0.5s ease, transform 0.5s ease;
}

/* Icon hover/active */

.secure-pay-section .sps-card:hover .sps-icon i,
.secure-pay-section .sps-card.sps-active .sps-icon i {
  color:#fff;
  transform: scale(1.1);
}

/* Title + desc */
.secure-pay-section .sps-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: var(--heading);
  transition: color 0.5s ease;
}
.secure-pay-section .sps-desc {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #334155;
  transition: color 0.5s ease;
}

.secure-pay-section .sps-card:hover .sps-title,
.secure-pay-section .sps-card.sps-active .sps-title,
.secure-pay-section .sps-card:hover .sps-desc,
.secure-pay-section .sps-card.sps-active .sps-desc {
  color:#fff;
}

/* Bottom arrow button */
.secure-pay-section .sps-cta {
  position: absolute;
  bottom: 1.6rem; left:50%;
  transform: translateX(-50%);
  width: 4.6rem; height: 4.6rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #e9f0ff;
  color:#1d4ed8;
  transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease;
}
.secure-pay-section .sps-cta i { font-size: 1.6rem; transition: transform 0.5s ease; }

.secure-pay-section .sps-card:hover .sps-cta,
.secure-pay-section .sps-card.sps-active .sps-cta {
  background: rgba(255,255,255,0.2);
  color:#fff;
  transform: translateX(-50%) translateY(-0.2rem);
}
.secure-pay-section .sps-card:hover .sps-cta i,
.secure-pay-section .sps-card.sps-active .sps-cta i {
  transform: translateX(0.2rem);
}

.client-logo-section{
    padding: 4rem 3%;
}

.client-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.client-slider-track {
  display: flex;
  width: calc(200px * 50); /* adjust based on logos */
  animation: scrollSlider 25s linear infinite;
}

.client-slider-item {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.client-slider-item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.client-slider-item img:hover {
  transform: scale(1.1);
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate track for seamless loop */
.client-slider-inner {
  display: flex;
}

/*End how work section*/

/* start why choose section */
.why-choose-section {
  padding: 6rem 3%;
  background: url(../img/why-choose-bg2.jpg);
  background-size: cover; background-position: center;
  width: 100%; position: relative;
}

.why-choose-section .row{
    position: relative;
    z-index: 2;
}

.why-choose-section .section-heading h2{
    color: var(--white-color);
}

.why-choose-section .section-heading p{
    color: var(--white-color);
    opacity: .7;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Card Common Style */
.why-choose-section-card {
  padding: 4rem 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: none; z-index: 2;
}

.why-choose-section-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/* Backgrounds (same to same as screenshot) */
.bg-one {
  background: linear-gradient(180deg, #e6dcf6 0%, #e8e3f8 100%);
}

.bg-two {
  background: linear-gradient(180deg, #e8e4f9 0%, #f8f7fc 100%);
}

.bg-three {
  background: linear-gradient(180deg, #fef9e6 0%, #fff9ec 100%);
}

.bg-four {
  background: linear-gradient(180deg, #fde9ea 0%, #fff3f3 100%);
}

/* Icon */
.why-choose-section-icon {
  font-size: 4rem;
  color: #6c63ff;
  background: #fff;
  border-radius: 1.2rem;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.08);
}

.why-choose-section-icon img{
    width: 5rem;
}

/* Title */
.why-choose-section-title {
  font-size: 2.4rem;
    font-weight: 700;
    color: #002855;
    margin-bottom: 1.2rem;
    font-family: var(--heading);
}

/* Description */
.why-choose-section-desc {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.8;
  max-width: 90%;
  margin: 0 auto;
}
/*end why choose section*/

/*Start solution section*/
.solution-section {
    padding: 6rem 3%;
    background: #ffffff;
}

.solution-section-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.solution-section-icon {
    font-size: 3rem;
    color: #4a5568;
}

.solution-section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.solution-section-subtitle {
    font-size: 1.6rem;
    color: #718096;
    margin-bottom: 4rem;
    padding-left: 4.5rem;
}

.solution-section-cards {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.solution-section-card {
    flex: 1;
    min-height: 45rem;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-section-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-section-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-section-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    color: #ffffff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-section-card-heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-section-card-text {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
}

.solution-section-card.solution-section-active {
    flex: 3;
}

.solution-section-card.solution-section-active .solution-section-card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85));
}

.solution-section-card.solution-section-active .solution-section-card-text {
    opacity: 1;
    transform: translateY(0);
    max-height: 50rem;
}
/*End solution section*/

/*Start traders section*/
.traders-type-section {
    background: url(../img/traders-section-bg.jpg);
    background-size: cover; background-position: center;
    width: 100%; background-attachment: fixed;
    padding: 6rem 3%;
}

.traders-type-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.traders-type-section-title h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.traders-type-section-title p {
    font-size: 1.6rem;
    color: #e0e0e0;
}

.traders-type-card {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 3rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.traders-type-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

.traders-type-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 25rem;
    overflow: hidden;
    background: #f0f0f0;
}

.traders-type-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.traders-type-card:hover .traders-type-card-image {
    transform: scale(1.1);
}

.traders-type-card-overlay-text {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    backdrop-filter: blur(1rem);
}

.traders-type-card-icon {
    position: absolute;
    bottom: 13px;
    left: 2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    display: flex;
    z-index: 10;
    outline: 1px solid #ffffff5c;
    outline-offset: 5px;
    background: white;
    align-items: center;
    justify-content: center;
}

.traders-type-card-icon img {
    width: 4rem;
}

.traders-type-card-content {
    padding: 3.5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 176px;
}

.traders-type-card-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: var(--heading);
    margin-bottom: 1rem;
}

.traders-type-card-description {
    font-size: 1.6rem;
    color: #7f8c8d;
    line-height: 1.8;
    flex: 1;
}

.traders-type-card-bg-icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 8rem;
    height: 8rem;
    pointer-events: none;
}

.traders-type-card-bg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*End traders section*/

/*Start review section*/
.review-section {
    padding: 6rem 3%;
    background: url(../img/review-section-bg.jpg);
    background-size: cover; background-position: center;
    width: 100%;
}

.rating-stars { display:inline-flex; gap:0.4rem; align-items:center; margin-bottom:1.5rem }
.rating-stars i { font-size:1.2rem; color:#FFB703; /* golden */ }

.review-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.review-section-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    max-width: 65rem;
    font-family: "Bricolage Grotesque", sans-serif;
}

.review-section-navigation {
    display: flex;
    gap: 1rem;
}

.review-section-nav-btn {
    width: 4.5rem;
    height: 4.5rem;
    border: 1.5px solid #d0d0d0;
    background-color: white;
    border-radius:  12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    color: #000;
}

.review-section-nav-btn:hover {
    background-color: var(--main-color);
    border-color: #fff;
    color: #ffffff;
}

.review-section-carousel-wrapper {
    position: relative;
}

.review-section-carousel {
    overflow: visible !important;
}

.review-section-carousel .owl-item {
    display: flex;
}

.review-section-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 22px;
    margin: 0 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    transition: all 0.4s ease;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

.review-section-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
    transform: translateY(-0.8rem);
}

.review-section-quote-icon {
    font-size: 10rem;
    color: var(--main-color);
    margin-bottom: 1.4rem;
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1;
    font-style: italic;
    position: absolute;
    right: 20px;
    bottom: 0;
    opacity: .1;
}

.review-section-text {
    font-size: 1.5rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

.review-section-author {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.review-section-author-image {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-section-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.review-section-card:hover .review-section-author-image img {
    transform: scale(1.15);
}

.review-section-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.review-section-author-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
}

.review-section-author-title {
    font-size: 1.5rem;
    color: #777777;
}

.owl-dots {
    text-align: center;
    margin-top: 4rem;
}

.owl-dot {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #d0d0d0;
    border-radius: 50%;
    margin: 0 0.6rem;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background-color: #000000;
    width: 0.8rem;
    height: 0.8rem;
}

.owl-stage-outer {
    overflow: visible !important;
}
/*End review section*/

/* FAQ Section Styling */
.faq-section {
  padding: 6rem 3%;
  background: #fff;
  background: url(../img/circle-section-bg.png);
  background-size: cover; background-position: center;
  width: 100%;
}

.faq-section .faq-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  color: #222;
}

/* Marquee Section */
.marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 3rem 0;
}

/* Scrolling Text */
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeMove 15s linear infinite;
}

.marquee-text {
  font-size: 9rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  margin: 0 3rem;
  flex-shrink: 0;
}

/* Absolute Positioned Icons */
.marquee-icon {
  position: absolute;
  font-size: 3rem;
}

.marquee-icon.smile {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.marquee-icon.thumb {
  bottom: -10px;
  right: 20%;
}

@keyframes marqueeMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

/* Accordion Styling */
.faq-section .accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 0.8rem;
  border: 1px solid #dadfe7;
}

.faq-section .accordion-button {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  border-radius: 0.8rem !important;
  padding: 1.7rem 2rem;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #000;
  background: #f9f9f9;
  box-shadow: none;
}

/* Accordion Body */
.faq-section .accordion-body {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
  padding: 1.5rem 2rem 2rem 2rem;
}

/* Custom Icon Styling */
.faq-section .accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067"; /* Plus icon */
  background-image: none !important;
  font-size: 1.6rem;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "\f068"; /* Minus icon */
}
/*end faq section*/

/*Start footer section*/
.footer-main-section {
  background-color: #142537;
  color: #fff;
  padding: 6rem 3%;
}

.footer-header{
    text-align: center;
}

.get-btn {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1rem 1rem;
    height: 55px;
    border-radius: 14px;
    display: inline-flex;
    background: var(--main-color);
    color: var(--white-color);
    align-items: center;
    padding-left: 2rem;
    border: none;
    font-family: "Bricolage Grotesque", sans-serif;
    gap: 0.6rem;
    transition: all 0.3s ease;
    &:hover{color: var(--white-color);}
    position: relative; z-index: 1;
    margin: auto;
}

.get-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--main-color);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: left center; /* yaha se animation start hogi */
  transition: transform 0.7s ease;
  border-radius: inherit; border-radius: 14px!important;
}

/* Hover effect */
.get-btn:hover::before {
  border-radius: 14px;
  transform: scaleY(1);
}

.get-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    height: 40px;
    width: 40px;
    border-radius: 10px;
    color: var(--main-color);
    margin-left: 1.2rem;
}

.fixed-btn-dashboard{
    position: fixed;
    bottom: 2px;
    transform: translate(-50%, -50%);
    left: 50%;
    background: #1d1a39;
    display: none;
    z-index: 111;
}

.footer-main-section .footer-heading {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--heading);
  margin-bottom: 1rem;
}

.footer-main-section .footer-subtext {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.8em;
  color: white;
  opacity: .7;
}

.footer-social{
    display: inline-flex;
    align-items: center;
    gap: 6px; flex-wrap: wrap;
}

.footer-main-section .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background-color: #2cc55d;
  color: #fff;
  border: none;
  border-radius: 5rem;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  margin: 0 auto 6rem auto;
  transition: all 0.3s ease;
}

.footer-main-section .contact-btn:hover {
  background-color: var(--main-color);
  transform: translateY(-0.2rem);
}

.footer-main-section .footer-logo img {
  max-width: 150px;
  margin-bottom: 1.5rem;
}

.footer-main-section .footer-logo p {
  font-size: 1.4rem;
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-main-section .footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  margin-right: 0.8rem;
  transition: 0.3s;
  text-decoration: none;
}

.footer-main-section .footer-social a:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.footer-main-section .footer-col h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-main-section .footer-col a {
  display: block;
  font-size: 1.4rem;
  color: #cfcfcf;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.footer-main-section .footer-col a:hover {
  color: var(--main-color);
}

.footer-main-section .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 1.3rem;
  color: #cfcfcf;
}

.footer-main-section .footer-bottom a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-size: 1.3rem;
}

.footer-main-section .footer-bottom a:hover {
  color: var(--main-color);
}
/*End footer section*/

/* Fixed Contact Buttons Container */
.fixed-contact-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Button Base Style */
.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

/* Phone Button */
.phone-btn {
    background: #5B51D8;
}

.phone-btn:hover {
    background: #4840B8;
}

/* Icon SVG Styles */
.contact-btn i {
    font-size: 2.5rem;
    color: var(--white-color);
}







/*Media quaries*/
@media screen and (max-width: 992px){
html{
    font-size: 55%;
}

    .discover-badge {
        justify-content: center;
    }

    .job-away-nav__links {
        gap: 2rem;
    }

}

@media screen and (max-width: 992px){ 
    .solution-section-heading {
        font-size: 2.6rem;
    }

    .solution-section-subtitle {
        font-size: 1.4rem;
        padding-left: 0;
    }

    .solution-section-cards {
        flex-wrap: wrap;
    }

    .solution-section-card {
        flex: 1 1 calc(50% - 1rem);
        min-height: 35rem;
    }

    .solution-section-card.solution-section-active {
        flex: 1 1 100%;
    }

    .home-content{
        max-width: 100%;
    }
}

@media screen and (max-width: 992px){   
   .job-away-nav__container {
        padding: 1.5rem 2rem;
    }

    .job-away-nav__menu-toggle {
        display: block;
    }

    .job-away-nav__links {
        position: fixed;
        top: 8rem;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-2rem);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .job-away-nav__links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .job-away-nav__dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
        margin-left: 1.5rem;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        min-width: auto;
        transform: none;
        background-color: #f9f9f9;
        border-radius: 0.8rem;
    }

    .job-away-nav__dropdown.active .job-away-nav__dropdown-menu {
        opacity: 1;
        height: auto;
        visibility: visible;
        transform: none;
        padding: 1rem 0;
    }

    .job-away-nav__dropdown.active .job-away-nav__dropdown-indicator {
        transform: rotate(180deg);
        color: #4e6bff;
    }

    .job-away-nav__container.scrolled {
        top: 0;
    }

    .job-away-nav__container.scrolled + .job-away-nav__links {
        top: 7rem;
    }

    .job-away-nav__actions {
        display: none;
    }

    .job-away-nav__mobile-actions {
        display: flex;
    }

    .job-away-nav__search {
        font-size: 2rem;
    }

    .job-away-nav__link {
        width: 100%;
        padding: 1rem 0;
    }

    .job-away-nav__link::after {
        display: none;
    }

    .fixed-btn-dashboard{
        display: flex;
    }

    .footer-main-section .footer-bottom {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 650px){ 
    .home-text h2{
        font-size: 5remn;
    }

    .job-away-nav__mobile-actions {
        gap: 1.5rem;
    }

    .job-away-nav__search-input {
        width: 80%;
    }

    .home-btns{
        max-width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .home-btns{
        height: auto;
        background: transparent;
        border-radius: 0;
        border: none;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-content h1 span{
        font-size: 5rem;
    }

    .success-section .success-section-card{
        border-bottom: 1px solid #eceaff;
    }
}

/* Overlay for closing menu */
.job-away-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(0.3rem);
}

.job-away-nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

.solution-section-icon {
    font-size: 2.5rem;
}

.solution-section-heading {
    font-size: 2.2rem;
}

.solution-section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.solution-section-card {
    min-height: 30rem;
}

.solution-section-card-content {
    padding: 2rem;
}

.scrollmenu {
  overflow: auto;
  white-space: nowrap;
}

.scrollcontent {
  display: inline-block;
}

.scrolling-text-section {
  overflow: hidden;
  width: 100%;
  background-color: #f8f9fa;
  border-top: 1px solid #ccc;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  background-color: #142537;
}

.scrolling-text-track {
  display: flex;
  width: 100%;
  white-space: nowrap;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%; /* Start off-screen */
  animation: scrollText 50s linear infinite; 
  font-size: 16px;
  color: white;
  font-size: 20px;
  font-weight: normal;
}

.form-logo {
  height: 100px;
  width: 100px;
}

.modal-content {
  background-color: #142537;
  color: white;
  border: none;
  border-radius: 10px;
}

.modal-header {
  border-bottom: 1px solid #2c2c2c;
}

.modal-title {
  font-weight: 600;
}

.btn-close {
  filter: invert(1);
}

.form-label {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.form-control {
  background-color: transparent;
  border: 1px solid #444;
  color: #fff;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  background-color: transparent;
  color: white;
  border-color: #1F81B0;
  box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.btn-submit {
  background-color: #1F81B0;
  border: none;
}

.btn-submit:hover {
  background-color: #574fd3;
}

select.form-control {
  /* background-color: #343a40; */
  color: #fff;
  border: 1px solid #495057;
}
select.form-control option {
  background-color: #343a40;
  color: #fff;
}

.f15 {
  font-size: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

}

@media screen and (max-width: 1200px){
    .solution-section-heading {
        font-size: 3rem;
    }

    .solution-section-card {
        min-height: 40rem;
    }

    .solution-section-card-heading {
        font-size: 2.2rem;
    }

    .solution-section-card-text {
        font-size: 1.4rem;
    }

    .success-section{
        transform: translateY(0);
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px){
    .solution-section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .solution-section-heading {
        font-size: 2.4rem;
    }

    .solution-section-cards {
        gap: 1.5rem;
    }

    .solution-section-card {
        flex: 1 1 100%;
        min-height: 32rem;
    }

    .solution-section-card-content {
        padding: 2.5rem;
    }

    .solution-section-card-heading {
        font-size: 2rem;
    }

    .contact-btn{
        width: 36px;
        height: 36px;
    }

    .contact-btn i{
        font-size: 1.8rem;
    }

    .fixed-contact-buttons{
        gap: 8px;
    }

    .home-section{
        min-height: auto;
    }
}

