    /********** Template CSS **********/
:root {
    --primary: #F77D0A;
    --secondary: #2B2E4A;
    --light: #F4F5F8;
    --dark: #1C1E32;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

p.m-0 {
    font-size: 14px;
}
.my-p-4 {
    padding: 0.3rem !important;
}
h4, .h4 {
    font-size: 1.3rem;
}
h3, .h3 {
    font-size: 1.6rem;
}
.btn-lg-square {
    width: 46px;
    height: 46px;
}
.mt-50{
    margin-top:50px !important;
}
.mb-50{
    margin-bottom:50px !important;
}
.pt-50{
    padding-top:50px !important;
}
.pb-50{
    padding-bottom:50px !important;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 30px;
    z-index: 99;
}

.nav-bar::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: var(--dark);
}

.nav-bar::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
    padding: 30px 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

li {
    line-height: 2;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 15px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 30, 50, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 450px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(28, 30, 50, .7), rgba(28, 30, 50, .7)), url(../img/urbania.jpg);
    background-attachment: fixed;
    background-position: center center;
}

@media (max-width: 991.98px) {
    .page-header {
        height: 300px;
    }
}

.service-item {
    height: 320px;
    background: var(--light);
    transition: .5s;
}

.service-item:hover,
.service-item.active {
    background: var(--secondary);
}

.service-item h1,
.service-item h4 {
    transition: .5s;
}

.service-item:hover h1,
.service-item.active h1 {
    color: var(--dark) !important;
}

.service-item:hover h4,
.service-item.active h4 {
    color: var(--light);
}

.rent-item {
    padding: 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.rent-item:hover,
.rent-item.active {
    background: var(--secondary);
}

.rent-item h4 {
    transition: .5s;
}

.rent-item:hover h4,
.rent-item.active h4 {
    color: var(--light);
}

.team-item {
    padding: 30px 30px 0 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover,
.owl-item.center .team-item {
    background: var(--secondary);
}

.team-item h4 {
    transition: .5s;
}

.owl-item.center .team-item h4,
.owl-item.center .rent-item h4 {
    color: var(--light);
}

.team-item .team-social {
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    background: var(--light);
}

.owl-item.center .team-item .team-social,
.owl-item.center .rent-item {
    background: var(--secondary);
}

.team-item:hover .team-social {
    opacity: 1;
    background: var(--secondary);
}

.team-carousel .owl-nav,
.related-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.vendor-carousel .owl-dots,
.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-carousel .owl-dot,
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    transition: .5s;
}

.vendor-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

#blog-img {
    width: 700px;
    height: 150px;
}

.testimonial-carousel .owl-item .testimonial-item {
    height: 350px;
    transition: .5s;
    background: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--secondary);
}

.testimonial-carousel .owl-item .testimonial-item h1,
.testimonial-carousel .owl-item .testimonial-item h4 {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item h1 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h4 {
    color: var(--light);
}

.bg-banner {
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/urbania.jpg);
    background-attachment: fixed;
    background-position: 20% 10% 255% 10%;
}


/* custom css */

/* gallery css start */
.r-gallery-part ul li {
    float: left;
    width: 33.33%;

    list-style: none;
    position: relative;
    cursor: pointer;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Container styles */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 0px;
}

/* Flexbox styles for the ul element */
.container ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Styles for the li elements */
.container ul li {
    flex: 1 0 21%;
    /* Flex grow, flex shrink, and flex basis */
    margin: 1.5%;
    /* Margin between items */
    box-sizing: border-box;
}

.container ul li a {
    display: block;
}

.container ul li img {
    width: 100%;
    height: auto;
    display: block;
}

/* Media queries for responsiveness */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container ul li {
        flex: 1 0 21%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 1199px) {
    .container ul li {
        flex: 1 0 28%;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
    .container ul li {
        flex: 1 0 45%;
    }
    .blog-detail {
    box-shadow: 0 0 5px;
    padding: 30px 0px !important;
    }
    .p-5 {
    padding: 2rem !important;
    }
    .carousel-control-prev, .carousel-control-next{
        width: 15% !important;
    }
    .m-5 {
        margin: 1rem !important;
    }
    /* .col-lg-10{
        padding-right: 0;
        padding-left: 0;
    } */
    .container{
        padding: 0;
    }
    .w-75 {
        width: 95% !important;
    }
    p {
        text-align: justify;
    }
    .mt-none{
        display: none;
    }
    .page-header{
        margin-bottom: 0;
    }
    .display-3 {
        font-size: 25px !important;
    }
    .logo img{
        height: 35px !important;
    }
    /*a.float {*/
    /*    display: block;*/
    /*}   */
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .container ul li {
        flex: 1 0 100%;
        margin: 5px 0;
        /* Adjust margin for smaller screens */
    }
}


/* gallery css End */

.call-icon {
    color: white;
}


/* About page Animation css start */

.zoom-effect {
    transition: transform 0.5s ease;
}

.zoom-effect:hover {
    transform: scale(1.1);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s ease-in-out;
}

/* About page Animation css End */






/* Search Form css Start */


.form-group.has-icon.has-label {
    position: relative;
}

.form-group.has-icon.has-label .form-control {
    padding-right: 38px;
    /* Adjusted padding for the input field */
}

.form-group.has-icon.has-label .form-control-icon {
    position: absolute;
    top: 70%;
    right: 10px;
    /* Adjusted right position for the icon */
    transform: translateY(-50%);
    pointer-events: none;
    /* Ensure the icon doesn't interfere with input field interaction */
    z-index: 2;
    /* Ensure the icon is above the input field */
}


/* Search Form css End */

/* Whatsapp icon css start */
.float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 15px;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    z-index: 100;
}

.whatsapp-icon {
    text-align: center;
}

/* Whatsapp icon css end */
.carousel-control-prev, .carousel-control-next{
    width: 5%;
}
.logo img{
    height: 65px;
}
.p-10 img {
    margin-bottom: 10px;
}



.carousel-start{
    margin-bottom: 50px;
    position: relative;
    bottom: 43px;
}


/* Styles for screens smaller than 768px (typically tablets and mobile devices) */
@media screen and (max-width: 768px) {
    .carousel-start {
        margin-bottom: 50px; /* Adjusted margin for smaller screens */
        bottom: 0px;       /* Adjusted bottom for smaller screens */
    }
}

/* Styles for screens smaller than 480px (typically small mobile devices) */
@media screen and (max-width: 480px) {
    .carousel-start {
        margin-bottom: 30px; /* Further adjusted margin for small screens */
        bottom: 0px;        /* Further adjusted bottom for small screens */
    }
}


@media screen and (max-width: 480px) {
    .call-now {
       width:94px;
       position:relative;
       bottom:10px;
    }
}

@media screen and (max-width: 768px) {
  .call-now {
       width:94px;
       position:relative;
       bottom:10px;
    }
}
.display-3 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
}
.display-4 {
    font-size: 2.5rem;
}
.container-fluid.bg-secondary.py-5.px-sm-3.px-md-5 p {
    color: #fff;
}
.wht p {
    color: #000;
}
.wht li {
    color: #000;
}
.float-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 15px;
    background-color: #f99406;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.blog-detail {
    box-shadow: 0 0 5px;
    padding:30px;
}
.blog-detail p {
    text-align: justify;
    font-size: 15px;
}
.blg-pg p {
    color: #000;
}
.blg-pg ul {
    color: #000;
    text-align: justify;
}
.blg-pg li {
    border: solid 1px #ffc107;
    padding: 18px;
    text-align: left;
    border-radius: 15px;
    line-height: 24px;
    font-size: 14px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.blog-section-inner img {
    width: 100%;
}

.blog-section-inner {
    box-shadow: 0 0 15px #cccccc57;
    background: #fff;
    height: 100%;
}
table {
    width: 60%;
    border-collapse: collapse;
    margin: 20px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}
th {
    background-color: #f77d0a;
    color: white;
    font-size: 16px;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:hover {
    background-color: #f1f1f1;
}
td strong {
    color: #f77d0a;
}

ol {
    padding: 0;
}
.urbania-text {
    padding: 20px;
}
.urbania-text h4 {
    font-size: 14px;
}
section.blog-section {
    padding: 50px 0px;
    padding-top: 0;
}

section.blog-section .col-md-4 {
    padding: 12px;
}


.accodian_section {
    padding: 20px 0px;
}

h1.display-3.text-uppercase.text-white.mb-3 {
    text-align: center;
}


img.w-50.mb-4.fade-in.zoom-effect {
    width: 100% !important;
}

ul.inner_list {
    display: block !important;
    list-style-type: disc !important;
    margin-bottom: 15px !important;
}
ul.inner_list li {
    padding: 2px !important;
    margin: 0px 0px 0px 23px !important;
    border: none !important;
}


.faq-section {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background:#2b2e4a;
   
    color: white;
    border: none;
    padding: 30px;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
    border-radius: 5px;
}

.faq-question:hover {
    background: #f77d0a;
    color: #000;
}

.faq-answer {
    display: none;
    padding: 15px;
    font-size: 16px;
    color: #333;
    background: #f1f1f1;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    margin-top: 5px;
}

















