body {
    font-family: 'Roboto Slab', sans-serif;
    background-color: #f8fafc;
    color: #333;
    line-height: 1.6;
    }
 

    .navbar .nav-item{
        margin-right: 5px;
    }

   .btn-success {
            background: #1D940F;
        }
        .text-success {
            color: #1D940F;
        }



    /* Blog part */

#blog-container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
   padding: 8vw;
  }


  #blog-container .details{
    width: 60%;
    margin: 0 auto;
  }


  #blog-container .details p{
    text-align: justify;
    padding-bottom: 6px !important;
  }


  #blog-container .blogs{
    width: 60%;
  }

  #blog-container .cate{
    width: 30%;
  }

  #blog-container .cate h2{
    padding-bottom: 7px;
  }

  #blog-container .cate a{
    text-decoration: none;
    color: #757373;
    font-weight: 500;
    line-height: 45px;
  }




  #blog-container .blogs .post{
    padding-bottom: 60px;
  }



  #blog-container .blogs .post h2 {
    color: rgb(11, 11, 11);
    font-weight: bold;
    padding: 15px 0 10px 0;
    margin-bottom: 20px;
    text-align: left;
}


  #blog-container .blogs .post p{
    color: #727877;
    padding-bottom: 20px;

  }


  #blog-container .blogs .post a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #1D940F;;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;

  }



  /* Media Query */

  @media (max-width:678px) {
    #blog-container {
        flex-direction: column;

    }



  }


  @media (max-width:475px) {
    #blog-container {
        padding: 8vw 4vw;
    }
    #blog-container .details{
        width: 100%;
        margin-top: 30px;
    }
    #blog-container .blogs {
        width: 100%;
  }

  #blog-container .details img {
    width: 100%;
    height: 50vh;
    object-fit: cover;

}

  #blog-container .cate {
    width: 100%;
}
}


@media (max-width:700px) {
    #blog-container .details{
        width: 100%;
    }
}


    header {
        position: fixed;
        width: 100%;
        z-index: 10;
        transition: background-color 0.3s, color 0.3s;
    }

    header.scrolled {
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        color: white !important;
        padding: 0 15px;
        transition: color 0.3s;
    }

    .navbar-nav .nav-link:hover {
        color: #ff6347 !important;
    }

    header.scrolled .nav-link {
        color: black !important;
    }


    .dropdown-menu {
        background-color: white;
        border: none;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        padding: 10px 15px;
    }

    .dropdown-item img {
        margin-right: 10px;
    }

    .navbar-light .navbar-toggler {
        border-color: rgba(0, 0, 0, 0.1);
    }

    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* Media query for phone and tablet */
    @media (max-width: 991px) {
        .navbar-collapse {
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .navbar-collapse .nav-link {
            color: black !important;
            padding: 10px;
            margin: 5px 0;
        }

        .navbar-collapse .nav-link:hover {
            background-color: #f8f9fa;
            border-radius: 5px;
        }

        .navbar-toggler {
            background-color: #f8f9fa;
            border-radius: 5px;
        }

        .navbar-toggler:hover {
            background-color: #e2e6ea;
        }
    }

    @media (min-width: 992px) {
        header {
            background: transparent;
        }

        header.scrolled {
            background: white;
            color: black;
        }

        .navbar-nav .nav-link {
            color: white !important;
        }

        .navbar-nav .nav-link:hover {
            color: #ff6347 !important;
        }

        .navbar-toggler {
            background-color: transparent;
            border: none;
        }
    }


    .hero {
        background-size: cover;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        min-height: 70%;
    }

    .hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }



    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .hero p {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }



.hero-buttons{
display: flex;
    gap: 57px;
    flex-wrap: wrap;

    justify-content: center;
}


.hero-buttons  .hero-button{

    border: 3px solid #1D940F;
    padding: 20px 10px;
    display: flex;
    gap: 10px;
    font-weight: bold;
}

.hero-buttons  .hero-button .hero-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    place-items: center;
    align-items: center;
    gap: 1rem;
}

.hero-buttons  .hero-button .hero-content img{
    width: 50px;
    height: 50px;
}


    .content-section {
        padding: 60px 0;
    }

    .carousel {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #carousel-indicator {
        margin: 0 15px;
        font-size: 1.2rem;
    }

    .mt-4,
    .my-4 {
        margin-top: 5.9rem !important;
    }

    .what-we-do {
        position: relative;
        text-align: center;
    }

    .what-we-do-container{
        background: #1D940F;
        min-height: 70vh;
        display: flex;
        border-radius: 1.4rem;
        justify-content: center;
        align-items: center;
        background: url('../images/1.jpg') no-repeat center center;
        background-size: cover;
    }

      .what-we-do-container::before {
        content: '';
        position: absolute;
        top: 0;
        border-radius: 1.4rem;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.563);
        z-index: 1;
    }


    .what-we-do-container  h4 {
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 20px;
        z-index: 99;
        color: white;
    }

   .what-we-do-container  .card-content{

        color: white;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 3;
        padding: 40px 0px;
   }

     .what-we-do-container  .card-content:hover{
 /*background-color: #1D940F;*/
 background:transparent;
 cursor: pointer;
     }

      .what-we-do-container  .card-content:hover .info-list{
          display: flex;
      }
  .what-we-do-container .card-content .info-list{
    list-style: none;

    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 0px;
    margin: 0px;
    text-align: start;
   }
   /*
    .background-image {
        background: url('../images/1.jpg') no-repeat center center;
        background-size: cover;
        padding: 200px 0;
        border-radius: 10px;
        margin-top: 20px;
        position: relative;
        overflow: hidden;
    }




    .icon-container {
        padding-right: 20px;  /
        margin-right: 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .icon-container img {
        width: 60px;
        margin-bottom: 20px;
        transition: transform 0.3s;
    }

    .icon-container h4 {
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 20px;
        color: white;
    }

    .icon-container:hover img {
        transform: scale(1.1);
    }

    .small_container{
        background: #045501;
    }

    .icon-container .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        padding: 1rem;
        border-radius: 5px;
        width: max-content;
        text-align: left;
    }

    .icon-container:hover .info-list {
        opacity: 1;
        visibility: visible;
        width: 330px;
        margin-top: -21px;
    }



    .info-list li {
        transition: color 0.2s ease, transform 0.1s ease;
    }

    .info-list li:hover {
        color: #ED5303;
        transform: translateX(5px);
    }

    

    .info-list li {
        padding: 5px 0;
    }

    @media (max-width: 768px) {
        .icon-container img {
            width: 40px;
        }

        .icon-container h4 {
            font-size: 1.2rem;
        }

        .info-list {
            width: 80%;
        }
    } */


    .introduction h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .introduction h4 {
        font-size: 1.25rem;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .introduction p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .introduction .video-wrapper {
        position: relative;
        max-width: 100%;
        margin: auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .introduction .video-wrapper img {
        width: 100%;
        height: auto;
    }

    .introduction .video-controls {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        color: white;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        padding: 10px 20px;
    }

    .introduction .video-controls a {
        color: white;
        text-decoration: none;
    }





    .pot-on-bid .card {
        background-color: #FF7F50;
        color: black;
        border: none;
        border-radius: 10px;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    .pot-on-bid .card .card-body {
        padding: 10px;
    }


    .pot-on-bid h2 {
        color: #000;
        font-family: 'Roboto Slab', sans-serif;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .pot-on-bid .card .card-title img {
        width: 20px;
        margin-right: 5px;
    }

    .pot-on-bid .card .card-title p {
        display: inline-block;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .pot-on-bid .card .card-details p {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .pot-on-bid .btn-link {
        color: black;
        text-decoration: none;
        padding: 5px 0;
    }

    /* .pot-on-bid .btn-link:hover {
        text-decoration: underline;
    } */

    .pot-on-bid .card .card-title p strong,
    .pot-on-bid .card .card-details p strong {
        color: black;
    }


    .custom-card {
        margin-bottom: 20px;
        border: none;
    }

    .custom-card .card-img-top {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .custom-card .card-body {
        background-color: #ff6600;
        color: #000;
        padding: 15px;
        text-align: left;
    }

    .custom-card .card-title h5 {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .custom-card .card-title p {
        font-size: 0.9rem;
    }

    .custom-card .card-details p {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .custom-card .btn-primary {
        background-color: #004d40;
        border: none;
        font-size: 1rem;
        padding: 10px 20px;
        color: white;
    }

    .custom-card .btn-primary:hover {
        background-color: #00332e;
    }



    .testimonials {
        background-color: #1D940F;
        color: white;
        text-align: left;
    }

    .testimonials h2 {
        color: white;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: left;
    }

    .testimonial-card {
        background-color: #1D940F;
        color: white;
    }

    .testimonial-card h5{
        color: black;
    }

    .testimonial-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .testimonial-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .google-logo {
        margin-left: auto;
        width: 30px;
        height: 30px;
    }

    .testimonial-rating i {
        color: #ffcc00;
    }

    .testimonial-card .card-title {
        font-size: 1rem;
        font-weight: bold;
    }

    .testimonial-card .card-text {
        font-size: 0.9rem;
    }

    .read-more-link {
        color: #ff6600;
        font-weight: bold;
        text-decoration: none;
    }


    .partners h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .partners img {
        width: 100px;
        margin-bottom: 20px;
    }

    .recent-rental {
        text-align: left;
    }

    .recent-rental h2 {
        color: #046a38;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .rental-card {
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .rental-card .card-body {
        padding: 15px;
    }

    .rental-card .card-location {
        font-size: 0.8rem;
        color: #747874;
        margin-bottom: 10px;
    }

    .rental-card .card-location img {
        width: 15px;
        height: 15px;
        margin-right: 5px;
    }

    .rental-card .card-text {
        font-size: 0.9rem;
        color: #333;
        margin-bottom: 10px;
    }

    .view-more-link {
        color: #046a38;
        font-weight: bold;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .view-more-link:hover {
        text-decoration: underline;
    }


    .trending-property {
        text-align: left;
    }

    .trending-property h2 {
        color: #046a38;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .trending-card {
        border: none;
        margin-bottom: 20px;
    }

    .trending-property .text-left{
        color: #000;
        size: 0.5rem;
        margin-top: 20px;
    }

    .trending-card .card-img-top {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .trending-card .card-img-overlay {
        background: rgba(0, 0, 0, 0.5);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .trending-card .overlay-content {
        color: white;
    }

    .trending-card .badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color:  rgb(200, 187, 187);
        color: white; /* Change text color to white */
        font-size: 0.75rem;
        padding: 2px 5px;
        border-radius: 3px;
    }


    .trending-card .description {
        font-family: 'Roboto Slab', sans-serif;
        margin-bottom: 0; /* Remove any default margin */
        position: absolute; /* Position the paragraph absolutely */
        bottom: 10px; /* Distance from the bottom */
        left: 10px; /* Distance from the left */
        color: white; /* Text color */
        display: flex;
        gap: 0.375rem;
        flex-direction: column;
        font-size: 14px;
    }


    .section-background {
        background-color: #0b6623;
        color: white;
        padding: 60px 0;
    }

    .section-background h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-background p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .icon-box {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding: 20px;
    }

    .icon-box img {
        width: 50px;
        margin-bottom: 20px;
    }

    .service-box {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .service-box h4 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 10px;
    }

    .service-box p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 20px;
    }

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

    .service-box ul li {
        font-size: 1rem;
        color: #333;
        margin-bottom: 10px;
    }

    .service-box img {
        border-radius: 10px;
    }

    .bar {
        height: 7px;
        background-color: #ded6d6;
        position: absolute;
        left: 0;
        right: 0;
    }

    .bar-top {
        top: 0;
    }

    .bar-bottom {
        bottom: 0;
    }

    .faq-section {
        background-color: #f9f9f9;
        padding: 50px 0;
    }

    .faq-section h2 {
        margin-bottom: 20px;
        text-align: center;
    }

    .faq-section p {
        text-align: center;
        margin-bottom: 40px;
    }

    .faq-section .card {
        border: none;
        margin-bottom: 10px;
        background-color: #fff;
    }

    .faq-section .card-header {
        background-color: #F2F8F7;
        border: none;
        cursor: pointer;
    }

    .faq-section .card-header.active {
        background-color: #eaf9f7;
    }

    .faq-section .card-body {
        display: none;
        padding: 20px;
    }

    .faq-section .card-header .btn {
        text-align: left;
        width: 100%;
        color: #000;
        font-weight: bold;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
    }

    .team-section {
        /* padding: 60px 0 !important; */
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }


    .team-section img{
        border-radius: 10px;
    }


    .team-section .team-member {
        margin-bottom: 30px;
    }

    .team-section .team-member img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }

    .team-section h5 {
        font-size: 1.1rem;
        font-weight: bold;
        margin-top: 10px;
    }

    .team-section p {
        font-size: 0.9rem;
        color: #333;
    }

    .team-section a {
        color: #ff6600;
        text-decoration: none;
    }

    .team-section a:hover {
        text-decoration: underline;
    }


    .footer {
        background-color: #02732A;
        color: white;

    }

    .footer h5 {
        color: orange;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .footer a {
        color: white;
        text-decoration: none;
    }

    .footer a:hover {
        text-decoration: underline;
    }

    .footer .social-icons a img {
        width: 24px;
        margin: 0 10px 10px 0;
    }

    .footer .list-unstyled {
        list-style: none;
        padding-left: 0;
    }

    .footer .list-unstyled li{
        font-size: 15px;
    }

    .footer .list-inline {
        padding-left: 0;
        list-style: none;
    }

    .footer .list-inline-item {
        display: inline;
        margin: 0 10px;
    }

    .footer .list-inline-item a {
        color: white;
        text-decoration: none;
    }

    .footer .list-inline-item a:hover {
        text-decoration: underline;
    }
