* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #044c85;
    --secondary-color: #028273;
    /* --primary-btn: #fc9028; */
    --primary-btn: #e4ba46;
    --heading-color: #0f2233;
    --paragraph-color: #555555;
    --gradient: linear-gradient(to right, #d99e32, #ffcc3f);
}
a {
    text-decoration: none;
}
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
}

p {
    color: var(--paragraph-color);
}

.container {
    max-width: 1180px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 9;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn1 {
    padding: 4px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

#navbarToggleIcon {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    font-size: 30px;
}

#navbarToggleIcon.bi-x {
    transform: rotate(180deg);
}

.navbar-brand {
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    font-size: 17px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary-color);
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #044c85;
}

.navbar-toggler {
    padding: 0px;
}

.btn-second {
    outline: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-second:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    background-color: transparent;
    border: none;
    padding-top: 17px;
}

.dropdown-menu-inner {
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-top: 3px solid var(--primary-color);
    border-radius: .25rem;
    padding: 0px;
}
.navbar-brand img{
    width:250px;
}
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    
}

@media (min-width: 992px) {
    .dropdown-hover:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        /* Optional: removes default dropdown spacing */
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 700px;
    }

    .navbar-collapse {
        position: absolute;
        top: 99%;
        left: 18%;
        width: 500px;
        background-color: #f8f9fa;
        border: 2px solid #f3f3f3;
        padding: 0px 20px 20px;
        border-top: 3px solid var(--primary-color);
    }

    .nav-link {
        border-bottom: 1px solid #e4ebdc;
    }
    .dropdown-menu {
        padding-top: 0px;
    }
    .dropdown-menu-inner {
        height: 295px;
        overflow-y: auto;
    }
    .btn-tab {
        margin-top: 20px;
    }
}

@media (max-width: 425px) {
    .navbar-collapse {
        left: 0%;
        width: 100%;
    }
    .navbar-brand img{
    width:160px;
}
}

@media (max-width: 375px) {
    .navbar-brand {
        font-size: 30px;
    }
}
@media (max-width: 360px) {
    .modal-title {
        font-size: 17px;
    }
}
@media (max-width: 320px) {
    .navbar-brand {
        font-size: 25px;
    }
    .modal-title {
        font-size: 15px;
    }
    .google-btn span {
        font-size: 15px;
    }
}
@media (min-width:769px) and (max-width:1024px){
    .navbar-brand img {
        width: 200px;
    }
    .nav-link {
        font-size: 14px;
    }
}
/* --------- Hero Section ------------ */
section {
    padding: 5% 0;
}

.hero {
    /* background-color: #e2f6ff; */
    /* background-color: #F4EFE5; */
    background-image: url("https://images.unsplash.com/photo-1516156008625-3a9d6067fab5?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    height: 91vh;
    position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity */
  z-index: 1;
  height: 100%;
}

/* Content above overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-heading {
    font-size: 70px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 0px;
}

.service-heading{
   color: var(--primary-color);
}
.service-paragraph {
    color: var(--paragraph-color);
}

.hero-paragraph {
    font-size: 20px;
    color: #fff !important;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    padding: 10px 0;
    width: 180px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
}

.main-btn {
    background-color: var(--primary-btn);
    color: #fff;
}

.main-btn:hover {
    color: #fff;
}

.sec-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.sec-btn:hover {
    color: var(--primary-color);
}
.hero-sec-btn {
    border: 1px solid #fff;
    color: #fff;
}
.hero-sec-btn:hover {
    border: 1px solid #fff;
    color: #fff;
}

.hero-img {
    width: 567px;
}

@media (max-width: 1024px) {
    .hero-heading {
        font-size: 55px;
    }

    .hero-paragraph {
        font-size: 15px;
    }

    .btn {
        padding: 10px 0;
        width: 160px;
        font-size: 15px;
    }

    .hero-img {
        width: 470px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 52vh;
    }

    .hero-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-img {
        display: none;
    }

    .hero-heading {
        font-size: 47px;
    }

    .hero-paragraph {
        font-size: 19px !important;
    }
}

@media (max-width: 425px) {
    .hero {
        height: 91vh;
    }

    .hero-img {
        width: 200px;
        margin: auto;
        display: block;
    }
}

@media (max-width: 375px) {
    .hero-heading {
        font-size: 36px;
        margin-top: 30px;
    }
     .hero-img {
        width: 290px;
    }

    .hero-paragraph {
        font-size: 13px !important;
    }

    .btn {
        padding: 7px 0;
        width: 120px;
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .hero-img {
        width: 300px;
    }
}

/* ---------- City Section ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 20px auto;
}

@media (max-width: 425px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cell {
    height: 200px;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
    position: relative;
    font-size: 20px;
    box-sizing: border-box;
}

.cell:hover {
    background-color: #e1f9fd;
    cursor: pointer;
}

/* Inner vertical borders */
.cell::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #cfcfcf;
}

/* Inner horizontal borders */
.cell::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #cfcfcf;
}

/* Remove right border from last column (desktop) */
.grid .cell:nth-child(4n)::after {
    display: none;
}

/* Remove bottom border from last row (desktop) */
.grid .cell:nth-child(n+5)::before {
    display: none;
}

.cell img {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}
.cell .city-name {
    position: absolute;
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #212529b3;
    color: #fff;
    bottom: 0;
    transition: height 0.3s ease;
}
.cell:hover .city-name {
    height: 100%;
}

/* Responsive border fix for 2-column layout on small screens */
@media (max-width: 425px) {

    /* Remove right border from every 2nd cell */
    .grid .cell:nth-child(2n)::after {
        display: none;
    }

    /* Remove bottom border from last 2 cells (row 4) */
    .grid .cell:nth-child(n+7)::before {
        display: none;
    }
}

.city-icon {
    background-color: var(--primary-color);
    height: 80px;
    width: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-icon i {
    font-size: 30px;
    color: #fff;
}

.cell p {
    font-weight: 600;
    margin-bottom: 0px;
}

@media (max-width: 1024px) {
    .city-icon {
        height: 50px;
        width: 50px;
    }

    .city-icon i {
        font-size: 20px;
    }

    .cell p {
        font-size: 15px;
        margin-top: 5px;
    }

    .cell {
        height: 110px;
    }
    .cell .city-name {
        height: 35%;
    }
}

@media (max-width: 768px) {
    .cell {
        height: 110px;
    }
    .cell .city-name {
        height: 35%;
    }
}

@media (max-width: 425px) {
    .cell::before {
        width: 0;
    }

    .cell:nth-child(-n+6) {
        border-bottom: 2px solid #cfcfcf;
    }
    .cell .city-name {
        height: 35%;
    }
}
/* -------- service icon ------ */
.service-carousel-container {
    position: relative;
    width: 93%;
    margin: auto;
    overflow: hidden;
}

  .service-carousel-track {
    margin: 0 0px;
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
  }
.service-card-small {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
    border: 1px solid #e1e1e1;
    background-color: #fff;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    cursor: pointer;
    flex: 0 0 calc(100% / 6 - 20px);
    box-sizing: border-box;
}
.service-card-small:hover {
    background-color: #fffaec;
}
.service-card-small .service-ixcon-box i {
    font-weight: 600;
    font-size: 25px;
    color: #fff;
}
.service-card-small p{
    font-weight: 600;
    line-height: normal;
}
@media (max-width: 1024px){
    .service-card-small p{
        font-size: 13px;
    }
}
/* Responsive Breakpoints */
  @media (max-width: 992px) {
    .service-card-small {
      flex: 0 0 calc(100% / 4 - 20px);
    }
  }

  @media (max-width: 600px) {
    .service-card-small {
      flex: 0 0 calc(100% / 2 - 20px);
    }
  }
  /* Navigation buttons */
  .nav-btn {
    position: absolute;
    /* top: 50%; */
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    transition: opacity 0.3s;
    z-index: 1;
  }

  .nav-btn:hover {
    background: rgba(0,0,0,0.7);
  }

  .nav-btn.prev {
    left: 10px;
    top: 52%;
  }

  .nav-btn.next {
    right: 10px;
    top: 52%;
  }

  .nav-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
  }
/* ---------- Service Section ----------- */
.service {
    /* background-color: #f8f9fc; */
    background-color: #f4efe570;
}

.service-card {
    flex: 1;
    border: 1px solid #e1e1e1;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fff;
    border-radius: 10px;
    margin: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-15px);
}
.service-ixcon-box {
       border: 2px solid var(--primary-color);
    height: 58px;
    width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 8px;
}

.service-card i {
    font-size: 26px;
    color: #fff;
}

.service-card h4 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--paragraph-color);
    margin-bottom: 0px;
}
.underline {
    gap: 2px;
}
.underline .square {
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary-btn);
    rotate: 135deg;
}
.underline .line {
    width: 220px;
    height: 1.6px;
    background-color: var(--primary-btn);
}
.underline .square1 {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-btn);
    rotate: 135deg;
}
.underline .line1 {
    width: 90px;
    height: 1.6px;
    background-color: var(--primary-btn);
}
/* @media (max-width: 1024px) {
    .service-card {
        height: 350px;
    }
}
@media (max-width: 425px) {
    .service-card {
        height: 260px;
    }
}
@media (max-width: 375px) {
    .service-card {
        height: 305px;
    }
} */
@media (max-width: 360px) {
    .service-card p {
        font-size: 13px;
    }
    /* .service-card {
        height: 270px;
    } */
}
/* @media (max-width: 320px) {
    .service-card {
        height: 285px;
    }
} */

/* ----------- Why Choose Section ----------- */
.carosole-box {
    height: 300px;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    padding: 10px 0;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent black */
    color: white;
    padding: 1rem;
}

.carousel-item {
    padding: 0px 73px;
}

.car-content {
    border-radius: 20px;
    padding: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.car-content p {
    color: var(--paragraph-color);
}

.rev-host {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rev-host img {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    border: 1px solid #0684a3;
    padding: 2px;
}

@media (max-width: 768px) {
    .why-text {
        text-align: center;
    }

    .car-content {
        margin-top: 40px;
    }
}

@media (max-width: 425px) {
    .carousel-item {
        padding: 0px 24px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 5%;
    }

    .carousel-indicators {
        margin-bottom: -1rem;
    }
}

@media (max-width: 360px) {
    .why-text p {
        font-size: 13px;
    }

    .car-content p {
        font-size: 13px;
    }

    .carousel-indicators {
        margin-bottom: 0rem;
    }
}

/* ----------- How it work Section ------------ */
.how-work {
    /* background-color: #f8f9fc; */
    background-color: #fff;
}

.how-work-card {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    border-left: 4px solid #044c85;
    border-bottom: 4px solid #044c85;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}
.how-work-card .step-cnt{
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: #044c85;
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-work-card p {
    color: var(--paragraph-color)
}
@media (max-width: 360px) {
    .how-work-card p {
        font-size: 13px;
    }
}
/* ---------- Counter Section --------- */
.counter-section {
    background-image: url('https://plus.unsplash.com/premium_photo-1661915661139-5b6a4e4a6fcc?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8bW9kZXJuJTIwaG91c2V8ZW58MHx8MHx8fDA%3D&fm=jpg&q=60&w=3000');
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 0px !important;
}

.counter-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay for contrast */
    padding: 60px 20px;
}

.counters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.counter {
    flex: 1 1 200px;
    margin: 20px;
}

.counter h2 {
    color: #fff;
    font-size: 3rem;
    margin: 0 0 10px;
}

.counter p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

@media (max-width: 768px) {
    .counter h2 {
        font-size: 2.5rem;
    }

    .counters {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        max-width: 700px;
    }
}

/* ---------- Featured Section -------- */
/* .logo-scroll-section{
        overflow: hidden;
    } */
.logo-track-wrapper {
    display: flex;
    overflow: hidden;
    gap: 20px;
}

.logo-track {
    display: flex;
    gap: 20px;
    width: calc(250px * 10);
    /* Adjust based on logo count */
    animation: scroll 20s linear infinite;
}

.logo {
    width: 250px;
    height: 100px;
    background-color: #0684a3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease-in-out;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

.logo:hover {
    filter: none;
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Half the total width (duplicate logos) */
}

/* -------- Review Section -------- */
.review-section {
    /* background-color: #f8f9fc; */
    background-color: #faf8f4;
}

.review-track-wrapper {
    display: flex;
    gap: 0px;
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    animation: scroll 20s linear infinite;
}

.review {
    width: 300px;
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
    padding: 20px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.cli-dtl {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cli-dtl .client-img {
    border: 1px solid #15aacd;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    overflow:hidden;
}

.cli-dtl .client-img img{
    height:100%;
}

.review-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-icons i {
    font-size: 20px;
    color: #fbb40e;
}

.clint-dgsn p {
    font-size: 13px;
}

.review p {
    color: var(--paragraph-color);
}

.review-track-wrapper:hover .review-track {
    animation-play-state: paused;
}

@media (max-width: 360px) {
    .review p {
        font-size: 13px;
    }
}
/* -------- Why choose section -------- */
.whychoose-card {
    border-radius: 10px;
    padding: 20px;
    color: #fff;
}
.whychoose-card i{
   font-size: 30px;
}
.whychoose-card h4{
  color: #fff;
  font-weight: 600;
}
.whychoose-card p{
    color: #fff;
}
.odd-choose {
    background-color: var(--primary-color);
}
.even-choose {
    background-color: #d76c04;
}
/* -------- Faq Section -------- */
.accordion-item .accordion-button {
    color: #111;
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 360px) {
    .accordion-item .accordion-button {
        color: #111;
        font-size: 16px;
    }

    .accordion-body {
        font-size: 13px;
    }
}

/* ------- cta section ------ */
.cta-box {
    width: 100%;
    max-width: 900px;
    padding: 60px 0;
    color: #fff;
    border-radius: 15px;
    margin: auto;
    background: linear-gradient(to right, #d99e32, #ffcc3f);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.cta-box p {
    color: #fff;
}

.cta-box a {
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 25px;
}

.cta-box a:hover {
    background-color: #fff;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .cta {
        padding: 20px;
    }
    .cta-box {
        max-width: 700px;
        padding: 20px;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-box p {
        font-size: 13px;
    }

    .cta-box a {
        margin-top: 7px;
    }
}

@media (max-width: 425px) {
    .cta-box {
        width: 100%;
        max-width: 100%;
        padding: 20px 36px;
        text-align: center;
    }
}
/* ----------- Video Box section ------- */
.carousel-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

  .carousel-track {
    margin: 0 35px;
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
  }

  .video-card{
    border: 1px solid #dfdfdf;
    border-radius: 10px;
     height: 400px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 10px;
    flex: 0 0 calc(100% / 2 - 20px);
    padding: 0px;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
  }

  /* Responsive Breakpoints */
  @media (max-width: 992px) {
    .video-card {
      flex: 0 0 calc(100% / 2 - 20px);
      height: 315px;
    }
  }

  @media (max-width: 600px) {
    .video-card {
      flex: 0 0 calc(100% - 20px);
      height: 100%;
    }
  }

  /* Navigation buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    transition: opacity 0.3s;
    z-index: 1;
  }

  .nav-btn:hover {
    background: rgba(0,0,0,0.7);
  }

  .nav-btn.prev {
    left: 0px;
  }

  .nav-btn.next {
    right: 0px;
  }

  .nav-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
  }
/* -------- footer --------- */
/*footer {*/
/*    background-color: #262626;*/
/*    color: #fff;*/
/*    padding: 3% 0;*/
/*}*/

/* footer .container .row>* {
        width: 25%;
    } */
.foot-head {
    color: #fff;
}

.foot-text {
    color: #fff;
}

.foot-logo a {
    text-decoration: none;
    color: #fff;
}

.links {
    padding-left: 0;
}

.links li {
    list-style-type: none;
}

.links li a {
    text-decoration: none;
    color: #fff;
}
.get-tauch a{
    text-decoration: none;
    color: #fff;
}
/* ------- About page -------- */
.title-section {
    background-image: url('https://plus.unsplash.com/premium_photo-1661915661139-5b6a4e4a6fcc?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8bW9kZXJuJTIwaG91c2V8ZW58MHx8MHx8fDA%3D&fm=jpg&q=60&w=3000');
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 0px !important;
}

.title-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay for contrast */
    padding: 60px 20px;
}

.page-title {
    color: #fff;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #a1d3fb;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
    color: #fff;
}

.about-heading {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0px;
}

.hero-paragraph {
    font-size: 17px;
    color: var(--heading-color);
    line-height: 1.2;
}

/* --------- Vision-mission section -------- */
.vision-section {
    /* background-color: #f8f9fc; */
    background-color: #faf8f4;
}

.vm-card {
    background: #fff;
    /* height: 325px; */
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-bottom: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-15px);
}

.vm-card .icon-box {
    height: 70px;
    width: 70px;
    background-color: var(--primary-color);
    border-radius: 50px;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 30px;
}
@media (max-width: 1024px) {
    .vm-card {
        height: 370px;
    }
}
@media (max-width: 768px) {
    .vm-main {
        margin-bottom: 20px;
    }
    .vm-card {
        height: 320px;
    }
}

@media (max-width: 320px) {
    .about-img {
        width: 100%;
    }
    .vm-card {
        height: 365px;
    }
}
/* --------- why choose section ----------- */
.whyto-choose {
    /* background-color: #f8f9fc; */
    background-color: #faf8f4;
}
.highlight {
    color: var(--primary-btn);
}
/* --------- Contact Box --------- */
.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-box .icon-box {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.contact-box .icon-box i {
    font-size: 25px;
    color: #fff;
}

.con-dtl p a {
    text-decoration: none;
    color: var(--paragraph-color);
}

.submit-btn {
    padding: 5px 24px;
    /* background-color: var(--primary-color); */
    background-color: #e4ba46;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 5px;
}

.submit-btn:hover {
    box-shadow: rgb(237 221 176) 0px 5px 15px;
}
.form-control:focus{
    border-color: var(--primary-color);
    box-shadow: none;
}

@media (max-width: 1024px){
    .contact-box .icon-box {
        height: 40px;
        width: 40px;
    }
    .con-dtl p {
        font-size: 14px;
    }
}
@media (max-width: 768px){
    .contact-show {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .contact-box {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 425px) {
    .contact-show {
        display: block;
    }
    .contact-box {
        flex-direction: row;
        text-align: left;
    }
}

/* ---------- blog section ---------- */
.sidebar {
    padding: 20px;
    background-color: #d5e2e5;
    border-radius: 5px;
}
.blog-card {
    border-radius: 15px;
    border: 1px solid #e1e1e1;
    height: 540px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transform: translateY(-15px);
}
.blog-card .img-box {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
}
.blog-card .img-box img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.blog-card .text-box {
    height: 340px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 15px;
}
.text-box .head .category {
    background-color: var(--primary-btn);
    color: #fff;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 15px;
}
.text-box .head small {
    color: var(--paragraph-color);
    font-weight: 500;
}
.text-box h4 {
    margin-top: 10px;
}
.text-box a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    float: right;
}
.category-filter {
    width: 100%;
    text-align: left;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 425px) {
    .blog-card {
        height: 450px;
    }
    .blog-card .text-box {
        height: 248px;
    }
    .blog-card .text-box h4 {
        font-size: 20px;
    }
    .blog-card .text-box p {
        font-size: 14px;
    }
}
@media (max-width: 375px) {
    .blog-card {
        height: 467px;
    }
    .blog-card .text-box {
        height: 265px;
    }
}
@media (max-width: 360px) {
    .blog-card .text-box h4 {
        font-size: 18px;
    }
    .blog-card .text-box p {
        font-size: 12px;
    }
}

/* -------- blog-details section --------- */
.blog-details .img-box {
    width: 100%;
    height: 400px;
}
.blog-details .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.blog-details .head .category {
    background-color: var(--primary-btn);
    color: #fff;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 15px;
}
.blog-details .head small {
    color: var(--paragraph-color);
    font-weight: 500;
}
.similar-blog {
    background-color: aliceblue;
    height: 80px;
    border-radius: 5px;
    display: flex;
    gap: 8px;
    padding: 5px;
    align-items: start;
}
.similar-blog .img-box {
    width: 200px;
    height: 100%;
}
.similar-blog .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.similar-blog .text-box a{
    line-height: 1.3;
}

@media (max-width: 425px){
    .blog-details .img-box {
        height: 270px;
    }
}
@media (max-width: 375px){
    .blog-details .img-box {
        height: 220px;
    }
}
@media (max-width: 320px){
    .blog-details .img-box {
        height: 200px;
    }
    .similar-blog .text-box a h6{
        font-size: 14px;
    }
}

/* --------- city section -------- */
.city-cell {
    height: 200px;
    position: relative;
}
.city-cell img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.city-cell .city-name {
    position: absolute;
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #212529b3;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
    font-size: 20px;
    bottom: 0;
    transition: height 0.3s ease;
}
.city-cell:hover .city-name {
    height: 100%;
    border-radius: 5px;
}

@media (max-width: 1024px){
    .city-cell {
        height: 140px;
    }
}
@media (max-width: 425px){
    .city-cell .city-name {
        height: 35%;
    }
}

/* ----------- Service page ---------- */
.service-hero {
    /* background-color: #e2f6ff; */
    background-color: #F4EFE5;
}
.service-hero .hero-heading {
    font-size: 36px;
}
@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.2rem !important;
    }
}
.form-card {
    background-color: #fff;
    width: 100%;
    max-width: 420px;
    padding: 20px;
    border-radius: 10px;
}
.set-btn {
    width: 100%;
}
.benefits-section {
    background-color: #e2f6ff;
}
.end-to-end {
    /* background-color: #f8f9fc; */
    background-color: #faf8f4;
}
.end-service-card {
    border: 1px solid #bdb9b9;
    border-radius: 2px;
    padding: 5px 10px;
    cursor: pointer;
}
.end-service-card .icon-box {
    height: 40px;
    width: 40px;
    border: 2px solid var(--primary-btn);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.end-service-card i {
    font-size: 25px;
    font-weight: 500;
    color: var(--primary-btn);
}
.end-service-card p {
    color: var(--paragraph-color);
    font-weight: 500;
}
.how-it-work-card{
  padding: 15px;
  background-color: #fffcf9;
  flex: 1;
}
.how-it-work-card i{
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-btn);
}
.other-service{
    /* background-color: #f8f9fc; */
    background-color: #faf8f4;
}
.other-service-card {
    border-radius: 5px;
    background-color: #fff;
    padding: 10px 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
    cursor: pointer;
}
.other-service-card i{
    font-size: 25px;
    color: var(--primary-btn);
}
.other-service-card p {
    font-weight: 500;
    color: var(--paragraph-color);
}
table {
    border-color: #d3d3d4 !important;
}
th, td {
    padding: 20px !important;
}
/* table thead th:first-child {
    text-align: left;
    background: #e9fbff !important;
    color: var(--paragraph-color) !important;
    font-size: 16px;
} */
table thead th{
    background: var(--primary-color) !important;
    color: #fff;
}
table .bi-check-circle-fill {
    font-size: 25px;
    color: #01ba01;
}

table .bi-x-circle-fill {
    font-size: 25px;
    color: #ff4242;
}

@media (max-width: 1024px) {
    .service-hero .hero-heading {
        font-size: 55px;
    }
    .form-card {
        width: auto;
    }
}
@media (max-width: 768px) {
    .service-hero .hero-heading {
        font-size: 47px;
    }
    .form-card {
        max-width: 400px;
        margin: auto;
    }
}
@media (max-width: 375px) {
    .service-hero .hero-heading {
        font-size: 36px;
        margin-top: 30px;
    }
    .form-card {
        width: 100%;
        max-width: 350px;
        margin: auto;
    }
}

/* --------- login-register --------- */
.login-sec {
    height: 90vh;
    display: flex;
    align-items: center;
}
.login-box {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 20px;
    width: 420px;
    margin: auto;
}
.forgot-password {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}
#togglePassword {
    position: absolute;
    right: 10px;
    top: 3px;
    font-size: 20px;
    z-index: 9;
}
@media (max-width: 425px) {
    .login-box {
        width: auto;
    }
}
/* -------- All service section -------- */
.all-service-img {
    font-size: 210px;
    color: #044c85;
}
.numbering{
        display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    border: 3px dashed var(--primary-btn);
    line-height: 1.5;
    text-align: center;
    font-size: 30px;
    color: var(--primary-btn);
    margin-bottom: 16px;
}
.support-loop{
    height: 320px;
    overflow-y: scroll;
}
.support-loop::-webkit-scrollbar {
  width: 10px;
      display: none;
}
footer {
    background-color: #262626;
    color: #fff;
    padding: 3% 0 0 0;
}
.copyright {
    padding: 20px 0;
    margin-top: 3%;
    background-color: #18171796;
}
.copyright p {
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}
.foot-logo{
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 3px;
    padding: 10px 0;
}
/* ------------- Property Page ------------- */
.property-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    border-radius: 10px;
}
.property-card .img-box {
    width: 35%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
}
.property-card .img-box img {
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.property-card .dtl-box {
    width: 65%;
    padding: 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.property-card .dtl-box span {
    background-color: #bdddf9;
    color: #044c85;
    font-weight: 500;
    border-radius: 19px;
    padding: 5px 13px;
    font-size: 13px;
}
.dtl-box .prop-name {
    color: var(--paragraph-color);
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.dtl-box .price {
    color: var(--heading-color);
    font-weight: 700;
}
.sp-box .icon-box {
    background-color: #bdddf9;
    height: 30px;
    width: 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-box .icon-box i {
    color: var(--primary-color);
    font-size: 17px;
}
.sp-box p {
    font-weight: 500;
    color: var(--paragraph-color);
    font-size: 14px;
}
.location-box i,
.location-box p {
    color: var(--paragraph-color);
}
.location-box p {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.dtl-box .dtl-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
}
.img-box .badge {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #044c85;
    padding: 10px 7px;
}
.img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 14%);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

@media (max-width: 1024px) {
    .dtl-box .prop-name {
        max-width: 130px;
        font-size: 16px;
    }
    .dtl-box .price {
        font-size: 20px;
    }
    .location-box p {
        max-width: 140px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .dtl-box .prop-name {
        max-width: 260px;
        font-size: 20px;
    }
    .dtl-box .price {
        font-size: 24px;
    }
    .location-box p {
        max-width: 270px;
        font-size: 16px;
    }
}
@media (max-width: 425px) {
    .property-card {
        flex-direction: column;
    }
    .property-card .img-box {
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .property-card .img-box img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }
    .property-card .dtl-box {
        width: 100%;
    }
    .img-overlay {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }
    .dtl-box .prop-name {
        max-width: 215px;
    }
    .location-box p {
        max-width: 235px;
    }
}
@media (max-width: 375px) {
    .dtl-box .prop-name {
        max-width: 195px;
        font-size: 16px;
    }
    .dtl-box .price {
        font-size: 18px;
    }
    .location-box p {
        max-width: 190px;
        font-size: 14px;
    }
}
@media (max-width: 360px) {
    .dtl-box .prop-name {
        max-width: 185px;
        font-size: 15px;
    }
    .dtl-box .price {
        font-size: 17px;
    }
    .location-box p {
        max-width: 180px;
        font-size: 14px;
    }
}
@media (max-width: 320px) {
    .dtl-box .prop-name {
        max-width: 155px;
        font-size: 15px;
    }
    .dtl-box .price {
        font-size: 15px;
    }
    .location-box p {
        max-width: 145px;
        font-size: 14px;
    }
}

/* ------------ Property dtl page --------- */
.scroll-container {
    height: 410px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #121212;
}

.scroll-container .infinite-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.infinite-scroll-wrapper .infinite-scroll-content {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    animation: scroll 50s linear infinite;
    width: 100%;
    height: 100%;
    gap: 0px;
}

.infinite-scroll-wrapper .infinite-scroll-items {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    gap: 0px;
}

.infinite-scroll-items .item-wrap {
    position: relative;
    min-width: 508px;
    flex-shrink: 0;
    overflow: hidden;
}

.item-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-wrap .text {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    color: #fff;
    font-weight: 500;
}

.item-wrap:hover img {
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .infinite-scroll-wrapper:hover .infinite-scroll-content {
        animation-play-state: paused;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.prop-dtl {
    background-color: #f8f9fc;
}
.dtl-card {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 10px;
    padding: 20px;
}
.dtl-card span {
    background-color: #bdddf9;
    color: #044c85;
    font-weight: 500;
    border-radius: 19px;
    padding: 5px 13px;
    font-size: 13px;
}
.dtl-card .prop-name {
    color: var(--paragraph-color);
}
.dtl-card .price {
    color: var(--heading-color);
    font-weight: 700;
}
.dtl-card .prop-name {
    max-width: 550px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.dtl-card .location p {
    max-width: 900px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.dtl-card .fe-heading {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 15px;
}
.dtl-card .fe-base {
    color: var(--paragraph-color);
    font-size: 14px;
}
.fur-item {
    border-bottom: 1px solid #d6d8da;
}
.fur-item i {
    color: var(--primary-color);
    font-size: 18px;
}
.amen-box i {
    font-size: 18px;
    color: var(--primary-btn);
}
.dtl-card .gallery .gallery-box {
    border-radius: 10px;
}
.dtl-card .gallery .gallery-box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.dtl-card .floor-plan {
    height: auto;
    border-radius: 10px;
}
.dtl-card .floor-plan img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.dtl-card-1 {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 10px;
}
.dtl-card-1 .dtl-proj {
    background-color: #ffe0c2;
    color: #fff;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.dtl-card-1 form {
    padding: 20px;
}
.dtl-proj .img-box {
    height: 60px;
    width: 60px;
    border-radius: 30px;
}
.dtl-proj .img-box img {
    height: 100%;
    width: 100%;
    border-radius: 30px;
}
.cont-proj h4 {
    font-weight: 700;
}
.cont-proj p {
    font-weight: 500;
}

@media (min-width: 1024px) {
    .dtl-card .prop-name {
        max-width: 410px;
    }
    .dtl-card .location p {
        max-width: 530px;
    }
}
@media (min-width: 768px) {
    .dtl-card .prop-name {
        max-width: 480px;
    }
}
@media (min-width: 425px) {
    .dtl-card .prop-name {
        max-width: 220px;
    }
}
@media (min-width: 375px) {
    .dtl-card .prop-name {
        max-width: 170px;
    }
}
@media (min-width: 360px) {
    .dtl-card .prop-name {
        max-width: 170px;
    }
    .dtl-card .price {
        font-size: 18px;
    }
}
@media (min-width: 320px) {
    .dtl-card .prop-name {
        max-width: 140px;
        font-size: 16px;
    }
    .dtl-card .price {
        font-size: 18px;
    }
}
/* ------------ popr card scroll --------- */
.swiper-slide{
   padding: 10px;
}
 .property-cards {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
    /* ----- Arrow Fix ----- */
.swiper-button-next,
.swiper-button-prev {
  color: #fcf9f9;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-btn);
    padding: 10px;
    border-radius: 25px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.property-cards .img-card {
    height: 220px;
    width: 100%;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.property-cards .img-card img {
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.property-cards .text-card {
    padding: 20px;
}
.property-cards .text-card  .prop-name{
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: var(--heading-color);
}
.property-cards .text-card .dtl-btn {
    padding: 5px 15px;
    border-radius: 5px
}
.property-cards .text-card .location-box{
    max-width: 160px;
}
.rent-price{
        font-size: 21px;
}
@media (max-width: 1024px) {
    .property-cards .text-card .location-box {
        max-width: 100px;
        font-size: 14px;
    }
    .property-cards .text-card  .prop-name{
        max-width: 100px;
    }
    .property-cards .text-card .price {
        font-size: 22px;
    }
    .property-cards .text-card .specification p {
        font-size: 11px;
    }
}
@media (max-width: 768px) {
    .property-cards .text-card .location-box {
        max-width: 150px;
        font-size: 14px;
    }
    .property-cards .text-card .prop-name {
        max-width: 135px;
    }
    .property-cards .text-card .specification p {
        font-size: 13px;
    }
}
@media (max-width: 425px) {
    .property-cards .text-card .prop-name {
        max-width: 200px;
    }
    .property-cards .text-card .location-box {
        max-width: 200px;
        font-size: 14px;
    }
    .swiper-button-next,
.swiper-button-prev {
    display: none;
}
}
@media (max-width: 375px) {
    .property-cards .text-card .prop-name {
        max-width: 160px;
    }
    .property-cards .text-card .location-box {
        max-width: 165px;
        font-size: 14px;
    }
}
@media (max-width: 360px) {
    .property-cards .img-card {
        height: 180px;
    }
    .property-cards .text-card .prop-name {
        max-width: 145px;
    }
}
@media (max-width: 320px) {
    .property-cards .text-card .prop-name {
        max-width: 110px;
    }
    .property-cards .text-card .price {
        font-size: 20px;
    }
    .property-cards .text-card .specification {
        flex-wrap: wrap;
        gap: 5px;
    }
    .property-cards .text-card .location-box {
        max-width: 120px;
        font-size: 14px;
    }
}

.swiper-button-prev, .swiper-button-next {
    color: #fff !important;
}