/* Define global colors in the :root selector */
:root {
    --primary-color: #a24857;
    /* Maroon */
    --secondary-color: #F3EAE0;
    /* Off White */
    --accent-color: #a24857;
    --background-color: #a24857;
    --text-color: #000;
    --text-color-2: #fff;
    --heading-color: #a24857;
    --heading-color-2: #000000;
    --hover-color: #bf5567;
    --stroke-color: #D4D4D4;
    --f-stroke-color: #ffffff80;
}

/* Define the DM Sans font locally */
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Thin.ttf') format('truetype');
    font-weight: 100;
    /* Thin weight */
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Light.ttf') format('truetype');
    font-weight: 300;
    /* Light weight */
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    /* Regular weight */
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Medium.ttf') format('truetype');
    font-weight: 500;
    /* Bold weight */
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    /* Semi Bold weight */
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.ttf') format('truetype');
    font-weight: 700;
    /* Bold weight */
    font-style: normal;
}



html,
body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    font-family: 'DM Sans', sans-serif;
    scroll-behavior: smooth;
    color: var(--text-color);
}

.side-nav-wrapper {
    width: 240px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 115px);
    /* Adjust if footer height varies */
    overflow-y: auto;
    padding-top: 45px;
}
.main-content {
    width: calc(100% - 240px);
}
main {
    overflow-y: auto;
}

h1 {
    font-family: 'Playfair Display';
    color: var(--heading-color);
    font-size: 80px;
    line-height: 82px;
    font-weight: 900;
}

h2 {
    font-family: 'Playfair Display';
    color: var(--heading-color);
    font-size: 44px;
    line-height: 52px;
    font-weight: 700;
}

h3 {
    font-family: 'Playfair Display';
    color: var(--heading-color);
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

h4 {
    font-family: 'Playfair Display';
    color: var(--heading-color);
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
}

h5 {
    font-family: 'Playfair Display';
    color: var(--heading-color-2);
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
}

h6 {
    font-family: 'Playfair Display';
    color: var(--heading-color-2);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.text-color {
    color: var(--accent-color);
}
.ff-dm{
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    padding: 10px 20px;
    border: 1px solid var(--background-color);
    border-radius: 5px;
    background-color: var(--background-color);
    color: #fff;
}

.btn-primary:hover, .btn-primary:active {
    background-color: var(--hover-color) !important;
    border: 1px solid var(--background-color) !important;
}

.btn-contact {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    padding: 10px 20px;
    border: 1px solid var(--background-color);
    border-radius: 5px;
    color: var(--accent-color);
}

.btn-contact:hover {
    background-color: var(--background-color);
    color: var(--text-color-2)
}
.btn-purchase{
    background-color: var(--background-color);
    color: #fff;
}
.btn-purchase:hover{
    background-color: var(--hover-color);
    border: 1px solid var(--hover-color);
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.section-text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}


.site-loader {
  position: fixed;
  z-index: 9999;
  background: #fff;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-loader .spinner {
  width: 68px;
  height: 68px;
  border: 10px solid #e0e0e0;
  border-top: 10px solid var(--primary-color); /* Use your primary color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
body.body-loaded #site-loader {
  display: none;
}


body.page-content{
    /* font-size: 18px; */
    line-height: 30px;
}
.page-content .section-heading{
    text-align: left;
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 10px;
}
.page-content .styled-heading{
    padding-left: 10px;
    border-left: 4px solid var(--heading-color);
}
.page-content .section-wrap{
    padding: 40px 0;
}
.page-content ul:not(.nav) li:not(:last-child),
.page-content ol:not(.nav) li:not(:last-child){
    margin-bottom: 10px;
}


.sticky-header, #header-include {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    /* or your header background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* optional */
}

/* top-bar style */
.top-bar {
    background-color: var(--background-color);
    color: var(--text-color-2);
    min-height: 40px;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color-2);
    font-weight: 400;

    .call-us {
        text-decoration: none;
        color: var(--text-color-2);
    }

    .icon {
        width: 20px;
        height: 20px;
    }

    .input-group {
        width: 100%;
        background-color: #fff;
        border-radius: 5px;
    }

    .language-dropdown {
        .dropdown-link {
            text-decoration: none;
            color: var(--text-color-2);
            font-size: 14px;
            line-height: 20px;

            i {
                position: relative;
                font-size: 12px;
                top: 1px;
            }
        }

        .dropdown-menu {
            font-size: 14px;
            line-height: 20px;
            font-weight: 400;
        }
    }

    .hamburger-menu {
        position: relative;
    }

    .hamburger-icon {
        font-size: 18px;
        line-height: 20px;
        cursor: pointer;
        color: white;
    }

    .hamburger-menu .dropdown-menu {
        background-color: var(--background-color);
        text-align: center;
        border-radius: 10px;
        border: none;
        min-width: 200px;
        right: -5px;
        padding: 10px 0;
        display: none;
    }

    .hamburger-menu .dropdown-menu a {
        font-size: 14px;
        line-height: 20px;
        color: white;
        padding: 5px 20px 5px;
        display: block;
        text-decoration: none;
    }

    .hamburger-menu .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    /* Show menu on hover */
    .hamburger-menu:hover>.dropdown-menu {
        display: block;
    }
}

.search-container {
    width: 100%;
}

.search-wrapper {
    position: relative;
}

.search-box {
    border-radius: 5px;
    border: none;
    font-size: 14px;
    line-height: 20px;
}

.search-box:focus {
    outline: none;
    box-shadow: none;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-40%);
    color: var(--primary-color);
    transition: opacity 0.2s ease-in-out;
    font-size: 12px;
}

/* Hide the icon when the input is focused */
.search-box:focus~.search-icon {
    opacity: 0;
}

/* header style */
.header-white {
    border-bottom: 1px solid var(--secondary-color);
}

.header-white .logo-link {
    display: inline-block;
    width: 180px;
    height: 75px;
    margin: 0;
    padding: 0;
}
.header-white .header-logo {
    /* width: 160px;
    height: auto; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.navbar-mobile .navbar-brand.logo-link {
    display: inline-block;
    width: 180px;
    height: 75px;
}
.navbar-mobile img.header-logo.mobile-logo{
    filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 2px 4px);
}
.navbar-mobile img.header-logo.mobile-logo:hover{
    transform: scale(1.05);
    filter: drop-shadow(rgba(0, 0, 0, 0.4) 0px 4px 8px);
}
.header-menu .nav-link {
    color: var(--text-color);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}
.header-menu ul.dropdown-menu{
    background: var(--background-color);
    font-size: 14px;
    line-height: 20px;
}
.header-menu ul.dropdown-menu .dropdown-item{
    color: var(--text-color-2);
    font-weight: 300;
}
.header-menu ul.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
/* .header-menu ul.dropdown-menu.show {
    background-color: var(--secondary-color);
}
.header-menu ul.dropdown-menu.show .dropdown-item{
    color: var(--accent-color);
}
.header-menu ul.dropdown-menu.show .dropdown-item:hover {
    background-color: rgb(162 72 87 / 20%);
} */


.header-white button.navbar-toggler.header-toggle {
    padding: 0;
    border: 0;
    font-size: 18px;
}
.header-white button.navbar-toggler.header-toggle:focus {
    box-shadow: none;
}
.header-white button.navbar-toggler.header-toggle .navbar-toggler-icon {
    background-image: url("../../assets/images/hamburger_menu.png");
}

/*.header-white .mobile-logo {
    width: 180px;
    height: auto;
}*/

.header-white .navbar-mobile{
    padding: 8px 10px;
}
.header-white .navbar-mobile .offcanvas-header {
    align-items: flex-start;
}


/* home slider section style */
.page-home .carousel-item {
    height: 492px;

    .carousel-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;

        p {
            color: var(--text-color);
            font-size: 18px;
            line-height: 24px;
        }

        .btn-view {
            font-size: 16px;
            line-height: 20px;
            font-weight: 300;
            padding: 10px 20px;
            border: 1px solid var(--background-color);
            border-radius: 5px;
            background-color: var(--background-color);
        }

        .btn-view:hover {
            background-color: var(--hover-color);
        }
    }
}

.carousel-item.active .carousel-caption h1,
.carousel-item.active .carousel-caption p,
.carousel-item.active .carousel-caption p.carousel-action {
    opacity: 0;
    transform: translateY(-50%);
    animation: fadeInUp 2s ease forwards;
}

.carousel-item.active .carousel-caption h1 {
    animation-delay: 0.1s;
}

.carousel-item.active .carousel-caption p {
    animation-delay: 0.9s;
}

.carousel-item.active .carousel-caption p.carousel-action {
    animation-delay: 1s;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: 0;
}

.carousel-indicators {
    margin-bottom: 1.5rem;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}


/* services section style */
.section-wrap {
    padding: 50px 0;
}

.services-section {
    background-color: var(--secondary-color);
}

.services-section .card {
    border: 1px solid var(--stroke-color);
    border-radius: 10px;
    height: 100%;
    transition: .5s ease-out;
}

.services-section .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 32px 12px rgba(136, 136, 136, .25);
    background: #fff;
    border-color: #fff;
}

.services-section .card-body {
    padding: 20px;
}

.services-section .card-body>*:not(:last-child) {
    margin-bottom: 15px;
}

.services-section .card-title {
    word-break: break-word;
    color: var(--heading-color);
}

.services-section .card-img {
    position: relative;
}

.services-section .card-img img {
    width: 70px;
    height: auto;
}

.services-section .card-text {
    line-height: 22px;
    color: var(--text-color);
    font-weight: 600;
}

.services-section .card .card-link {
    color: var(--accent-color);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
}

.services-section .card .card-link i {
    position: relative;
    top: 1px;
    padding: 4px;
}

.services-section .card .card-link:hover {
    color: var(--hover-color);
}

/* why us section style */
.why-us-section {
    background-color: var(--primary-color);
}

.why-us-title {
    padding-bottom: 10px;
    color: var(--text-color-2);
}

.why-card {
    background-color: #fff;
    border: 1px solid var(--stroke-color);
    padding: 15px;
    gap: 15px;
}

.page-home .why-card{
    border-radius: 5px;
}

.why-card img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.why-text {
    width: 100%;

    .heading {
        color: var(--heading-color);
        font-size: 18px;
        line-height: 22px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    p {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
    }
}

/* video section */
.video-section {
    display: flex;
    justify-content: center;
}

.video-wrapper {
    max-width: 950px;
    width: 100%;
}
.page-home .video-wrapper {
    margin: 0 auto;
}

/* onboard section style */
.onboard-section {
    background-color: var(--secondary-color);
}

.onboard-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

.onboard-text {
    max-width: 900px;
    margin: 15px auto;
    color: var(--text-color);
}

/* setup business section css */
.setup-business-section {
    background-color: var(--background-color);
}

.setup-business-title {
    color: var(--text-color-2);
}

.setup-business-card {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color-2);
    text-align: center;

    .btn-contact {
        background-color: var(--text-color-2);
        color: var(--accent-color);
        border: 1px solid var(--text-color-2);
        font-weight: 400;
    }

    .btn-contact:hover {
        background-color: transparent;
        color: var(--text-color-2);
    }

    .setup-business-subtitle {
        font-weight: 300;
    }
}

/* revire section style */
.owl-carousel.review-slider .owl-stage {
    display: flex;
}

.owl-carousel.review-slider .item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.25);
    text-align: center;
    height: 100%;
    margin: 10px;
    transition: .5s ease-out;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px -20px 30px rgba(136, 136, 136, .25);
    background: #fff;
    border-color: #fff;
}

.review-card .review-img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    margin: 2px !important;
    background-color: #D9D9D9 !important;
}

.owl-dots .owl-dot.active span {
    background-color: var(--primary-color) !important;
}


/* partner with us section style */
.partner-section {
    background-color: var(--secondary-color);
}

.partner-logos {
    gap: 75px;
}

.partner-logos img {
    max-width: 130px;
    height: auto;
}

/* legal knowlegdge section style */
.knowledge-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
}

/* disclaimer section style */
.disclaimer-section {
    background-color: var(--secondary-color);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
}

/* applySidebar style */
#applySidebar{
    padding: 0px 30px;
    margin-top: 40px;
    z-index: 1051;
}
#applySidebar .offcanvas-header{
    padding: 10px 0 20px;
}
#applySidebar .offcanvas-title{
    font-family: 'DM Sans';
    color: var(--heading-color) !important;
}
#applySidebar .offcanvas-body {
    padding: 0;
}
#applySidebar button.btn-payment{
    background-color: var(--background-color);
}
#applySidebar .know-text{
    color: var(--primary-color) !important;
}
#applySidebar .form-control{
    border-bottom: 1px solid #ccc !important;
    border: 0;
    border-radius: 0;
}
.offcanvas-backdrop.fade.show {
    margin-top: 40px !important;
}


/******* Fixed the scroll issue **********/
section {
    scroll-margin-top: 140px;
}

.sticky-apply-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    overflow: hidden;
    width: 130px;
    z-index: 998;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.20);
}

.sticky-apply-btn:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}
.sticky-apply-btn:active, .sticky-apply-btn:focus{
    background-color: var(--hover-color) !important;
    border-color: var(--hover-color) !important;
}

.arrow-wrapper {
    display: flex;
    gap: 2px;
}

.arrow-wrapper i {
    transition: transform 0.3s ease;
}

.sticky-apply-btn:hover .arrow-wrapper i:first-child {
    transform: translateX(2px);
}

.sticky-apply-btn:hover .arrow-wrapper i:last-child {
    transform: translateX(4px);
}

.sticky-apply-btn .vr {
    height: 1.5rem;
}

.step-card {
    position: relative;
    border-radius: 25px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
    padding: 50px 20px 10px;
    text-align: center;
    height: 100%;    
    background-color: #ffffff;
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--text-color-2);
    box-shadow: 0 4px 10px 0 rgb(0, 0, 0, 0.25);
    color: var(--background-color);
    font-weight: bold;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 32px;
    position: absolute;
    top: -20px;
    /* left: 38%; */
    left: 50%;
    transform: translateX(-50%);
}
.step-heading{
    font-family: 'DM Sans';
    font-weight: 500 !important;
    font-size: 22px;
}
.step-sub{
    font-size: 16px;
}
.step-img{
    width: 70px;
    height: 70px;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}
.step-card-col-3 .step-number{
    width: 60px;
    height: 60px;
    top: -30px;
}

.case-story-card .card {
    border-bottom: 1px solid var(--primary-color) !important;
    border-radius: 0;
}
.case-story-card .case-card-title{
    color: var(--heading-color) !important;
}
.case-story-card .case-card-content{
    font-size: 16px;
    margin-bottom: 0;
}

#plans .plan-title{
    color: var(--heading-color);
    max-width: 900px;
    width: 100%;
    margin: 0 auto 20px;
}

/*.case-card {
    border-bottom: 2px solid var(--accent-color);
}*/
.case-card .card{
    border: 1px solid #E0E0E0;
    border-radius: 0;
}

.hero-section-page {
    background-image: url(../images/home_slider/home_slider_1.webp);
    background-repeat: no-repeat;
    height: 300px;
    background-size: cover;
    position: relative;
}
.center-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1180px;
    text-align: center;
}
.hero-section-page h2{
    font-family: 'Playfair Display';
    color: var(--heading-color);
    font-size: 60px;
    line-height: 70px;
    font-weight: 900;
    margin: 0;
}

/* footer style */
.footer {
    padding: 50px 0 5px;
    background-color: var(--background-color);
    color: var(--text-color-2);
}
.footer p {
    margin-bottom: 0;
}
.footer .logo-link {
    position: relative;
    display: block;
    width: 250px;
    height: 95px;
}
.footer .footer-logo {
    /* width: 250px;
    height: auto; */
    width: 100%; 
    height: 100%;
    object-fit: cover;   
    transition: transform 0.3s ease, filter 0.3s ease;
    /* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); */
}
.logo-link:hover .footer-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}
.footer .col-left .left-link-wrap {
    padding-top: 35px;
    padding-bottom: 30px;
}
.footer .footer-heading {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-color-2);
    margin-bottom: 15px;
}
.footer .left-link-wrap .list-unstyled>li:not(:last-child) {
    margin-bottom: 6px;
}
.footer .left-link-wrap .list-unstyled li a {
    color: #fff;
    text-decoration: none;
}
.footer .col-right .right-social-wrap {
    padding-top: 35px;
    padding-bottom: 35px;
    margin: 0 0 0 -12px;
}
.footer-bottom {
    padding: 10px 0 5px;
    border-top: 1px solid var(--f-stroke-color);
}
.footer a {
    color: #fff;
    text-decoration: none;
}
.footer .social-icons img {
    width: 30px;
    height: 30px;
}

/* whatsapp floating style */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    background: linear-gradient(90deg, rgb(18, 198, 101) 0.85%, rgb(0, 148, 70) 100%);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*********************** TPLF CSS ***********************/
.nav-scroll-wrapper {
    position: relative;
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: #fff;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: none;
    height: 100%;
    /* Hide on desktop */
}
.scroll-arrow.left {
    left: 0;
}
.scroll-arrow.right {
    right: 0;
}
.main-content .section-wrap{
    padding: 10px 0 50px;
}
section#tplf p {
    margin: 0;
}

@media (max-width: 767.98px) {
    .scroll-arrow {
        display: block;
    }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tplf_page .sidebar-nav .nav-link {
    font-size: 18px;
    color: var(--heading-color-2);
    font-weight: bold;
    text-transform: capitalize;
}

.tplf_page .sidebar-nav .nav-link.active {
    background-color: var(--background-color);
    color: var(--text-color-2);
}



.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Style nav links */
.side-nav-wrapper .nav-link {
    white-space: normal;
    padding: 0.5rem 1rem;
    color: var(--heading-color-2);
    font-family: 'DM Sans';
    font-size: 16px;
    font-weight: 500;    
}
.side-nav-wrapper .nav-link.active {
    color: var(--text-color-2);    
    background-color: var(--background-color);
}
.side-nav-wrapper.mobile-nav-fixed .nav-link {
    line-height: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-img-text {
    position: absolute;
    top: 34%;
    left: 6%;
}

.cases-covered .detail{
    width: 33.33%;
    margin-bottom: 20px;
    line-height: 20px;
}
.cases-covered .detail-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid #a25562;
    padding-bottom: 4px;
}
.cases-covered  .custom-bullet{
    margin-bottom: 0;
}
.cases-covered .detail p{
    margin-bottom: 0;
}
/*.Why_choose_us li.custom-bullet{
    display: block;
}
.Why_choose_us .custom-bullet::before{
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}*/

@media (max-width: 576px) {
    .cases-covered .detail{
        width: 100%;
    }
}

/****************** Legal Manager css ********************/
.page-legal_manager #core .card-subtitle{
    font-family: 'DM SANS';
    font-size: 18px;
    line-height: 22px;
    color: var(--primary-color);
    font-weight: 600;
}
.page-legal_manager .timeline-container{
    margin: 2rem auto 0;
}
.page-legal_manager #plan .card{
    border-radius: 0;
    min-height: 300px;
}
.page-legal_manager #home .custom-bullet{
    display: list-item;
}
.page-legal_manager #home .custom-bullet::before {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}


/************************* Custom Bullets *************************/
.list-unstyled {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.custom-bullet {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* space between icon and text */
    
}
.custom-bullet:not(:last-child){
    margin-bottom: 10px;
}

.custom-bullet::before {
    content: "";
    background-image: url("../images/bullet-icon.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    /* adjust vertical alignment */
    flex-shrink: 0;
}
.custom-bullet > div {
    line-height: 1.6;
    flex: 1; /* let text take full available space */
}

ul:not(.nav) li:not(:last-child){
    margin-bottom: 5px;
}

/************************* Custom Bullets *************************/
.apply-card {
    background-color: var(--secondary-color);
    padding: 24px;
    width: 100%;
    max-width: 324px;

}

.funding-card {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
    border-left: 3px solid #dc3545;
    overflow-y: auto;
}

/* When collapsed */
.funding-card.collapsed {
    transform: translateX(100%);
}

/* Toggle button styling */
.toggle-btn {
    position: absolute;
    left: -30px;
    top: 10px;
    border-radius: 0 5px 5px 0;
}

/* Responsive handling */
@media (max-width: 576px) {
    .funding-card {
        width: 100%;
    }

    .funding-card.collapsed {
        transform: translateX(100%);
    }
}


    /* Timeline container horizontal flex */
    .timeline-container {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      /*max-width: 900px;*/
      margin: 0 auto 2rem;
      padding: 0 1rem;
    }

    /* Circle style */
    .timeline-step {
      position: relative;
      cursor: pointer;
      text-align: center;
      flex: 1 1 0;
      transition: transform 0.3s ease, color 0.3s ease;
      color: #495057;
      user-select: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
      bottom:10px;
    }
    .timeline-step:not(:last-child) {
      margin-right: 0.5rem;
    }
    .timeline-step:hover,
    .timeline-step:focus {
      color: var(--background-color);
      transform: scale(1.15);
      z-index: 3;
      outline: none;
    }
    .timeline-step .circle {
      width: 60px;
      height: 60px;
      background-color: var(--background-color);
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 700;
      font-size: 1.25rem;
      box-shadow: 0 4px 8px rgb(13 110 253 / 0.3);
      margin-bottom: 0.5rem;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    .timeline-step:hover .circle,
    .timeline-step:focus .circle {
      background-color: var(--background-color);
      box-shadow: 0 6px 12px rgba(10, 106, 202, 0.7);
    }

    /* Step text style */
    .step-text {
      font-size: 1rem;
      font-weight: 600;
      /*max-width: 120px;*/
      transition: color 0.3s ease;
    }

    /* Horizontal timeline connector line */
    .timeline-line {
      position: absolute;
      top: 30px; /* center aligned with circles */
      left: 0%;
      right: 0%;
      height: 6px;
      background: linear-gradient(to right, var(--accent-color) 0%, var(--hover-color) 100%);
      border-radius: 3px;
      z-index: 1;
      overflow: hidden;
    }

    /* Remove the progress bar and its animation */

    /* Responsive for smaller screens */
    @media (max-width: 768px) {
      .timeline-container {
        flex-direction: column;
        max-width: 100%;
      }
      .timeline-step {
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 1.5rem;
        max-width: 100%;
        width: 100%;
      }
      .timeline-step .circle {
        margin-right: 1rem;
        margin-bottom: 0;
        font-size: 16px;
        width: 50px;
        height: 50px;
      }
      /*.step-text {
        max-width: none;
      }*/
      .timeline-line {
        display: none;
      }
      .step-text{
        font-size: 14px !important;
        text-align: left;
        width: calc(100% - 70px);
      }
    }

.tplf-bg {
    background-color: var(--secondary-color);
    padding: 30px;
}

.section-space {
    /*margin-block: 25px;*/
    margin-bottom: 40px !important;
}
.section-title{
    margin-bottom: 18px;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: var(--secondary-color);
    box-shadow: none;
    border: none;
}
.accordion-body {
    background-color: var(--secondary-color);
    padding-top: 0;
    padding-bottom: 10px;
}
.accordion-item {
    margin-bottom: 20px;
}
.accordion-item:first-of-type .accordion-button,
.accordion-item:first-of-type{
    border-radius: 0;
}
.accordion-item:last-of-type .accordion-collapse,
.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button.collapsed{
    border-radius: 0;
}
.accordion-button:focus{
    border-color: initial;
    box-shadow: none;
}

.accordion-button {
    border: 1px solid var(--background-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    padding-block: 10px;
    color: var(--background-color);
}

/* Default (collapsed): Show plus icon */
.accordion-button::after {
    content: "\f4fe";
    /* bi-plus */
    font-family: 'bootstrap-icons';
    background-image: none;
    /* Remove default background image */
    font-size: 1.25rem;
    height: unset;
}

/* Expanded: Show minus icon */
.accordion-button:not(.collapsed)::after {
    content: "\f2ea";
    /* bi-dash */
    font-family: 'bootstrap-icons';
    background-image: none;
    font-size: 1.25rem;
}

.contact-form {
    border: 1px solid var(--background-color);
    border-radius: 25px;
    padding: 50px;
}
.contact-form .form-control {
    border-bottom: 1px solid #ccc !important;
    border: 0;
    border-radius: 0;
}
.form-control:focus, .form-select:focus, .form-check-input:focus{
    box-shadow: none;
    border-color: #ced4da;
}


/* Responsive text spacing */
@media (max-width: 768px) {
    .step-text {
        font-size: 0.75rem;
    }

    .timeline-step.bottom {
        margin-top: 40px;
    }

    .contact-form {
        border-radius: 5px;
        padding: 20px;
    }

    /* .sticky-apply-btn {
        width: 20%;
    } */
}

/********* cs page ***********/
.compliance-card {
    background-color: #fff;
    box-shadow: 4px 0px 20px 0px rgb(0 0 0 / 25%);
    padding: 25px;
}
.compliance-card .section-title{
    font-family: 'DM Sans';
}
.compliance-form, .compliance-form input::placeholder, .compliance-form select{
    font-size: 14px;
}
.compliance-form .required{
    color: #ff0000;
    vertical-align: middle;
}
.compliance-form .form-label{
    margin-bottom: 5px;
}
.compliance-form  .form-check-label{
    line-height: 18px;
}
.compliance-content-box .content-heading {
    background-color: var(--background-color);
    color: #fff;
    font-size: 18px;
    padding: 8px 10px;
    margin-bottom: 10px;
}
.company-tab-wrap .tab-content {
    background-color: var(--secondary-color);
    padding: 25px;
}
.company-tab-wrap .nav-tabs .nav-item .nav-link{
    padding: 10px 16px;
    border: 0;
    border-radius: 0;
    color: var(--heading-color);
    font-weight: 500;
}
.company-tab-wrap  .nav-tabs .nav-link.active {
    background: var(--background-color);
    color: #ffff;    
}
.company-tab-wrap .nav-tabs .nav-link:focus, .company-tab-wrap .nav-tabs .nav-link:hover {
    border-color: transparent
}
.tab-content-heading {
    font-family: 'DM Sans';
    color: var(--accent-color);
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
}
.company-tab-wrap .tab-content .custom-bullet::before{
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
}
.tab-content-bg {
    background-color: #fff;
    text-align: center;
}
.tab-pricing-heading{
    color: var(--accent-color);
}
.table-head{
    background-color: var(--background-color);
    color: var(--text-color-2);
    border-color: inherit;
    vertical-align: middle !important;
}
.comparison-entity tbody tr td:first-child {
    font-weight: 600;
}
.kb-link-wrap .btn-click {
    text-decoration: none;
}

.page-private-limited-company .step-7.pn-compliance .list-unstyled{
    display: inline-grid;
    text-align: left;
}
.page-private-limited-company .require-doc .card-body{
    background-color: var(--secondary-color);
}

/******** verticle timeline css ********/
.v-timeline {
    position: relative;
    padding: 1.6rem 0;
}
.v-timeline::before {
    content: '';
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 50%;      
    transform: translateX(-50%);
    border-left: 2px dashed var(--background-color);
}
.v-timeline-step {
    position: relative;
}
.v-timeline-step .v-timeline-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-color);
    color: var(--text-color-2);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 20px;    
    font-weight: 600;
}
.v-timeline-step .v-timeline-content {
    width: 45%;
    padding: 1rem;
    border-radius: 0.5rem;
}
.v-timeline-heading {
    font-family: 'DM Sans';
    font-weight: 500;
    font-size: 22px;
}
.v-timeline-step.left .v-timeline-content {
    margin-right: auto;
    text-align: center;
}
.v-timeline-step.right .v-timeline-content {
    margin-left: auto;
    text-align: center;
}
.v-timeline-step .v-timeline-content .custom-bullet:not(:last-child){
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .v-timeline::before {
        /* left: 8%; */
        content: none;
    }
    .v-timeline-step{
        margin-bottom: 20px;
    }
    .v-timeline-step .v-timeline-number {
        top: 0;
        /* left: 8%;
        transform: translate(-50%, -50%); */
    }
    .v-timeline-heading{
        margin-top: 20px;;
    }
    .v-timeline-step .v-timeline-content {
        width: 100%;
        /* margin-left: 2.5rem !important;
        text-align: left !important; */
    }
}

/***** protect your business css ******/
.page-protect-business .we-offer .card-subtitle{
    color: var(--accent-color);
    font-family: 'DM Sans';
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}
.page-protect-business .we-offer .card{
    border-radius: 0;
}
.page-protect-business .we-offer .custom-icon img {
    width: 50px;
}

/********* sole propritorship *********/
.page-sole-propritorship .doc-required .step-card{
    padding: 15px;
    text-align: left;
}
.page-sole-propritorship .doc-required .step-heading{
    font-size: 20px;
    color: var(--accent-color);
}
.page-sole-propritorship .doc-required .step-card ul{
    padding-left: 15px;
    margin: 0;
}
.page-sole-propritorship .nlp-assist .custom-icon img {
    width: 50px;
}
.page-sole-propritorship .v-timeline::before{
    top: 6%;
    bottom: 6%;
}

.card-rounded{
    border-radius: 25px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
    border: 0;
}
ul.custom-list {
    max-width: 315px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
ul.custom-list li {
    position: relative;
    padding-left: 1.2em;
}
ul.custom-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-size: 1.2em;
    line-height: 1;
}

/****** nidhi comany css *******/
.feature-title{
    font-size: 22px;
    color: var(--accent-color);
    font-family: 'DM Sans';
    font-weight: 500;
}
.nidhi-doc-required ul li{
    border-bottom: 1px solid #a25562;
    padding-bottom: 4px;
}

/****** career page ******/
.why-work-section .card-subtitle{
    font-family: 'DM Sans';
    font-size: 22px;
    line-height: 26px;
    color: var(--accent-color);
    font-weight: 500 !important;
}
.why-work-section .custom-icon img{
    width: 60px;
}
.job-section .card-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/****** trademark reg page ******/
.page-trademark-reg .detailed_process ul.custom-list{
    max-width: 360px;
}
.page-trademark-reg .detailed_process .v-timeline::before{
    top: 10%;
    bottom: 10%;
}

/****** GST filling page ******/
.page-gst-filling .doc-gst .card-body ul{
    padding-left: 18px;
    margin-bottom: 0;
    
}
.page-gst-filling .gst-penalties .card-rounded{
    border-radius: 15px;
}

/***** GST register ******/
.page-gst-reg .doc-required .card-rounded ul{
    padding-left: 20px;
}
.page-gst-reg .v-timeline::before{
    top: 6%;
    bottom: 6%;
}
.contact-wrap {
    margin-bottom: 25px;
}
.contact-heading {
    font-size: 20px;
    line-height: 28px;
    font-family: 'DM Sans';
    font-weight: 500;
}
.contact-item {
    margin-bottom: 5px;
}
.contact-wrap .contact-item a{
    color: inherit;
    text-decoration: none;
}
.contact-icon{
    color: var(--accent-color);
    margin-right: 5px;
}
.chat-support .card {
    box-shadow: 0px 4px 20px 0px #00000040;
    border: 0;
    border-radius: 0;
}
.chat-support .whatsapp-icon {
    display: inline-flex;
    position: relative;
    width: 40px;
    height: 40px;    
    z-index: 1000;
    cursor: pointer;
    background: linear-gradient(90deg, rgb(18, 198, 101) 0.85%, rgb(0, 148, 70) 100%);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
    margin-bottom: 15px;
}
.chat-support .card-subtitle {
    font-family: 'DM Sans';
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.chat-support .chat-icon {
    position: relative;
    display: inline-flex;
    max-width: 100px;
    width: 100%;
    height: 40px;
    justify-content: center;
    margin-bottom: 15px;
}
.chat-support a{
    text-decoration: none;
    color:inherit;
}
.social-icons .icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}
.social-icons .icon:hover {
    transform: scale(1.1);
}

/******* copyright reg page ******/
.page-copyright-reg .copyright-reg-process .step-card{
    text-align: left;
    padding: 40px 20px 20px;
}
.page-copyright-reg .copyright-reg-process .step-heading{
    text-align: center;
}
.page-copyright-reg .our-copyright-reg-process .v-timeline::before{
    top: 16%;
    bottom: 12%;
}
.customer-carousel.owl-carousel .card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: #fff;   
}
.customer-carousel .customer-text {
    font-style: italic;
}
.customer-carousel .customer-name {
    color: var(--accent-color);
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .customer-carousel.owl-carousel .card {
        min-height: auto;
    }
}

/********* Legal Notice page *********/
.definition-purpose .card-subtitle {
    font-size: 20px;
    line-height: 22px;
    color: var(--accent-color);
    margin-bottom: 5px;
}
.reply-legal .reply-legal-process .step-card{
    text-align: left;
    padding: 50px 20px 20px;
}
.reply-legal .reply-legal-process .step-heading{
    text-align: center;
}

/******* Legal Drafting page ********/
.page-legal-drafting .tbl-plan-pricing{
    width: 650px;
}

/******** find a lawyer page ********/
.page-find-lawyer .service .card-body{
    padding: 25px;
    text-align: center;
}
.page-find-lawyer .lawyer-fee .card-body{
    padding: 20px;
} 
.page-find-lawyer .lawyer-fee .card-subtitle {
    line-height: 1.25;
}

/******* RTI page *******/
.page-rti .rti-process .step-card {
    text-align: left;
    padding: 50px 20px 20px;
}
.page-rti .step-heading{
    text-align: center;
}

/****** trademark infringement page *****/
.page-trademark-infringement .process .v-timeline::before{
    top: 6%;
    bottom: 6%;
}
.page-trademark-infringement .trademark-understand .step-card{
    text-align: left;
    padding: 50px 20px 20px;
}
.page-trademark-infringement .trademark-understand .step-heading{
    text-align: center;
}

/******* annual complaiance service page *******/
.page-annual-complaiance-service .plan .card-header{
    background-color: var(--background-color);    
}
.page-annual-complaiance-service .plan .card-title{    
    color: #fff;
}
.page-annual-complaiance-service .plan .text-success{    
    color: var(--background-color) !important;
}
.page-annual-complaiance-service .plan .text-danger{
    color: var(--background-color) !important;
}
.page-annual-complaiance-service .key-require .step-card{
    text-align: left;
}

/****** IT return page *****/
.page-it-return .process .v-timeline::before{
    top: 16%;
    bottom: 16%;
}

/*****producer comoany page *****/
.page-producer-company .doc-required .step-card{
    text-align: left;
}
.page-producer-company .doc-required .step-heading{
    text-align: center;
}
.page-producer-company .compliance .card{
    border: 1px solid var(--stroke-color);
    border-radius: 0;
    text-align: center;
}
.page-producer-company .compliance .card-title{
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    /* color: var(--accent-color); */
    font-family: 'DM Sans';
}
.page-producer-company .compliance .custom-icon{
    color: var(--accent-color);
    font-size: 30px;
    margin-bottom: 10px;
}

/******* secretarial audit page ******/
.page-secretarial-audit .process .v-timeline::before{
    top: 5%;
    bottom: 5%;
}
.page-secretarial-audit .secretarial-process .step-card{
    text-align: left;
    padding: 50px 20px 20px;
}
.page-secretarial-audit .secretarial-process .step-heading{
    text-align: center;
}
.page-secretarial-audit .power-audit .card{
    border: 1px solid var(--stroke-color);
    border-radius: 0;
}
.page-secretarial-audit .power-audit .icon-box{
    color: var(--accent-color);
    font-size: 26px;
    margin-bottom: 5px;
}
.page-secretarial-audit .power-audit .card-title{
    font-size: 22px;
    line-height: 24px;
    font-family: 'DM Sans';
}
.page-secretarial-audit .responsibility{
    .section-icon {
      font-size: 28px;
      color: #a24857;
      margin-right: 15px;
      vertical-align: middle;
    }
    .section-text {
      font-weight: 600;
      font-size: 1.25rem;
    }
    .section-block {      
        padding: 20px;
        background: var(--secondary-color);
    }
}

/******** alpha list css *******/
.alpha-list {
    list-style: none;
    padding-left: 10px;
}
.alpha-list li {
    margin-bottom: 0.5rem;
}
.list-label {
    font-weight: 600;
    font-size: 17px;
    line-height: 32px;
}
.section-two .alpha-list .list-label{
    font-style: italic;
}



/******************************/
/********* MEDIA QUERY ********/
/*****************************/
@media only screen and (max-width: 991px) {
    .search-box {
        border: 1px solid #ced4da;
    }

    .navbar-mobile {
        background-color: var(--background-color);
        color: var(--text-color-2);
    }

    .navbar-mobile .header-menu .nav-link {
        color: var(--text-color-2);
    }

    .header-menu .nav-link {
        font-weight: 400;
    }
    .page-secretarial-audit .responsibility .section-block{
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 56px;
        line-height: 60px;
    }
    h2 {
        font-size: 38px;
        line-height: 42px;
    }
    h5 {
        font-size: 26px;
        line-height: 36px;
    }
    h6 {
        font-size: 24px;
        line-height: 34px;
    }
    .hero-section-page h2 {
        font-size: 46px;
        line-height: 48px;
    }
    .center-absolute {
        width: 90%;
    }
    .section-wrap {
        padding: 30px 0;
    }
    .why-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .partner-logos {
        gap: 35px;
    }

    .partner-logos img {
        max-width: 100px;
    }
    .section-text {
        text-align: justify;
    }
    .footer {
        padding: 40px 0 5px;
    }
    .video-wrapper iframe {
        height: 300px;
    }
    .mobile-nav-fixed {
        position: sticky;
        top: 132px;
        z-index: 998;
        padding: 0 8px !important;
    }
    .side-nav-wrapper {
        width: 100%;
    }
    .main-content {
        width: 100%;
    }
    .accordion-button{
        font-size: 20px;
        line-height: 24px;
    }
    section.doc_required {
        margin-bottom: 0px !important;
    }
    .page-content .section-heading{
        font-size: 28px;
        line-height: 30px;
    }

}

@media only screen and (max-width:576px) {
    .footer .col-left .left-link-wrap {
        padding-bottom: 20px;
    }

    /* .footer-logo {
        width: 180px;
    } */
    .footer .logo-link{
        width: 180px;
        height: 75px;
    }

    .footer-bottom {
        flex-direction: column;
    }
    .hero-section-page h2 {
        font-size: 38px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 480px) {
    .video-wrapper iframe {
        height: 200px;
    }
    .page-content ul{
        padding-left: 20px;
    }
}

@media only screen and (max-width: 420px) {
    h1 {
        font-size: 42px;
        line-height: 44px;
    }
    .carousel-item .carousel-caption p {
        font-size: 16px;
        line-height: 22px;
    }
    .carousel-action {
        flex-direction: column;
    }
    .sticky-apply-btn{
        width: 30%;
    }
    .mobile-nav-fixed {        
        top: 140px;        
    }
}


@media only screen and (min-width: 768px) {
    .footer .col-left {
        border-right: 1px solid var(--f-stroke-color);
    }
    .footer .col-left .left-link-wrap {
        border-top: 1px solid var(--f-stroke-color);
        margin-left: 0;
    }
    .footer .col-right .right-social-wrap {
        border-top: 1px solid var(--f-stroke-color);
    }
    .video-wrapper iframe {
        height: 400px;
    }
    .main-content {    
        padding-top: 40px;
    }
    .timeline-step .step-text{
        max-width: 120px
    }
}

@media only screen and (min-width: 992px) {
    .search-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .video-wrapper iframe {
        height: 450px;
    }
    .header-menu.navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu{
        right: 0;
    }
}

/* new logo updates */
/* Styling for Logo Containers */
.logo-container {
    padding: 10px; /* Increased padding for better spacing */
    display: inline-flex; /* Use inline-flex for better alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px; /* Added rounded corners */
}

.logo-container:hover {
    transform: scale(1.05); /* Slightly scales up on hover */
}

.header-logo-wrapper {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border: 1px solid #e0e0e0; /* Light border to frame the logo */
    border-radius: 10px; /* Rounded corners for the header logo */
}

.footer-logo-wrapper {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Stronger shadow for the darker background */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Semi-transparent border */
    border-radius: 10px; /* Rounded corners for the footer logo */
}

/* Consistent Logo Sizing */
.header-logo,
.footer-logo {
    height: 40px; /* Consistent size for both logos */
    max-width: 100%; /* Ensures the image doesn't overflow its container */
    width: auto;
    display: block;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .header-logo,
    .footer-logo {
        height: 30px;
    }
}  
.center-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 16px; /* Rounded corners */
    border: 1px solid #e0e0e0; /* Optional: light border for visibility */
}