@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
    --heading: "Nunito Sans", sans-serif;
    --base: "Nunito Sans", sans-serif;
    --white-color: #fff;
    --black-color: #000;
    --theme-color: #0E3B5E;
    --theme-color2: #F7941E;
    --heading: #0E3B5E;
    --bg-gray: #f5f5f5;
    --bg-gray2: #edf1fc;
    --bs-transition: .3s ease;
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 15px;
    color: var(--black-color);
    margin: 0;
    padding: 0;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p{
    font-family: var(--base);
    font-size: 1.1rem;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading);
    font-weight: 600;
}

.sticky {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 999;
}

.container-fluid {
    width: 98%;
}

.btn1 {
    border-radius: 3rem;
    border: 0;
    font-size: 1.05rem;
    padding: 0.5rem 1.25rem;
    position: relative;
    display: inline-block;
    color: var(--white-color);
    background: var(--heading);
    outline: none;
    text-decoration: none;
    font-weight: 600;
}

.btn1:hover {
    background-image: linear-gradient(135deg, var(--theme-color2) 0%, var(--theme-color) 100%);
}

.btn2 {
    border-radius: 3rem;
    font-size: 1.05rem;
    padding: 0.65rem 1.75rem 0.75rem;
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    outline: none;
    text-decoration: none;
    font-weight: 600;
}

.btn2:hover {
    color: var(--sub-heading);
    border-color: var(--sub-heading);
}

.title{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--theme-color2);
}
.bg-gray{
    background: var(--bg-gray2);
}
.pulse {
    animation: pulse-animation 2s infinite;
  }
  
@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 46, 251, 0.42);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.pulse2 {
    animation: pulse-animation2 2s infinite;
  }
  
@keyframes pulse-animation2 {
    0% {
      box-shadow: 0 0 0 0px rgba(205, 168, 2, 0.42);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}
section{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.slick-prev, .slick-next{
    background-color: var(--theme-color);
    border-radius: 100%;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
    background-color: var(--theme-color2);
}
/* ================================ 
Navbar Section
===================================*/
.navbar {
    position: relative;
    /* width: 100%;
    top: 0;
    left: 0; */
    z-index: 999;
}

.navbar .navbar-brand>img {
    height: 50px;
}
@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(20px); */
        transition: all .3s ease-in;
        visibility: hidden;
        /* min-height: 50vh; */
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 8px;
        border: 0;
        min-width: 16rem;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(15, 39, 125, 0.4);
    }
    .dropdown-toggle::after{
        position: absolute;
        top: 46%;
    }
    

    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -52px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: #101010;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1.5rem;
        text-decoration: none;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--theme-color);
        background: var(--bg-light);
    }
}
.navbar .nav-link {
    padding: 10px 20px !important;
    text-decoration: none;
    color: var(--black-color);
    font-weight: 600;
    /* font-size: 1.1rem; */
    /*text-transform: uppercase;*/
}
.dropdown-menu li a {
    padding: 0.35rem 1rem;
    display: block;
    font-size: 14px;
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

.scroll-on .nav-link {
    color: #121212;
}

.navbar .navbar-toggler i {
    color: var(--black-color);
}

.scroll-on .navbar-toggler i {
    color: #121212;
}


/* Banner Panel */
/* ====================================== */
.bannerPanel {
    position: relative;
    /* height: 90vh; */
    /* overflow: hidden;
    background-color: var(--white-color);
    background-image: url(../images/bannerbg.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s; */
}
.bannerPanel .slick-slide img {
    height: 85vh;
    object-fit: cover;
    width: 100%;
    display: inline-block;
}
/* .bannerPanel::before{
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
} */
.bannerContent {
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    height: 100%;
    color: var(--white-color);
}
.bannerPanel .slick-slide{
    margin: 0;
}
.bannerPanel .slick-prev, .bannerPanel .slick-next{
    background-color: var(--theme-color2);
    z-index: 9;
}
.bannerPanel .slick-next{
    right: 35px;
}
.bannerPanel .slick-prev{
    left: 35px;
}

/* Project Panel */
.projectMain{
    position: relative;
    overflow: hidden;
    background: #ebecf5;
    border: 3px solid var(--white-color);
    box-shadow: 0px 5px 10px 0px rgba(21, 22, 29, 0.1);
}
.projectMain .upperBox{
    height: 180px;
    position: relative;
}
.projectMain .upperBox .timePt{
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 3rem;
    font-size: 14px;
    display: inline-table;
}
.rounded-img {
    border-top-left-radius: 0.625rem !important;
    border-top-right-radius: 0.625rem !important;
}
.projectMain p{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Home Contact */
.homeEnquiry{
    background: #0E3B5E url(../images/skyline.png) bottom;
    background-repeat: repeat-x;
    padding: 2rem 0;
    /* min-height: 300px; */
}
.homeEnquiry h3{
    font-size: 2rem;
    position: relative;
    font-weight: 700;
}

/* Location */
.curated-box {
    height: 200px;
    display: block;
    background-position: center center;
    background-size: cover;
    /* margin-bottom: 30px; */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.curated-box::before, .curated-box::after {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    z-index: 9;
}
.curated-box::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}
.curated-box::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}
.curated-box:hover::before, .curated-box:hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.curated-box .title {
    width: 100%;
    font-weight: 600;
    font-size: 1.15rem;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.curated-box .title {
    top: 0;
    right: 0;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, .4);
    left: 0;
    bottom: 0;
    position: absolute;
    height: 100%;
    margin: 0;
}
.curated-box .title small{
    background: var(--theme-color2);
    font-size: 14px;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem 0.35rem;
}

/* Developer Section */
.developerMain{
    background: #f1ede0;
}
.developerlogo{
    height: 120px;
    object-fit: contain;
    width: 100%;
}
.btns_group {
    gap: 20px;
}
.btn_hotline {
    gap: 12px;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.btn_hotline .btn_icon {
    font-size: 34px;
    color: var(--bs-primary);
}
.btn_hotline .btn_text {
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-body-color);
}
.btn_hotline .btn_text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 0 0;
    color: var(--black-color);
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

/* Review */
.reviewContent{
    background: #E4EBFE;
    position: relative;
    border-radius: 3rem;
    padding: 3rem;
}
.testimonial-item {
    padding: 30px;
    box-shadow: 0px 3px 12px 0px rgb(62 65 159 / 8%);
    position: relative;
    overflow: hidden;
    background: var(--white-color);
    padding-right: 80px;
}
.testimonial-item:before {
    font-family: 'remixicon' !important;
    content: "\EC51";
    font-size: 3.75rem;
    line-height: 1;
    color: #eaedfd;
    position: absolute;
    right: 10px;
    top: 10px;
}

.whyBox{
    background: #f8f9fa;
    padding: 26px 26px 32px;
    border-radius: 1rem;
    position: relative;
    border: 1px dashed #ddd;
    height: 100%;
}
.whyBox .whyicon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin: 0 0 15px 0;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--theme-color);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(var(--bs-light)));
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bs-light) 100%);
    -webkit-box-shadow: 0 1px 0 0 var(--bs-border-color), 0 2px 3px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 0 0 var(--bs-border-color), 0 2px 3px 0 rgba(0, 0, 0, 0.12);
}
.whyBox h4{
    font-size: 1.15rem;
}
.whyBox p{
    font-size: 14px;
}


/* Footer */
footer{
    padding: 3rem 0 1.5rem;
    background: var(--black-color);
    position: relative;
    color: var(--white-color);
}
footer .f-flat ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .f-flat ul li {
    width: 20%;
}

footer .f-flat a {
    display: block;
    color: var(--bg-gray2);
    font-weight: 300;
    padding-bottom: 0.3rem;
}

footer .f-flat ul li a:hover,
footer .f-flat ul li a:focus {
    text-decoration: underline;
    color: var(--theme-color2);
}
footer hr{
    opacity: 0.15;
    margin: 1.5rem 0;
}


/* Filter Panel */
.filter-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.filter-accordion .accordion .accordion-item {
    border-radius: 0;
    display: block;
    margin-bottom: 15px;
    background: var(--white-color);
    border: 1px solid #e6eaf1;
    padding: 1rem 1.5rem;
    box-shadow: 2px 2px 0 #A7B8D2;
}

.filter-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.filter-accordion .accordion .accordion-title {
    padding: 0 60px 0 0;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
}

.filter-accordion .accordion .accordion-title i {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.filter-accordion .accordion .accordion-title.active {
    color: #212121;
}

.filter-accordion .accordion .accordion-title.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.filter-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: 1rem;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.filter-accordion .accordion .accordion-content.show {
    display: block;
}

.filter-accordion .accordion .accordion-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.filter-accordion .accordion .accordion-content ul li {
    color: #3e555f;
    position: relative;
    margin-bottom: 12px;
    line-height: 25px;
    padding-left: 15px;
}

.filter-accordion .accordion .accordion-content ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #086AD8;
    border-radius: 50%;
}

.filter-accordion .accordion .accordion-content ul li:last-child {
    margin-bottom: 0;
}

.filter-accordion .tag {
    font-size: 12px;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid var(--theme-color2);
    color: var(--theme-color2);
    display: inline-block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}
.filter-accordion .tag:hover, .filter-accordion .tag.active{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white-color);
}

.filter_select
{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff !important;
}

/* From Uiverse.io by SteveBloX */ 
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.ball {
  --size: 16px;
  width: var(--size);
  height: var(--size);
  border-radius: 11px;
  margin: 0 10px;

  animation: 2s bounce ease infinite;
}

.blue {
  background-color: #4285f5;
}

.red {
  background-color: #ea4436;
  animation-delay: 0.25s;
}

.yellow {
  background-color: #fbbd06;
  animation-delay: 0.5s;
}

.green {
  background-color: #34a952;
  animation-delay: 0.75s;
}

@keyframes bounce {
  50% {
    transform: translateY(25px);
  }
}

.btn-close {
    position: absolute;
    right: -0.5em;
    top: -0.5em;
    padding: 0.5em;
    outline: none;
    box-shadow: none;
    border-radius: 2rem;
}
.sidebtn{
    position: fixed;
    right: 0;
    bottom: 80px;
    z-index: 999;
}

.whatsapp{
    position: fixed;
    bottom: 20px;
    right: 5px;
    z-index: 999;
    animation: animate 2s linear infinite;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .4);
    border-radius: 100%;
}
.whatsapp img{
    width: 50px;
}
@keyframes animate { 
    0% { 
        transform: scale(1.05); 
    } 
    50% { 
        transform: scale(0.9); 
    } 
    0% { 
        transform: scale(1.05); 
    } 
} 



/* ======================================== */
/* RESPONSIVE PANEL */
/* ====================================================== */
@media(max-width:800px){
    .bannerPanel .slick-slide img{
        height: auto;
    }
    .navbar-nav{
        text-align: center;
        margin-top: 0.75rem;
    }
    .reviewContent{
        padding: 1rem;
        border-radius: 1rem;
    }
    footer .f-flat ul li{
        width: 33.33%;
    }
    .slick-prev{
        left: -5px;
        z-index: 99;
    }
    .slick-next{
        right: -5px;
        z-index: 99;
    }
}
@media(max-width:480px){
    footer .f-flat ul li{
        width: 50%;
    }
}

.search-result
{
    border: 1px solid #fff;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  margin-right: 10px;
  background: #faca22;
  color: #000;
}