/********** Template CSS **********/
:root {
    --primary: #265ba3;
    --secondary: #f49430;
    --light: #effdf5;
    --darkblue: #265ba3;
    --blue: #393186;
    --darkred: #720000;
    --lightblue: #008dd2;
    --white: #ffffff;
    --gold: #ccaa64;
    --black: #000000;
}
.whatsaap-icon {
    position: fixed;
    background-color: var(--primary);
    left: 45px;
    bottom: 45px;
    z-index: 99;
}
.phone-icon {
    position: fixed;
    background-color: var(--primary);
    right: 45px;
    bottom: 95px;
    z-index: 99;
}
.back-to-top {
    position: fixed;
    display: none;
    background-color: var(--primary);
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 0rem;
    transition: 0.5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: 0.5s;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: bold;
}

.navbar-light .navbar-brand {
    height: 90px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--darkblue);
    font-weight: 500;
}

/*** Header ***/

/*.no-js .owl-carousel,*/
/*.owl-carousel.owl-loaded {*/
/*  display: block;*/
/*  height: 700px;*/
/*}*/
/* .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 700px;
} */
/* .header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
 justify-content: space-between !important; 
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 10px 0px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
  text-align: center;
} */
.header-carousel .owl-nav {
    position: relative;
    top: 0;
    /* left: -25px; */
    transform: translateY(-500%);
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--darkblue);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #dddddd;
}

.logo {
    height: 100px;
    width: 100px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
/*** Icon ***/
.icon {
    /* padding: 15px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    border-radius: 5px;
    border: none !important;
    /* border: 1px dashed var(--primary) !important; */
}

/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}

/*** Category ***/
.cat-item div {
    background: #ffffff;
    border: 1px dashed #3d9237;
    transition: 0.5s;
}

/* .cat-item:hover div {
  background: var(--primary);
  border-color: transparent;
} */

.cat-item div * {
    width: 100%;
    transition: 0.5s;
}

/* .cat-item:hover div * {
    color: #ffffff !important;
} */

/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--darkblue);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #ffffff;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.property-item img {
    transition: 0.5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed #3d9237 !important;
}

.property-item .border-end {
    border-right: 1px dashed #3d9237 !important;
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.team-item .btn {
    color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.team-item .btn:hover {
    color: #ffffff;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}

/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed #3d9237 !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--darkblue);
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}
@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}
@media (max-width: 600px) {
    .header-carousel img.img-fluid {
        height: 24rem !important;
    }
}
@media (max-width: 430px) {
    .header-carousel img.img-fluid {
        height: 20rem !important;
    }
    .header-carousel .owl-nav {
        transform: translateY(-350%) !important;
    }
}
@media (min-width: 992px) {
    .header {
        margin-top: -134px;
    }
}
@media screen and (min-width: 600px) and (max-width: 1200px) {
    .header-carousel .owl-nav {
        transform: translateY(-460%) !important;
    }
}

.btn.btn-primary,
.search,
.btn-outline-primary.active,
.bg-primary {
    background-color: var(--primary) !important;
}
.btn-dark,
.bg-dark {
    background-color: var(--darkblue) !important;
}
.text-primary {
    color: var(--primary) !important;
}
h1 {
    font-size: 32px;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size: 18px;
}
h4 {
    font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
b,
p,
div,
label {
    font-family: "DM Sans" !important;
}
.blog {
    height: 700px;
}

.btn.btn-info {
    background-color: var(--white);
    border: 1px solid #3d9237;
    color: var(--primary);
}
.btn.btn-info:hover {
    background-color: var(--primary);
    border: none;
    color: var(--white);
}
.blog-view p {
    font-size: 0.8rem;
    margin-bottom: 0px;
}
.blog-view {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.blog-content p {
    font-size: 0.9rem;
}
.bg-light {
    background-color: #f8f8f8 !important;
    border-radius: 5px;
}
/* .custom-radius {
    border-radius: 10px;
} */

/* consultant and developer css */
h2 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.feature {
    width: 15%;
    margin: 30px;
    text-align: center;
}

.feature-icon {
    background-color: #5a4a82;
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    padding: 0.3rem;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 50%;
    height: 50%;
    margin: 25%;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.hero {
    text-align: center;
    padding: 50px 20px;
    /* background-image: url("../img/bgimg.png"); Add your background pattern image */
    /* background-repeat: repeat; */
    /* background-size: cover; */
    /* background-position: center; */
    background: #265ba3;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.hero a.btn.btn-dark {
    font-size: 16px;
    padding: 10px 30px;
    background-color: #000000 !important;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #444444;
}
.vision {
    ul {
        list-style-type: disclosure-closed;
        padding: 0 5rem;
    }
    ul li {
        color: var(--primary);
        padding: 10px;
        border-radius: 4px;
    }
    h1,
    h2 {
        color: var(--primary);
        text-align: center;
        margin-bottom: 20px;
    }
    h3 {
        color: var(--primary);
        margin-bottom: 10px;
    }
}
.expert {
    h1 {
        font-size: 2rem;
        font-weight: 400;
        text-align: center;
        margin-bottom: 1rem;
    }
    h2 {
        color: var(--blue);
        text-align: center;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 2rem;
    }
    img {
        width: 100%;
        margin: 0 auto;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    p {
        text-align: center;
        margin: 0.5rem auto 0rem;
        font-weight: bold;
        color: #333;
    }
    .expert_div {
        margin: 1.5rem auto;
        text-align: center;
        transition: transform 0.3s ease;
        border-radius: 0.5rem;
        padding: 1rem;
    }
    span {
        text-align: center;
        display: block;
        width: 100%;
        margin: 0.5rem auto 0rem;
        padding: 0.3rem;
        border-radius: 0.2rem;
        font-weight: bold;
        color: var(--white);
        background-color: var(--primary);
    }
    .expert_div:hover {
        transform: translateY(-10px);
    }
}

/* tax service css */
.wizard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.wizard-step {
    text-align: center;
    flex-grow: 1;
    position: relative;
}
.wizard-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #dcdcdc;
    z-index: -1;
}
.wizard-step .step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #007bff;
    display: inline-block;
}
.wizard-step.active .step-icon {
    background-color: #007bff;
}
.wizard-content {
    display: none;
}
.wizard-content.active {
    display: block;
}

.section-title {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}

.plan-card {
    background-color: #fff8e5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-info {
    display: flex;
    align-items: center;
}

.plan-icon {
    padding: 15px;
    border-radius: 50%;
    margin-right: 20px;
}

.plan-icon img {
    width: 150px;
}
input#radio_button {
    width: 3rem;
    height: 1.3rem;
}
.plan-details {
    max-width: 500px;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.plan-applicable {
    color: #6c757d;
    margin-bottom: 10px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.plan-features li i {
    color: var(--primary);
    margin-right: 1rem;
}

.price-div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-price {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    text-align: right;
}

.plan-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin-top: 35px;
}

.plan-link:hover {
    text-decoration: underline;
}

.card.for-family {
    border: none;
    background-color: #e9f2f8 !important;
}
input#flexSwitchCheckDefault {
    width: 3.5rem;
    height: 1.8rem;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button.new a {
    color: #fff;
    background-color: #265ba3;
}
button.new {
    border: none;
}
.owl-carousel.header-carousel.owl-loaded.owl-drag{
    height: 460px;
}
@media only screen and (max-width: 768px){
    .owl-carousel.header-carousel.owl-loaded.owl-drag{
        height: 300px;
    }
    .feature {
        width: 50%;
        margin: 30px 0 0 0;
    }
    .no-js .owl-carousel, .owl-carousel.owl-loaded{
        height: auto;
    }
}
/* @media only screen and (max-width: 576px){
    .header-carousel{
        height: auto !important;
    }
} */
.news-view.my-2.mx-3 {
    display: flex;
    justify-content: space-between;
}