* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif !important;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #27286b, #000);
    color: #fff;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(47, 143, 131, 0.0);
    /* Transparent background */
    color: #fff;
    /* backdrop-filter: blur(10px);
    position: fixed; */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.nav-border {
    width: 94%;
    margin: 0 auto;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    /* or any color you like */
}

.logo img {
    max-width: 34vh;
}

.nav-text a {
    font-size: 20px;
    font-weight: 600;
    padding: 12px 24px;
    cursor: pointer;
    background-color: #282974;
    border: 1px solid transparent;
}

.nav-text a:hover {
    color: #fff;
    background-color: #f0a500;
    padding: 12px 24px;
    border-radius: 0px !important;
    border: 1px solid transparent;
}

.nav-btn-mobile_view_only{
    display: none;
}

/* main section */
.main_section {
    width: 100%;
    margin: 0 auto;
}

.hero_section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: start;
    width: 95%;
    margin: 0 auto;
}

.content-div {
    margin-top: 60px;
    margin-bottom: 60px;
}

.content-div p {
    font-weight: 600;
}

.hero_section h1 {
    font-size: 2.5em;
    font-weight: 800;
    font-style: normal;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    line-height: 46px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero_section p {
    font-size: 1.2em;
    font-weight: 600;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    letter-spacing: 1px;
}


.gif-div {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
}

.gif-div video {
    width: 100%;
    display: block;
    border-radius: 10px;
    /* optional */
}

.gif-div img {
    width: 100%;
    height: 350px;
    display: block;
    border-radius: 10px;
    /* optional */
}


/* progress section */
.progress_section {
    width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-top: 80px;
}

.progress_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 4px;
    margin-top: 40px;
    margin-bottom: 50px;
    width: 100%;
}

.progress_sub {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 120px;
    max-width: 260px;
    position: relative;
    margin: 0 10px;
}

/* vertical line on right side */
.progress_sub::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -10px;
    width: 1px;
    height: 80%;
    background-color: rgba(255, 255, 255, 0.3);
}

/* hide the line on the last item */
.progress_sub:last-child::after {
    display: none;
}

.progress-div h2 {
    font-size: 2.3em;
    font-weight: 700;
    font-style: normal;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    line-height: 46px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.progress-header h3 {
    font-size: 2.5em;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    line-height: 46px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 14px;
    display: inline-block;
    background: linear-gradient(to right, #f0a500 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: white;
    /* default white text */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* important */
}

/* Animation class */
.progress-header h3.animate {
    animation: revealLeftToRight 1s ease forwards;
}

@keyframes revealLeftToRight {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.progress-text p {
    font-size: 1.1em;
    font-weight: 700;
    font-style: normal;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.profile_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 70px;
    width: 100%;
    margin: 0 auto;
}

.profile_sub {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 110px;
    max-width: 350px;
    position: relative;
    margin: 0 10px;
}

/* vertical line on right side */
.profile_sub::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -16px;
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.3);
}

/* hide the line on the last item */
.profile_sub:last-child::after {
    display: none;
}

.profile_sub img {
    width: 310px;
    height: 310px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0a500;
}

.profile_text h3 {
    font-size: 2.4em;
    font-weight: 700;
    font-style: normal;
    color: #f0a500;
    font-kerning: none;
    text-decoration: none;
    line-height: 46px;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 10px;
}

.profile_text p {
    font-size: 1.1em;
    font-weight: 700;
    font-style: normal;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.collabrate_div h2 {
    font-size: 2.4em;
    font-weight: 700;
    font-style: normal;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    line-height: 46px;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 24px;
}

.collabrate_div p {
    font-size: 1.5em;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    line-height: 38px;
    margin-top: 20px;
    margin-bottom: 14px;
}

.collabrate_span {
    text-decoration: underline;
    font-weight: 600;
    color: #f0a500;
}

/* experience div */
.Experience_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #2b2d6a, #66666b);
    color: #fff;
    gap: 30px;
    flex-wrap: wrap;
    /* responsive stacking on smaller screens */
    border: 2px solid #fff;
    /* Light border line */
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.exp-text {
    flex: 1 1 50%;
    font-size: 1.1em;
    text-align: right;
    margin-right: 30px;
    margin-bottom: -90px;
}

.exp-text h3 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.8em;
    line-height: 1.3;
}

.exp-text h3 span{
     color: #f0a500;
}

.mobile_view_only {
    display: none;
}

.exp-text .btn {
    padding: 12px 64px 12px 41px;
    font-size: 1em;
    background-color: #2b2d6a;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0px !important;
    font-weight: bold;
}

.exp-text i {
    position: absolute;
    margin: 2px 6px 0px 6px !important;
}

.exp-text .btn:hover {
    background-color: #f0a500;
}

.exp-img {
    flex: 1 1 40%;
    text-align: left;
    margin-bottom: 50px;
}

.exp-img img {
    max-width: 70%;
    height: auto;
}

.tenant_div p {
    font-size: 1.5em;
    font-weight: 400;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    line-height: 38px;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* tenant image div */
.tenant_img_div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 50px;
    width: 100%;
}

.tenant_img_sub {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 120px;
    max-width: 370px;
    position: relative;
    margin: 0 10px;
}

.tenant_img_div:nth-child(1) {
    position: relative !important;
}

.up_arrow {
    position: absolute;
    width: 18%;
    margin-top: 0;
    margin-left: 17%;
}

.tenant_img_div:nth-child(2) {
    position: relative !important;
}

.down_arrow {
    position: absolute;
    width: 15%;
    margin-bottom: 0px;
    margin-left: 57%;
    margin-top: 180px;
}

.tenant_img_sub img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0a500;
}

.tenant_img_text h3 {
    font-size: 1.6em;
    font-weight: 700;
    font-style: normal;
    color: #f0a500;
    font-kerning: none;
    text-decoration: none;
    line-height: 36px;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 14px;
    text-align: center;
}

/* information div */
.inform_collect {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    width: 100%;
    background: linear-gradient(to right, #2d2e62, #282974);
    padding: 0 14px;
    gap: 40px;
    /* Reduced gap between content and image */
    position: relative;
    overflow: visible;
    border-radius: 0px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}

.inform_text {
    flex: 0 0 auto;
    max-width: 50%;
    z-index: 1;
}

.inform_text h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
}

#is_fwd {
    color: #f0a500;
}

.inform_text ul li {
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    /* Add some padding for better alignment */
    position: relative;
}

.inform_text p {
    font-size: 1.1em;
    line-height: 1.6;
}

.inform_image {
    flex: 0 0 auto;
    text-align: center;
    z-index: 0;
}

.inform_image img {
    height: 520px;
    /* Taller image */
    object-fit: contain;
    max-width: 100%;
}

/* power div */
.power_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 30px;
    flex-wrap: wrap;
    /* responsive stacking on smaller screens */
    width: 94%;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 30px;
}

.power-text {
    flex: 1 1 50%;
    font-size: 1.2em;
    text-align: right;
    margin-right: 30px;
}

.power-text h3 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 2.7em;
    line-height: 1.2em;
    margin-top: 50px;
}

.giving_mobile_only {
    display: none;
}

.power-text .dekstop_view_only {
    display: block;
}

.power-text .mobile_view_only {
    display: none;
}

.power-text span {
    font-weight: 700;
    color: #f0a500;
}

.power-img {
    flex: 1 1 40%;
    text-align: left;
}

.power-img img {
    max-width: 50%;
    height: auto;
}

/* support div */
.support_div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.support_div_sub {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 120px;
    max-width: 300px;
    position: relative;
    text-align: start;
}

.support_div_sub img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 12px;
}

.support_div_sub button {
    padding: 8px 28px;
    font-size: 1em;
    background-color: #00bf63;
    color: white;
    border: none;
    cursor: auto !important;
    border-radius: 0px !important;
}

.support_div_sub button:focus:not(:focus-visible) {
    outline: none;
    /* Remove focus outline for non-keyboard users */
    background-color: #00bf63;
    color: white;
}

.support_div_sub button:hover {
    background-color: #00bf63;
    color: white;
}

.support_div_sub .second {
    padding: 9px 28px;
    font-size: 1em;
    background-color: transparent;
    border: 2px solid #fff;
    color: white;
    cursor: auto;
    border-radius: 0px !important;
}

.support_div_sub .second:hover {
    border: 2px solid #fff;
    background-color: transparent;
    color: white;
}

.support_div_sub .second:focus:not(:focus-visible) {
    border: 2px solid #fff;
    background-color: transparent;
    color: white;
}

.support_div_sub .third {
    padding: 8px 28px;
    font-size: 1em;
    background-color: #ae1e1e;
    color: white;
    border: none;
    cursor: auto;
    border-radius: 0px !important;
}

.support_div_sub .third:hover {
    background-color: #ae1e1e;
    color: white;
}

.support_div_sub .third:focus:not(:focus-visible) {
    background-color: #ae1e1e;
    color: white;
}

.support_div_sub p {
    font-size: 0.9em;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 240);
    font-kerning: none;
    text-decoration: none;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 14px;
    width: 100%;
    text-align: start;
    margin: 14px auto;
}


/* showcase div */
.showcase_div {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: hidden;
}

.showcase_sub {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 80px;
    border-radius: 12px;
    width: 55%;
    height: 340px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0 20px;
}

.showcase_text_sub p {
    color: white !important;
    -webkit-text-stroke: 0.5px #f0a50091 !important;
    margin-bottom: -5px;
    text-transform: uppercase;
    font-size: 0.8em;
}


/* Odd blocks: left-aligned image */
.showcase_sub:nth-child(odd) {
    flex-direction: row;
    background-image: url("assets/blue-panel-1.webp");
    margin-left: 0;
    margin-right: auto;
}

/* Even blocks: right-aligned image */
.showcase_sub:nth-child(even) {
    flex-direction: row-reverse;
    background-image: url("assets/blue-panel-2.webp");
    margin-right: 0;
    margin-left: auto;
}

.showcase_sub img {
    width: 290px;
    height: 290px;
    border-radius: 50%;
    object-fit: cover;
}

.showcase_text {
    text-align: center;
    max-width: 240px;
}

.showcase_text h2 {
    font-size: 4em;
    font-weight: 700;
    color: #f0a500;
    margin: 14px 0;
}

.showcase_text h3 {
    font-size: 1em;
    font-weight: 700;
    color: #f0a500;
    line-height: 19px;
    text-transform: uppercase;
    margin: 14px 0;
}

/* testimonmial */
.people_say {
    width: 88%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 20px;
    
}
.agent_say{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 0px 20px;
}
.tenant_say{
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, #2d2e62, #282974); /* Fallback background */
    background-image: url("assets/people_say_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
}

.people_say h2 {
    font-size: 3em;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 40px;
}

/* Tenant headings styling to match agent headings */
.tenant-heading h2 {
    font-size: 3em;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 40px;
}

/* Reactive Maintenance Desk horizontal infinite scroll container */
.scrolling-track-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    margin: 0 auto;
}

.scrolling-track {
    display: flex;
    animation: scroll-left linear infinite;
    width: max-content;
    align-items: center;
    justify-content: flex-start;
    animation-play-state: running;
    gap: 12px;
}

.scrolling-track-wrapper:hover .scrolling-track {
    animation-play-state: paused;
}

.carousel-container {
    max-width: 1300px;
    margin: 50px auto;
    
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars i {
  color: gold;
  margin-left: 2px;
  font-size: 16px;
}
.carousel-track {
    display: flex;
      animation: scroll-left 20s linear infinite;
      margin-top: 55px;
}
.carousel-agent-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.carousel-agent-track {
  position: relative;
  height: 100%;
}

.carousel-agent-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-agent-card img {
  max-width: 80px;
  margin-top: 10px;
  border-radius: 50%;
}

.carousel-agent-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Smooth continuous horizontal scroll animation - seamless infinite loop */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Reactive Maintenance Desk review cards for horizontal scroll */
.scrolling-track .review-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 20px 24px;
    border-radius: 16px;
    width: 350px;
    min-width: 350px;
    min-height: 140px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-right: 20px;
    position: relative;
}

.scrolling-track .review-card .review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.scrolling-track .review-card .review-header h4 {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
    color: #f0a500;
}

.scrolling-track .review-card .stars {
    color: #f0a500;
    font-size: 18px;
    display: flex;
    gap: 2px;
}

.scrolling-track .review-card .review-text {
    margin-top: 12px;
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 0px !important;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.9;
    text-align: justify;
}

.carousel-card {
    flex: 0 0 auto;
    width: 540px;
    min-width: 540px;
    height: 130px;
    margin: 15px;
    padding: 15px;
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 30%);
    text-align: start;
}


.carousel-card img {
    max-width: 20vh;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.reviews-section {
    width: 100%;
    max-width: 100%;
    position: relative;
    min-height: 360px;
}

.reviews-section .review-card {
    padding: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 320px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.reviews-section .review-card.active {
    opacity: 1;
    z-index: 1;
}

.review-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
     color: #f0a500;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-role {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 10px;
}

.client-logo img {
    width: 110px;
    height: auto;
}

.carousel-card h3 {
    color: #f0a500;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 10px;
}


.carousel-card span {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 10px;
}


.carousel-card p {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
    margin-top: 10px;
}
.carousel-agent-card p {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
    margin-top: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.carousel-dots .dot {
    height: 10px;
    width: 18px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 22px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots .dot:last-child {
    height: 10px;
    width: 38px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 22px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots .dot.active {
    background-color: #fff;
}


.carousel-agent-dots {
    text-align: center;
    margin-top: 20px;
}

.carousel-agent-dots .dot {
    height: 10px;
    width: 18px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 22px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-agent-dots .dot:last-child {
    height: 10px;
    width: 38px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 22px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-agent-dots .dot.active {
    background-color: #fff;
}

@media (min-width: 768px) {
    .carousel-card {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* reclaim div */
#stand_out {
    width: 94% !important;
    margin: 0 auto;
}

.stand_header {
    font-size: 1.7em;
    font-weight: 700;
    font-style: normal;
    color: #fff !important;
    font-kerning: none;
    text-decoration: none;
    line-height: 46px;
    text-transform: uppercase;
    text-align: center;
}

.stand_para {
    font-size: 1.4em;
    font-weight: 300;
    font-style: normal;
    color: #fff !important;
    font-kerning: none;
    text-decoration: none;
    line-height: 38px;
    margin-top: 10px;
    text-align: center;
}

.stand_para span {
    font-weight: 700;
    color: #f0a500;
}

.reclaim_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    background: linear-gradient(to right, #2d2e62, #6a6a6c);
    border: 2px solid #ccc;
    gap: 10px;
    flex-wrap: wrap;
    /* responsive stacking on smaller screens */
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
    height: 400px;
}

.reclaim_div h2 {
    font-size: 2.5em;
    font-weight: 700;
    font-style: normal;
    color: #fff !important;
    font-kerning: none;
    text-decoration: none;
    line-height: 28px;
    text-transform: uppercase;
}

.reclaim_div span {
    font-weight: 700;
    color: #f0a500;
    margin-right: 12px;
}

.input_div {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(to right, #2d2e62, #6a6a6c);
    width: 70%;
    position: relative;
    margin-top: 30px;
}

.agencyForm {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(to right, #2d2e62, #6a6a6c);
    width: 100%;
}

.input_div input {
    padding: 24px 64px;
    font-size: 1em;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 0px !important;
    width: 100%;
    border: 2px solid #ccc;
}

.input_div input:focus {
    background-color: transparent;
    color: #fff
}

.input_div button {
    padding: 14px 16px;
    font-size: 1em;
    background-color: #282974;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0px !important;
    width: 27%;
    position: absolute;
    font-weight: 600;
    top: auto;
    bottom: auto;
    right: 12px;
}

.input_div button:hover {
    background-color: #f0a500;
    color: white;
}

.input_div input::placeholder {
    color: #f0a500 !important;
    font-size: 1.4em;
}

.interest_para {
    font-size: 1.4em;
    font-weight: 300;
    font-style: normal;
    color: #fff !important;
    font-kerning: none;
    text-decoration: none;
    line-height: 38px;
    margin-top: 40px;
    text-align: center;
}

.buttons_div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.buttons_div a {
    padding: 16px 24px;
    font-size: 1.2em;
    font-weight: 600;
    background-color: #fffff0;
    color: #282974;
    border: none;
    cursor: pointer;
    border-radius: 0px !important;
    width: 20%;
    margin-right: 70px;
}

.buttons_div a:nth-child(2) {
    background-color: #a7aaa4;
    color: #fffff0;
    margin-right: 0px;
}

.buttons_div a:nth-child(1):hover {
    color: #fffff0;
    background-color: #282974;
    border: 2px solid #fff;
}

.buttons_div a:nth-child(2):hover {
    scale: 1.07;
}

/* social div */
.social {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden !important;
}

.social img {
    max-width: 90%;
    height: auto;
    display: block;
    float: right;
    z-index: 1;
}

.social_sub {
    position: absolute;
    bottom: 0px;
    /* adjust to move up/down */
    left: 20%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #282974;
    /* slightly transparent green */
    padding: 20px 30px;
    border-radius: 0px;
    width: 90%;
    height: 130px;
    z-index: -1 !important;
}

.social_icons {
    position: absolute;
    bottom: 0;
    /* adjust to move up/down */
    transform: translateX(-60%);
    gap: 10px;
    padding: 20px 30px;
    border-radius: 0px;
    width: 100%;
    height: 120px;
}

.social_icons img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-left: 40px;
}

.social_icons img:hover {
    transform: scale(1.1);
}

/* footer section */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #fffff0;
    color: #fff;
    flex-wrap: wrap;
}

.footer_col:nth-child(1) {
    flex: 1;
    min-width: 580px;
    margin: 10px 20px;
    padding: 20px 60px;
}

.footer_col {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer_col h3 {
    font-size: 1.6em;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.footer_col h4 {
    font-size: 1.3em;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.footer_col p {
    font-size: 1.2em;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
}

.footer_para span {
    font-weight: 700;
    color: #282974;
}

.call_btn {
    display: inline-block;
    padding: 12px 34px;
    background-color: transparent;
    color: #1f1f2e;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid #282974;
    border-radius: 44px;
}

.call_btn img {
    height: 30px;
    width: 30px;
}

.call_btn:hover {
    background-color: #d99100;
}

.footer_links {
    list-style: none;
    padding: 0;
}

.footer_links li {
    margin: 4px 0;
}

.footer_links a {
    font-size: 0.9em;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.footer_links a:hover {
    color: #f0a500;
}

.footer_bottom {
    margin-top: 40px;
}

.footer_bottom p {
    font-size: 0.8em;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
}

.footer_bottom a {
    color: #fff;
}

.footer_second {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.footer_second img {
    width: 15%;
    cursor: pointer;
}

.footer_second img:hover {
    transform: scale(1.1);
}

.footer_second span {
    font-size: 0.8em;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.footer_third {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 190px;
}

.footer_third h1 {
    font-size: 12rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin: 0 !important; /* Ensure no space beneath */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    letter-spacing: 4px;
    position: absolute;
    bottom: -74px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.footer_third h1.slide-up {
    transform: translateX(-50%) translateY(-30px);
}

.footer_third img {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: none;
    z-index: 2;
    pointer-events: none;
    object-fit: cover; /* Ensure it stretches to fit container */
}

/* overall modal */
.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

/* fixify ai modal */
.fixify-content {
    max-width: 550px;
    border-radius: 22px;
}

.first-main-content {
    width: 750px !important;
    border-radius: 22px;
}

.fixify-content p {
    font-weight: 500;
}

.fixify_anch {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #272974;
}

/* miantenance for desk popup */
.maintenance-content {
    width: 570px !important;
    height: auto;
    border-radius: 22px;
}

.myForm .form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #272974;
    margin-bottom: 6px;
}

.myForm input {
    padding: 0.75rem 1.5625rem;
    font-size: 1rem;
    height: auto;
    border: 2px solid #f0f0f0;
    color: #a0a1a3;
    background-color: #fff;
    border-radius: 0.375rem;
    box-shadow: none !important;
}

.myForm input:focus {
    border-color: #000;
}

.form-btn {
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    background-color: #272974;
    border-radius: 16px;
    padding: 16px 32px 16px 32px;
    color: #fff;
    border: none;
    transition: 0.3s;
}

.form-para {
    color: #5D5D66;
    opacity: 0.7;
    font-size: 12px;
}

.form-anch {
    color: #000 !important;
    text-decoration: none;
}

.form-anch:hover {
    color: #272974 !important;
}

.call_white {
    color: #f4ea10;
    font-weight: bold;
    text-decoration: none !important;
    border: 2px solid #f4ea10;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
}

.fixify-logomark {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    left: 10%;
}

.fixify-logomark img {
    width: 30%;
}

/* graph section */
.graph-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.box {
    text-align: center;
}

.box h2 {
    color: #fff;
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 40px;
    text-align: center;
}

.gif-row {
    position: relative;
}

.gif-row img {
    width: 80%;
}

.side-text {
    position: absolute;
    color: #fff;
    font-size: 1.8em;
    font-weight: 800;
    transform: rotate(-90deg);
    top: 50%;
}

.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

#staticBackdrop3 {
    overflow-y: auto;
}

#staticBackdrop3 .modal-dialog {
    max-width: 100%;
    background-color: #fffff0;
    border-radius: 22px;
    padding: 0px;
    margin: auto;
    height: 100%;
}

.first-main-content {
    width: 750px !important;
    border-radius: 22px;
    overflow-y: auto;
}

#staticBackdrop5 {
    overflow-y: auto;
}

#staticBackdrop5 .modal-dialog {
    max-width: 100%;
    background-color: #fffff0;
    border-radius: 22px;
    padding: 0px;
    margin: auto;
    height: 100%;
}

.privacy-main-content {
    width: 650px !important;
    border-radius: 22px;
    overflow-y: auto;
}

#staticBackdrop6 {
    overflow-y: auto;
}

#staticBackdrop6 .modal-dialog {
    max-width: 100%;
    background-color: #fffff0;
    border-radius: 22px;
    padding: 0px;
    margin: auto;
    height: 100%;
}

.agreement-main-content {
    width: 650px !important;
    border-radius: 22px;
    overflow-y: auto;
}


.agency-form input {
    width: 100%;
    border-radius: 6px;
    border: 2px solid #000;
    margin: 8px auto;
    padding: 0.75rem 0.75rem;
}

.agency-btn {
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    background-color: #272974;
    border-radius: 6px;
    padding: 14px 22px 14px 22px;
    color: #fff !important;
    border: none;
    transition: 0.3s;
    /* position: absolute;
    margin-left: 100px;
    margin-top: -55px; */
}

.agency-form::placeholder {
    color: #000 !important;
    font-size: 1em;
    font-weight: 400;
}


/* Responsive stacking for mobile device */
@media (max-width: 768px) {
    #staticBackdrop3 .first-main-content {
        width: auto !important;
    }

    #staticBackdrop5 .privacy-main-content {
        width: auto !important;
    }

    #staticBackdrop6 .agreement-main-content {
        width: auto !important;
    }

    .agency-modal-content {
        width: 450px !important;
    }

    .agency-form input {
        width: 100%;
        border-radius: 6px;
        border: 2px solid #000;
        margin: 8px auto;
        padding: 0.55rem 0.75rem;
    }

    .agency-btn {
        font-size: 14px;
        font-weight: 700;
        line-height: 0.8em;
        background-color: #272974;
        border-radius: 6px;
        padding: 12px 8px 12px 8px;
        color: #fff !important;
        border: none;
        transition: 0.3s;
        /* position: absolute;
      margin-left: 28px;
      margin-top: -48px; */
    }

    .navbar-inner {
        flex-direction: column;
        align-items: center;
    }

    .hero_section h1 {
        font-size: 1.7em;
        font-weight: 800;
        font-style: normal;
        color: rgb(255, 255, 240);
        font-kerning: none;
        text-decoration: none;
        line-height: 36px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .hero_section p {
        font-size: 1em;
        font-weight: 300;
        color: rgb(255, 255, 240);
        font-kerning: none;
        text-decoration: none;
        letter-spacing: 2px;
    }

    .progress-div h2 {
        font-size: 1.2em;
        font-weight: 800;
        font-style: normal;
        color: rgb(255, 255, 240);
        font-kerning: none;
        text-decoration: none;
        line-height: 26px;
        text-transform: uppercase;
        margin-bottom: 14px;
        text-align: center;
    }

    .progress_container {
        flex-direction: column;
        align-items: center;
    }

    .progress-header h3 {
        background-size: 100% 200%;
        background-image: linear-gradient(to bottom, #f0a500 50%, transparent 50%);
        background-position: 0 100%;
    }

    @keyframes revealBottomToTop {
        0% {
            background-position: 0 100%;
        }

        100% {
            background-position: 0 0;
        }
    }

    .progress-header h3.animate {
        animation: revealBottomToTop 1s ease forwards;
    }

    .progress_sub {
        margin-bottom: 20px;
    }

    .profile_sub::after {
        display: none !important;
        content: "";
        position: absolute;
        top: 10%;
        right: -16px;
        width: 1px;
        height: 60%;
        background-color: rgba(255, 255, 255, 0.3);
    }

    .collabrate_div h2 {
        font-size: 1.8em;
        font-weight: 700;
        font-style: normal;
        color: rgb(255, 255, 240);
        font-kerning: none;
        text-decoration: none;
        line-height: 36px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .collabrate_div p {
        font-size: 1em;
        font-weight: 400;
        font-style: normal;
        color: rgb(255, 255, 240);
        font-kerning: none;
        text-decoration: none;
        line-height: 38px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

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

    .tenant_div p {
        font-size: 1em;
        font-weight: 400;
    }

    .dekstop_view_only {
        display: none !important;
    }

    .mobile_view_only {
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 1.2em !important;
        line-height: 1.3;
        display: block;
    }

    /* showcase div */
    .showcase_sub {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-radius: 12px;
        gap: 20px;
        width: 100%;
        max-width: 85vw;
        max-height: 24vh;
    }

    .showcase_sub img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #f0a500;
    }

    .showcase_text h2 {
        font-size: 2em;
        font-weight: 700;
        color: #f0a500;
        line-height: 46px;
        text-transform: uppercase;
        margin-top: 4px !important;
    }

    .showcase_text h3 {
        font-size: 0.7em;
        font-weight: 800;
        color: #f0a500;
        line-height: 16px;
        text-transform: uppercase;
        margin-bottom: 6px !important;
    }

    /* Odd blocks: left-aligned image */
    .showcase_sub:nth-child(odd) {
        flex-direction: row;
        background-image: url("assets/blue_1.webp");
        margin-left: 0;
        margin-right: auto;
    }

    /* Even blocks: right-aligned image */
    .showcase_sub:nth-child(even) {
        flex-direction: row-reverse;
        background-image: url("assets/blue_2.webp");
        margin-right: 0;
        margin-left: auto;
    }

    .stand_para {
        font-size: 1em !important;
        font-weight: 300;
    }

    /* informative div */
    .inform_text {
        max-width: 100%;
        flex: 1 1 100% !important;
        text-align: start;
    }

    .inform_text h2 {
        font-size: 1.3em;
        font-weight: 700;
    }

    .people_say h2 {
        font-size: 2.3em;
        font-weight: 700;
    }

    .stand_header {
        font-size: 1.4em;
        font-weight: 700;
        font-style: normal;
        color: #fff !important;
        font-kerning: none;
        text-decoration: none;
        line-height: 36px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .reclaim_div {
        height: 280px !important;
        padding: 14px;
    }

    .reclaim_div h2 {
        text-align: center;
        font-size: 1.2em;
        font-weight: 700;
        color: #fff !important;
        text-decoration: none;
        transition: color 0.3s;
        line-height: 10px;
    }

    .input_div {
        width: 100%;
    }
        
    .agencyForm {
        display: flex;
        flex-direction: column;
    }

    .input_div input {
        background-color: transparent;
        color: #fff;
        cursor: pointer;
        border-radius: 0px !important;
        width: 100%;                   
        padding: 0.75rem;          
    }

    .input_div input::placeholder {
        font-size: 1em !important;
        text-align: center;
    }

    .input_div button {
        padding: 12px 20px !important;
        width: 100%;
        font-size: 1em;
        position: static !important;
        margin-top: 0.5rem;
        right: auto;
    }

    .interest_para {
        font-size: 1em;
    }

    .buttons_div {
        display: flex;
        align-items: center;
        justify-self: center;
        flex-direction: column !important;
        gap: 20px;
        width: 100%;
        padding: 14px;
    }

    .buttons_div a {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 1em;
    }

    .buttons_div a:nth-child(1) {
        margin-right: 0px;
    }

    .social img {
        max-width: 75% !important;
    }

    .social_sub {
        position: absolute;
        bottom: 0px;
        left: 20%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background-color: #282974;
        padding: 20px 30px;
        border-radius: 0px;
        width: 100%;
        height: 100px;
        z-index: -1 !important;
    }

    .social_icons img {
        object-fit: contain;
        width: 30px !important;
        height: 30px !important;
        border-radius: 50%;
        transition: transform 0.3s ease;
        margin-left: 10px;
    }

    .social_icons {
        position: absolute;
        bottom: 0;
        /* adjust to move up/down */
        transform: translateX(-49%);
        gap: 10px;
        padding: 20px 30px;
        border-radius: 0px;
        width: 100%;
        height: 95px;
    }

    .footer_para {
        font-size: 0.9em;
    }

    .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px 12px;
        background-color: #fffff0;
        color: #fff;
        flex-wrap: wrap;
    }

    .footer_col:nth-child(1) {
        text-align: start !important;
        padding: 10px !important;
        flex: 1;
        min-width: 90%;
    }

    .footer_col {
        text-align: center;
        flex: 1;
        min-width: 200px;
        margin: 10px 20px;
    }

    .footer_col p {
        font-size: 1em;
        font-weight: 400;
    }

    .call_btn {
        display: inline-block;
        padding: 12px 22px;
        background-color: transparent;
        color: #1f1f2e;
    }

    .footer_second {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer_second img {
        width: 50%;
    }

    .footer_third {
        min-height: 87px;
    }
    .review-card {
    padding: 20px !important;
    background: linear-gradient(to right, #2d2e62, #6a6a6c);
    border: 2px solid #ccc;
    box-shadow: 0 6px 20px rgb(0 0 0 / 86%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 320px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.5s ease-in-out;
    z-index: 0;
    display: flex
;
    justify-content: center;
    flex-direction: column;
}
.client-name {
    color: #f0a500;
    font-size: 1em !important;
    font-weight: 600;
    margin-bottom: 10px;
}
.client-role {
    font-size: 0.75em !important;
    color: #ccc;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 10px;
}
.client-logo img{
    width: 82px !important;
    height: auto;
}

    .footer_third h1 {
        font-size: 3.5em;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        line-height: 35px;
        text-align: center;
        margin: 0 !important; /* Ensure no space beneath on mobile */
        display: flex;
        align-items: flex-end; /* Aligns text to bottom */
        bottom: -35px;
    }

    .footer_third img{
        bottom: -10%;
    }

    .up_arrow {
        display: none !important;
    }

    .down_arrow {
        display: none !important;
    }

    .tenant_img_div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        padding: 10px;
        margin-top: 40px;
        margin-bottom: 50px;
        width: 100%;
    }

    .power_div {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap;
        /* responsive stacking on smaller screens */
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .giving_mobile_only {
        display: block !important;
    }

    .power-text h3 {
        text-align: center;
        font-weight: 700;
        font-size: 2em;
        line-height: 1.2em;
        margin-top: 10px;
    }

    .power-img {
        display: none !important;
    }

    .power-img img {
        display: none !important;
    }

    .progress_sub::after {
        display: none !important;
        content: "";
        position: absolute;
        top: 10%;
        right: -10px;
        width: 1px;
        height: 80%;
        background-color: rgba(255, 255, 255, 0.3);
    }

    .profile_text h3 {
        font-size: 2em;
        font-weight: 700;
        font-style: normal;
        color: #f0a500;
        font-kerning: none;
        text-decoration: none;
        line-height: 36px;
        text-transform: uppercase;
        margin-top: 14px;
        margin-bottom: 14px;
        text-align: center;
    }

    .support_div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 10px;
        margin-top: 0px;
        margin-bottom: 50px;
    }

    /* maintenance desk popu */
    .maintenance-content {
        width: auto !important;
        height: auto;
        border-radius: 22px;
    }

    .support_div_sub {
        text-align: center;
    }

    .support_div_sub p {
        font-size: 0.7em;
        width: 100%;
        text-align: center;
    }

    .support_div_sub .third_support_para {
        width: 70% !important;
        /* Only width is different */
    }

    .fixify-logomark {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 30vh;
        left: 8%;
    }

    .fixify-logomark img {
        width: 50%;
    }

    .Experience_div {
        flex-direction: column;
        text-align: center;
    }

    .exp-text {
        margin-right: 8px;
        margin-bottom: 30px;
    }

    .exp-text,
    .exp-img {
        flex: 1 1 100%;
    }

    .power-text {
        flex: 1 1 27%;
        font-size: 0.7em;
        text-align: right;
        margin-right: 6px;
    }

    .power-img {
        flex: 1 1 40%;
        text-align: left;
    }

    .power-img img {
        width: 50% !important;
    }

    .exp-img {
        text-align: center;
    }

    .inform_collect {
        flex-direction: column-reverse;
        height: auto;
        text-align: center;
        padding: 20px;
    }

    .inform_image img {
        height: auto;
        max-height: 400px;
        margin-top: -90px;
    }

    .content-div p {
        font-weight: 600;
        letter-spacing: 3px;
    }

    /* graph section */
    .graph-flex {
        display: none !important;
    }

    .showcase_text_sub {
        display: none !important;
    }

    .nav-text {
        margin: 20px 0 30px 0;
    }

    .content-div {
        margin-top: 24px;
        margin-bottom: 0px;
    }

    .carousel-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 340px;
        margin: 15px;
        padding: 10px;
        background: transparent;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 30%);
        text-align: start;
        border: none !important;
    }
    .carousel-card h3 {
        color: #f0a500;
        font-size: 1.1em;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .carousel-card p {
        font-size: 0.85em;
        color: #ccc;
        line-height: 1.3;
        margin-top: 10px;
    }
    .reviews-section .review-card {
        padding: 12px;
    }

    .client-name {
        font-size: 1.4em;
    }

    .client-logo img {
        width: 85px;
    }

    .reviews-section {
        margin-bottom: 30px;
     }

    .review-card {
        padding: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 300px;
        opacity: 0;
        transform: scale(0.8);
        transition: all 1.5s ease-in-out;
        z-index: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    /* Mobile scrolling track styles */
    .scrolling-track-wrapper {
        height: auto;
        min-height: 180px;
        padding: 10px 0;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    
    .scrolling-track {
        display: flex !important;
        animation: scroll-left 40s linear infinite !important;
        width: max-content !important;
        align-items: center;
        justify-content: flex-start;
        animation-play-state: running !important;
        gap: 10px;
        z-index: 2;
        will-change: transform;
    }
    
    .scrolling-track-wrapper:hover .scrolling-track {
        animation-play-state: paused !important;
    }

    .scrolling-track .review-card {
        width: 280px;
        min-width: 280px;
        height: 140px;
        padding: 16px 18px;
        margin-right: 15px;
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        z-index: auto !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
        border-radius: 16px !important;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .scrolling-track .review-card .review-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .scrolling-track .review-card .review-header h4 {
        font-size: 16px;
        margin: 0;
        font-weight: bold;
        color: #f0a500;
    }

    .scrolling-track .review-card .stars {
        font-size: 16px;
        color: #f0a500;
        display: flex;
        gap: 2px;
    }

    .scrolling-track .review-card .review-text {
        font-size: 13px;
        margin-top: 10px;
        color: #e0e0e0;
        margin-bottom: 0px !important;
        line-height: 1.5;
        font-weight: 400;
        opacity: 0.9;
        text-align: justify;
    }
   

}

/* ─── Agency “See How It Works” Modal ─── */

/* center the modal vertically */
#staticBackdrop2 .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

/* panel background, thick gold border, round corners & shadow */
#staticBackdrop2 .modal-content.agency-modal-content {
    background-color: #282974;
    border: 4px solid #F0A500;
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* remove the default header padding/border */
#staticBackdrop2 .modal-header {
    border: none;
    padding: 0;
}

/* custom close “×” styling */
#staticBackdrop2 .btn-close {
    /* invert the default black icon to white */
    filter: invert(1) !important;
    /* bump its opacity up so it’s fully visible */
    opacity: 1 !important;
}

/* remove the square/outline when it’s clicked (focused) */
#staticBackdrop2 .btn-close:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* body text-center and no extra padding */
#staticBackdrop2 .modal-body {
    text-align: center;
    padding: 0;
}

/* modal title in gold */
#staticBackdrop2 .modal-body h2 {
    color: #F0A500;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* input wrapper to position suggestions */
#staticBackdrop2 .agency-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

/* frosted-glass gradient input */
#agencyInput2 {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-align: center;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
}

#agencyInput2:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 1);
}

#agencyInput2::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* dropdown of suggestions */
#suggestions2 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1100;
}

#suggestions2.suggest_active {
    display: block;
}

#suggestions2 .suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: #333;
}

#suggestions2 .suggestion:hover {
    background: #f0f0f0;
}

/* big gold call-to-action button */
#staticBackdrop2 .agency-btn {
    background-color: #F0A500;
    color: #282974 !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* 1. set size of scrollbar */
#suggestions2::-webkit-scrollbar {
    width: 9px;
}

/* 2. the track (background) of the scrollbar */
#suggestions2::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

/* 3. the draggable “thumb” */
#suggestions2::-webkit-scrollbar-thumb {
    background-color: #282974;
    border-radius: 4px;
    border: 2px solid #f1f1f1;
}

/* 4. thumb on hover */
#suggestions2::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* responsive tweaks */
@media (max-width: 576px) {
    #staticBackdrop2 .modal-content.agency-modal-content {
        padding: 1.5rem;
    }

    #agencyInput2 {
        padding: 0.65rem 1rem;
    }

    #staticBackdrop2 .agency-btn {
        width: 100%;
        padding: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .nav-btn-desktop_view_only {
        display: none;
    }

    .nav-btn-mobile_view_only {
        display: block;
        margin-bottom: 50px;
    }

    .content-div {
        margin-bottom: 20px;
    }

    .nav-text a {
        border: 1px solid #fff;
    }

    .hero_section {
        align-items: flex-start;
    }
}

/* Responsive stacking for mobile device */
@media (max-width: 768px) {
    .nav-btn-mobile_view_only {
        display: block;
        margin-bottom: 40px;
    }

    .content-div {
        margin-bottom: 0px;
    }

    #staticBackdrop2 .modal-content.agency-modal-content {
        max-width: 395px;
    }
}
