@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

a:hover {
    color: #00b2c4;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(0 86 183) !important;
}

/*** 

====================================================================
Main Header
====================================================================

***/
/* Base styling for main navigation */
/* Base styling for main navigation */
h1,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif !important;
}

h2 {
    font-family: 'Poppins', sans-serif;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none !important;
    cursor: pointer;
    color: #2c3e82;
    font-family: 'Montserrat', sans-serif;
}

button {
    outline: none !important;
    cursor: pointer;
}

p,
.text {
    font-size: 16px;
    line-height: 27px;
    font-weight: 500;
    color: #292929;
    /* margin: -20px; */
    font-family: 'Montserrat', sans-serif;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
}

.main-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu .navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-menu .navigation>li {
    position: relative;
    padding: 0 15px;
}

/* Sub-menu initially hidden */
.main-menu .navigation>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    width: 280px;
    z-index: 100;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 500ms ease;
}

/* Show sub-menu on hover */
.main-menu .navigation>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
    /* Visibility activates immediately */
}

/* Sub-menu items styling */
.main-menu .navigation>li>ul>li {
    list-style: none;
    position: relative;
}

/* Styling for all sub-menu links */
.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>ul>li>ul>li>a,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a {
    position: relative;
    padding: 7px 13px;
    line-height: 29px;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    text-transform: capitalize;
    background: #354982;
    /* Ensure a consistent background */
    display: block;
    border-bottom: 1px solid #2a3b6b !important;
    transition: color 200ms ease, background-color 200ms ease;
    /* Apply specific transition */
    /* border-right: 1px solid #ffffff75; */
}

.main-menu .navigation>li>ul>li>a:hover,
.main-menu .navigation>li>ul>li>ul>li>a:hover,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a:hover {
    color: #ffffff;
    background-color: #27396f;
    /* Slight change for hover background */
}

/* Nested sub-menu transitions */
.main-menu .navigation>li>ul>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 20%;
    width: 250px;
    z-index: 100;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 500ms ease;
}

.main-menu .navigation>li>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transition for deeper nested menus */
.main-menu .navigation>li>ul>li>ul>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 20%;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    transition: 500ms ease;
    width: 370px;
    border-right: 1px solid #fff;
}

.main-menu .navigation>li>ul>li>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.main-header .logo {
    position: relative;
}

.main-header .logo img {
    width: 100%;
    /* filter: brightness(0) invert(1); */
}

.main-header .logo {
    width: 275px;
}

.main-header .main-box {
    position: relative;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .main-box .nav-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-menu {
    position: relative;
    float: left;
}

.main-menu .navbar-header {
    display: none;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 30px 0px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
    margin-right: 0;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    padding: 0;
    /* margin: 0 15px; */
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-transform: uppercase;
}

.main-menu .navigation>li>a:before {
    position: absolute;
    left: 50%;
    bottom: -4px;
    height: 2px;
    width: 0%;
    /* background: #ffffff; */
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a:before,
.main-menu .navigation>li.current>a:before {
    left: 0;
    width: 75%;
}


.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}



.dropdown ul li:last-child a {
    /* border-bottom: none !important; */
}



.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
    /* transform: rotate(180deg); */
}

.dropdown2a>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
    transform: rotate(180deg);
}

.dropdown a i {
    font-size: 13px;
    color: #24357b;
}

.dropdown2a li {
    bottom: 2px solid #bebdbd !important;
}

.dropdown2a:hover ul {
    display: block;
}

.is-sticky {
    position: fixed !important;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    backdrop-filter: blur(7px);
    animation: slideDown 0.45s ease-out;
    width: 100%;
    top: 0;
    border-radius: 0px;
    z-index: 1000;
    background: #2c3e82;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.is-sticky .logo img {
    width: 100%;
    filter: inherit !important;
}

.is-sticky .main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 35px 0px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    padding-right: 25px;
    margin-right: 12px;
}

.is-sticky .logo {
    width: 230px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header-two__bottom {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 100;
}

.main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
}

.main-header .outer-box .theme-btn {
    display: block;
    min-width: 160px;
}

.dropdown_t ul {
    position: absolute;
    top: 0;
    right: -370px;
    width: 300px;
    background-color: #f48023;
}

.dropdown_t:hover ul {
    display: block;
}


/*** 

====================================================================
Mobile Menu
====================================================================

***/

.mobile-nav-toggler {
    position: relative;
    font-size: 24px;
    line-height: 50px;
    cursor: pointer;
    color: #ffffff;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-right: 15px;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    height: 100vh;
    overflow-y: scroll;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 20px 20px;
    text-align: left;
    width: 100px;
}

.mobile-menu .nav-logo img {
    max-width: 200px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: relative;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 20px;
    top: 25px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    background-color: #1c73ea;
    cursor: pointer;
    z-index: 10;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    padding: 0 20px;
}

.mobile-menu .navigation>li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.mobile-menu .navigation>li>a {
    font-weight: 500;
    border: 1px solid #eeeeee;
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #404040;
    text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: #1c73ea;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 42px;
    text-align: center;
    font-size: 27px;
    line-height: 40px;
    border: 1px solid #fafafa;
    color: #222222;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 300msease;
    -o-transition: all 300ms ease;
    transition: all 300msease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active .fa:before {
    font-family: 'FontAwesome';
    display: inline-block;
    position: relative;
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
    margin-left: 10px;
}


.mobile-nav-toggler span {
    color: #17a2b8;
}


.header-style .main-menu .navigation>li>a {
    color: #2b2b2b;
    font-weight: 600;
}

.header-style .main-menu .navigation>li>a:before {
    bottom: -4px;
}

.header-style .main-menu .navigation>li>a:hover:before,
.header-style .main-menu .navigation>li.current>a:before {
    width: 25px;
}

.header-style .menu-outer {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px 0px 100px;
    background: #ffffffdb;
    backdrop-filter: blur(5px);
}

.header-style .outer-box .theme-btn {
    min-width: 160px;
}


.header-style-three {
    top: 0;
}

.header-style-three .menu-outer {
    position: relative;
    padding: 40px 0 !important;
}

.header-style-three .theme-btn {
    min-width: 160px;
}

@media only screen and (max-width: 1920px) {

    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 39px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 25px;
        margin-right: 12px;
    }

}


@media only screen and (max-width: 1240px) {
    .dropdown {
        padding-right: 0px;
    }

    .mobile-menu .navigation li>a {
        padding-right: 40px !important;
        border-bottom: 1px solid #cccccc;
    }

    .mobile-menu-visible .mobile-menu .menu-box {
        background-color: #003667;
        height: 100vh;
        overflow-y: scroll;

    }

    .mobile-menu .navigation {
        margin-top: 40px;
    }

    .mobile-menu .navigation li:hover>a,
    .mobile-menu .navigation li.current>a {
        color: #ffffff;
    }

    .mobile-menu .navigation li>a {
        color: #fff;
    }

    .dropdown-btn span {
        color: #fff;
        font-weight: 400;
    }

    .mobile-nav-toggler {
        display: block;
    }

    .main-header {
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .20);
    }

    .main-header .outer-box,
    .main-header .nav-outer .main-menu {
        display: none;
    }

    .header-style-three .logo,
    .header-style-two .logo,
    .main-header .logo-outer .logo {
        padding: 15px 0;
    }

    .main-header .logo-outer .logo img {
        height: 40px;
    }

    .header-style-two .mobile-nav-toggler {
        color: #303030;
    }

    .header-style-two,
    .header-style-three {
        border-bottom: 0;
    }

    .header-span {
        height: 70px;
    }

    .banner-slider .slick-prev {
        z-index: 1;
    }

    .banner-slider .slick-next {
        z-index: 1;
    }

    .dropdown a i {
        display: none;
    }

    .mobile-menu .nav-logo img {
        width: 100%;
    }

    .mobile-menu .nav-logo {
        position: relative;
        padding: 20px 20px;
        text-align: left;
        width: 81%;
    }

    .mobile-menu .nav-logo img {
        height: auto;
    }

    .mobile-menu .navigation li>ul,
    .mobile-menu .navigation li>ul>li>ul {
        padding-left: 0px !important;
        margin-left: 0px !important;
    }

    .mobile-menu .navigation li>ul,
    .mobile-menu .navigation li>ul>li>ul li a {
        border: 1px solid #fff;
    }

    .Application-slider .slick-next {
        display: none !important;
    }

    .Application-slider .slick-prev {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) {

    .main-menu .navigation>li>ul,
    .main-menu .navigation>li>ul>li>ul {
        visibility: hidden;
        opacity: 0;
    }

}


@media only screen and (max-width: 1023px) {
    .mobile-nav-toggler {
        display: block;
    }

    .main-header {
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .20);
    }

    .main-header .outer-box,
    .main-header .nav-outer .main-menu {
        display: none;
    }

    .header-style-three .logo,
    .header-style-two .logo,
    .main-header .logo-outer .logo {
        padding: 15px 0;
    }

    .main-header .logo-outer .logo img {
        height: 40px;
    }

    .header-style-two .mobile-nav-toggler {
        color: #303030;
    }

    .header-style-two,
    .header-style-three {
        border-bottom: 0;
    }

    .header-span {
        height: 70px;
    }

}

.mobile-logo {
    display: none;
}

.mobile-image {
    display: none;
}

@media (max-width:1280px) {
    .awards-section {
        padding: 60px 0px;
    }

    .service-section-two .service-arrow {
        bottom: -32px;
    }

    .mobile-arrow {
        display: block;
    }

    .desktop-arrow {
        display: none;
    }

    .awards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .pbmit-heading-desc {
        text-align: center;
    }

    .pbmit-subtitle {
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }

    .service-section-two .pbmit-heading-subheading .pbmit-title {
        font-size: 37px;
        line-height: 42px;
        text-align: center;
    }

    .about-two-content {
        padding-top: 15px !important;
    }

    .about-two-img {
        display: none;
    }

    .mobile-image {
        display: block;
    }

    .mobile-image img {
        width: 100%;
    }

    .pbmit-heading-subheading {}

    .enquiry-bg {
        padding: 30px 2px !important;
    }

    .fade-in-delay {
        margin-bottom: 25px !important;
    }

    .enquiry-bg {
        text-align: center;
    }

    .logo-make-india {
        margin-top: 15px !important;
    }

    .footer-top {
        text-align: left !important;
    }

    .footer-logo img {
        max-height: -webkit-fill-available;
        margin: 0 10px;
        width: 90%;
        height: auto;
        gap: 25px;
    }

    .logo-make-india {
        width: 50% !important;
    }

    .title-paragraph {
        display: none;
    }

    .pbmit-main-header-area .container-fluid {
        padding: 0px 2px !important;
    }

    .main-header .logo {
        width: 330px;
    }


    .pbmit-top-area {
        background: #066db8;
    }

    .site-branding {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    /* .site-header .site-branding img{
        padding-right: 0px;
    }
    .pbmit-right-box{
        display: none !important;
    } */
    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 30px 0px;
        margin-right: 15px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }
}


.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'FontAwesome';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 14px;
    font-weight: 900;
    z-index: 5;
    /* transform: rotate(180deg); */
}

.fa-times {
    font-family: 'FontAwesome' !important;
}

.fa-bars {
    font-family: 'FontAwesome' !important;
    font-weight: 500 !important;
}

.team-content h4 {
    text-align: center;
}

.scrollable-list {
    max-height: 300px;
    /* Adjust height as needed */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    list-style: none;
}


.heading-divider2 {
    border-bottom: 4px solid #0e467e !important
}

/*----- Header Top -----*/
/*----- Header Top -----*/

.header-top {
    position: relative;
    overflow: hidden;
    padding: 5px 0px;
    background: #d5250f;
    z-index: 100;
}

.header-top:before {
    content: "";
    /* background: #30337a; */
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    height: 100%;
    width: 79px;
    left: 37%;
    top: 0;
    position: absolute;
}

.header-top:after {
    background: #2d2d72;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    content: '';
    z-index: -1;
}

.header-top .top-left h6 {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    color: #ffffff;
    margin-top: 5px;
    z-index: 99;
}

.header-top .top-right {
    float: right;
}

.header-top .top-right .top-info li {
    position: relative;
    display: inline-block;
    padding: 0px 15px;
    border-right: 1px solid #c6ccda;
}

.header-top .top-right .top-info li:last-child {
    border-right: none;
}

.header-top .top-right .top-info li:first-child a {
    color: #fff;
    font-size: 14px;
}

.header-top .top-right .top-info li:nth-child(2) a {
    color: #fff;
    font-size: 14px;
}

.header-top .top-right .top-info li:nth-child(3) a {
    color: #fff;
    font-size: 14px;
}

.header-top .top-right .top-info li a i {
    margin-right: 5px;
}

.menu-container {
    width: 90%;
    margin: 0 auto;
}

/* Top Utility Bar */
.top-bar {
    color: #fff;
    padding: 7px 0;
    font-size: 18px;
    letter-spacing: 1px;
    background: #24357b;
    /* background: #24357b9e; */
    backdrop-filter: blur(22px);
    display: none;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.top-bar a:hover {
    color: #00b4c4;
}

.top-bar a:hover {
    /* opacity: 0.7; */
}

/* Main Navigation Bar */
.main-nav {
    padding: 20px 0;
    background: transparent;
    /* Set to white or semi-transparent if needed */
    position: absolute;
    /* To overlay on background images */
    width: 100%;
}

.logo img {
    height: 100%;
}

.primary-menu {
    display: flex;
    align-items: center;
}

.primary-menu ul {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.primary-menu ul li {
    margin: 0 15px;
}

.primary-menu ul li a {
    text-decoration: none;
    color: #fff;
    /* White as per the image overlay */
    font-weight: 600;
    font-size: 15px;
}

/* The Teal Action Button */
.btn-free-consult {
    background-color: #00B4C4;
    /* The signature teal color */
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-free-consult:hover {
    background-color: #008a96;
}

.top-nav {
    text-align: right;
    padding-right: 55px;
}

/* ..........main-banner................. */
.banner-images img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Get a Quote Button */
.navigation .quote-btn {
    background: #00b2c4;
    color: #000000 !important;
    padding: 10px 23px !important;
    text-decoration: none;
    /* border-radius: 3px; */
    font-size: 14px;
    transition: 0.3s;
    /* height: 0; */
    text-transform: uppercase;
    font-weight: 600;
}

.quote-btn:hover {
    background: #fff;
    color: #ff6600;
}

.main-banner {
    position: relative;
}

.banner-content {
    position: absolute;
    bottom: 20%;
    left: 6%;
}

.banner-content h1 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    line-height: 134%;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.banner-content h1 span {
    background-color: #ffffff;
    color: #000000;
    padding: 0 10px;
    /* line-height: 0; */
}


/* Shape at Bottom Right */
.banner-shape {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 250px;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 35px;
        letter-spacing: 0;
    }

    .main-banner {
        height: 80vh;
        /* Adjust height for mobile */
    }

    .btn-consult {
        font-size: 16px;
        padding: 12px 25px;
    }

    .banner-shape {
        width: 120px;
    }
}

/* --- New Integrated Button Style --- */

/* Hero Section */
.hero-section-main {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ FIX */
    transition: transform 6s ease-in-out;
    will-change: transform;
}

.carousel-item.active .hero-slide {
    transform: scale(1.03);
    /* instead of 1.05 or 1.08 */
}

.carousel-item {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}


.hero-content {
    position: absolute;
    z-index: 2;
    /* text-align: center; */
    max-width: 100%;
    padding: 0 20px;
    color: #fff;
    left: 10%;
}

.animated-heading {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.3s;
    color: #fff;
}

.animated-heading span {
    font-weight: 700;
    display: block;
    /* font-weight: 600; */
    color: #f66300;
}

.animated-paragraph {
    font-size: 1.1rem;
    margin: 20px 0 30px;
    opacity: 0;
    transform: translateY(20px);
    color: #fff;
    animation: fadeUp 1s ease forwards 0.8s;
}

.btn-slide {
    display: inline-block;
    background: #f66300;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-slide:hover {
    background: #fff;
    color: #f66300;
}

/* Fade Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Navigation */
.custom-prev,
.custom-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 22px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-size: 20px;
}

.custom-prev:hover,
.custom-next:hover {
    background: #f66300;
    color: #fff;
}


/* ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ Zoom effect on active slide */
.swiper-slide-active .hero-slide {
    transform: scale(1.08);
}

.top-left {
    /* position: absolute; */
    top: 20px;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 10;
}

.marquee-text {
    display: inline-block;
    animation: marquee 12s linear infinite;
}



/* Keyframes for scrolling text */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* banner */
.homeSlider {

    width: 100%;
    margin: 0;
    padding: 0;
    position: relative
}

.homeSlider #slider {

    width: 100%;
    margin: 0;
    position: relative;
}

.homeSlider #slider .sliderCaption {

    width: 100%;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: transparent;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.homeSlider #slider .sliderCaption:before,
.slider .slider_caption_up:before,
.slider .slider_caption_left:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    min-height: 100%;
    z-index: -1;
}

.homeSlider #slider img {
    width: 100%;
}

.homeSlider #slider .sliderCaption .bannerTitle {
    color: var(--red);
    display: inline-block;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
    padding-top: 12%;
    text-shadow: 1px 1px 1px #000000a6;
}

.homeSlider #slider .sliderCaption p {
    color: #fff;
    font-size: 20px;
    text-transform: inherit;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 600px;
}

.homeSlider #slider .sliderCaption .read_more {
    color: #fff;
    border: 1px solid #fff;
}

.homeSlider #slider .sliderCaption .read_more:hover {
    border-color: var(--red);
    color: #fff;
}

.homeSlider #slider .sliderCaption .read_more:after {
    background: var(--red);
}

.homeSlider #slider .owl-item.active .bannerTitle {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.4s;
}

.homeSlider #slider .owl-item.active p {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.homeSlider #slider .owl-item.active .read_more {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}





.animated-heading {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.3s;
    color: #fff;
}

.animated-heading span {
    color: #ffd400;
    display: block;
}

.animated-paragraph {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    opacity: 0;
    transform: translateY(20px);
    color: #fff;
    animation: fadeUp 1s ease forwards 0.8s;
}

.btn-slide {
    display: inline-block;
    background: #24357B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1.2s;
}

.btn-slide:hover {
    background: #fff;
    color: #f66300;
}

/* Fade Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Zoom Effect */
.carousel-item.active .hero-slide {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 980px) {
    .animated-heading {
        font-size: 25px;
        text-align: center;
    }

    .animated-paragraph {
        font-size: 1rem;
        text-align: center;
    }

    .hero-content {
        padding: 50px 20px;
        top: 56%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 94%;
    }

    .btn-slide {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ..............new-----------banner */


.hero-2 {
    padding: 373px 0 350px;
    position: relative;
}

.hero-2 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
}

.hero-2 .hero-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(2 2 2 / 58%);
}

.hero-2 .hero-content {
    position: relative;
    z-index: 99;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-2 .hero-content h1 {
    font-size: 60px;
    color: #fff;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .hero-2 .hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .hero-2 .hero-content h1 {
        font-size: 55px;
    }

    .modal-left {
        /* width: 38%; */
        background: #fffcfcde;
        padding: 15px 13px !important;
        /* border-right: 1px solid #ddd; */
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 4px 15px !important;
        font-size: 1rem;
        border-radius: 8px;
        border: 1px solid #ccc;
        transition: all 0.3s ease;
    }

    .form-group textarea {
        resize: none;
        min-height: 78px !important;
    }

}

@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 23px !important;
        line-height: 30px;
    }

    .hero-section-2 {
        height: 80vh !important;
        overflow: hidden !important;
    }

    .extra-button {
        display: none !important;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 8px;
        left: 0;
        width: 100%
    }

    .service-wrapper .row .col-xxl-3 {
        margin-bottom: 20px;
    }

    .project-card-item .project-content h5 {
        font-size: 19px !important;
        font-weight: 600;
    }

    .vl-about-wrap-seven .title {
        font-size: 25px !important;
        font-weight: 700;
        margin-bottom: 8px;
        margin-top: 4px;
    }

    .vl-about-content-eight-wrapper {
        padding-left: 0px !important;
    }

    .vl-about-content-eight-wrapper {
        padding-top: 20px;
    }

}

.hero-2 .hero-content p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    max-width: 710px;
    margin: 40px auto 0;
}

@media (max-width: 575px) {
    .hero-2 .hero-content p {
        font-size: 18px;
        margin-top: 25px;
    }

    .carousel-item .btn-slide {
        display: none;
    }

    .hero-slide {
        position: relative;
        width: 100%;
        height: 62vh;
    }
}

.hero-2 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content .hero-button {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 35px;
    }
}

.hero-2 .hero-content .hero-button .theme-btn {
    border: 1px solid #1b9aaa;
}

.hero-2 .hero-content .hero-button .theme-btn:hover {
    border: 1px solid red;
}

.hero-2 .hero-content .hero-button .theme-btn.style-2 {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.hero-2 .hero-content .hero-button .theme-btn.style-2 i {
    background-color: #1b9aaa;
    color: #fff;
}

.hero-2 .hero-content .hero-button .theme-btn.style-2:hover {
    border: 1px solid #1b9aaa;
}

.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::before,
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::after {
    background-color: #1b9aaa;
}

.hero-2 .bar-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

@media (max-width: 1399px) {
    .hero-2 .bar-shape {
        display: none;
    }
}

.hero-2 .bar-shape img {
    height: 100%;
}

.doctor-section {
    background-image: url(../image/about-doctor.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.theme-btn {
    background: #17a2b8;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 24px;
    padding-right: 5px;
    border-radius: 3px;
    line-height: 1;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.theme-btn i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: #ffd400;
    color: #000000;
    margin-left: 21px;
    transition: all 0.4s ease-in-out;
}

.theme-btn::before {
    content: "";
    background-color: #1b9aaa;
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.theme-btn::after {
    content: "";
    background-color: #1b9aaa;
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.theme-btn:hover::before,
.theme-btn:hover::after {
    width: 100%;
}

.theme-btn:hover i {
    background-color: #24357b;
    color: #fff;
}

.theme-btn.bg-header {
    background-color: red;
}

.theme-btn.bg-header::before,
.theme-btn.bg-header::after {
    background-color: #fff;
}

.theme-btn.bg-header i {
    background-color: #1b9aaa;
    color: #fff;
}

.theme-btn.bg-header:hover {
    color: red;
}

.theme-btn.theme-btn-2 {
    background: #24357B;
}

.theme-btn.theme-btn-2 i {
    color: #24357B;
}

.theme-btn.theme-btn-2:hover::before,
.theme-btn.theme-btn-2:hover::after {
    width: 100%;
}

.theme-btn.theme-btn-2:hover i {
    background: #24357B;
    color: #fff;
}


/* banner-naimted */

/* Container for extras */
.banner-footer-extras {
    position: relative;
    z-index: 10;
}

/* Scroll Mouse Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

.arrow-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #00acc1;
    border-right: 2px solid #00acc1;
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow-bounce 2s infinite;
}

/* Sticky Side Button */
.sticky-side-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: #00acc1;
    color: #fff;
    padding: 10px 25px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    letter-spacing: 1px;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.sticky-side-btn:hover {
    background: #008c9e;
    color: white;
}

/* Animations */
@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

@keyframes arrow-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(10px) rotate(45deg);
    }

    60% {
        transform: translateY(5px) rotate(45deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sticky-side-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .scroll-indicator {
        bottom: 15px;
    }
}

/* Container for the buttons */
.carousel-custom-controls {
    position: absolute;
    bottom: 30px;
    /* Banner-er niche theke distance */
    right: 50px;
    /* Banner-er right theke distance */
    display: flex;
    gap: 10px;
    /* Duto button-er modhye gap */
    z-index: 10;
}

/* Common Button Style */
.control-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white */
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Effect */
.control-btn:hover {
    background-color: #17a2b8;
    /* Tanna Dental-er brand color try korte paren */
    border-color: #17a2b8;
    color: #fff;
    transform: translateY(-3px);
    /* Chotto ekta bounce effect */
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-custom-controls {
        right: 20px;
        bottom: 20px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


/* Section Typography */
.dental-services-wrapper {
    background-image: url(../images/dental-services-wrapper.png);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: lighten;
}

.dental-services-wrapper .main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e82;
    margin-bottom: 0;
}

.dental-services-wrapper .sub-heading {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Circle Image Logic */
.service-circle-container {
    position: relative;
    width: 100%;
    /* max-width: 250px; */
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.service-circle-container:hover {
    transform: translateY(-10px);
}

.template-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* Text Overlay positioning */
.service-text-overlay {
    position: absolute;
    top: 45%;
    /* Circle er center onujayi adjust kora */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    /* Jate text circle er baire na jay */
    text-align: center;
}

.service-text-overlay p {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .dental-services-wrapper .main-heading {
        font-size: 1.5rem;
    }

    .dental-services-wrapper .sub-heading {
        font-size: 1.2rem;
    }

    .service-text-overlay p {
        font-size: 0.75rem;
        /* Mobile e text choto thakbe */
    }
}

@media (max-width: 480px) {
    .service-text-overlay {
        top: 40%;
    }
}

.about-section-main {
    padding: 80px 0;
    background-color: #edf2fa2e;
    position: relative;
    font-family: 'Poppins', sans-serif;
    z-index: 10;
}

/* Image Decoration */
.about-img-container {
    position: absolute;
    z-index: 5;
    /* padding: 0 30px 30px 0; */
    width: 80%;
    left: 0;
    z-index: -1;
}

.main-about-img {
    width: 49%;
    border-radius: 20px;
    z-index: -1;
    position: relative;
    height: 780px;
    object-fit: cover;
}

.deco-border-teal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 40px;
    /* background-color: #17a2b8; */
    /* Teal */
    border-radius: 15px;
    z-index: 1;
}

/* Content Styling */
.sub-heading {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
}

.main-title {
    font-size: 42px;
    font-weight: 800;
    color: #333;
}

.main-title span {
    color: #17a2b8;
}

.para-text {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
    text-align: justify;
}

/* Custom Tabs */
.about-tabs-wrapper {
    border: 1px solid #000;
    border-radius: 40px;
    overflow: hidden;
}

.about-tabs-wrapper .nav-tabs {
    border: none;
    display: flex;
    width: 100%;
}

.about-tabs-wrapper .nav-item {
    flex: 1;
    margin-bottom: 0;
}

.about-tabs-wrapper .nav-link {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 12px;
    font-weight: 700;
    color: #000;
    background: transparent;
    border-right: 1px solid #000;
}

.about-tabs-wrapper .nav-item:last-child .nav-link {
    border-right: none;
}

.about-tabs-wrapper .nav-link.active {
    background-color: #000;
    color: #fff;
}

/* Buttons */
.btn-learn-more {
    display: inline-block;
    background-color: #17a2b8;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-learn-more:hover {
    background-color: #2c3e82;
    color: #fff;
}

/* Sticky Right Button */
.sticky-book-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-260%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #17a2b8;
    color: #fff;
    padding: 10px 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 15px 15px 0 0;
    z-index: 999;
}

.sticky-book-btn:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 30px;
    }

    .about-img-container {
        padding: 0 15px 15px 0;
    }

    .deco-border-blue,
    .deco-border-teal {
        display: none;
    }

    .about-tabs-wrapper .nav-link {
        font-size: 12px;
        padding: 10px 5px;
    }
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* Container styling */
.about-tabs-container {
    border: 1.5px solid #24357b05;
    border-radius: 50px;
    /* Capsule shape */
    overflow: hidden;
    max-width: 100%;
    margin-top: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* Header/Button Container */
.custom-tabs-header {
    display: flex;
    background: transparent;
    border-bottom: 1.5px solid #00000021;
}

/* Tab Buttons */
.tab-link {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 10px;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    border-right: 1.5px solid #24357b21;
    /* Vertical divider line */
}

/* Remove last border line */
.tab-link:last-child {
    border-right: none;
}

/* Active Tab Style (Black background, White text) */
.tab-link.active {
    background-color: #24357b;
    color: #fff;
}

/* Content Area */
.custom-tabs-body {
    padding: 20px 25px;
}

.about-tab-content {
    display: none;
    /* Hidden by default */
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    animation: fadeIn 0.5s ease;
}

/* Show active content */
.about-tab-content.active {
    display: block;
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .tab-link {
        font-size: 11px;
        padding: 10px 5px;
    }

    .about-tabs-container {
        border-radius: 30px;
    }
}

.dental-services {}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: #79c35b;
    margin-top: 15px;
}

/* Section Base */
.dental-services {}



.title-separator {
    width: 80px;
    height: 3px;
    background: #17a2b8;
    margin-top: 15px;
}


.dental-services {
    background-color: #F4F9FC;
    /* border-top: 1px dashed #8383832e; */
}

.sub-title {
    color: #17a2b8;
    font-weight: 700;
    text-transform: uppercase;
}



.title-separator {
    width: 60px;
    height: 3px;
    background: #17a2b8;
    margin-top: 10px;
}

/* Service Card Styles */
.service-card {
    border-radius: 17px;
    background: #fff;
    overflow: hidden;
    /* height: 100%; */
    border: none;
    transition: 0.4s ease;
    position: relative;
    margin-bottom: 35px;
    box-shadow: rgb(0 0 0 / 20%) 0px 8px 24px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.card-img-wrapper img {
    width: 100%;
    /* height: 220px; */
    /* object-fit: cover; */
    transition: 0.5s;
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.icon-header {}

.icon-header img {
    width: 30px;
    height: auto;
}

.card-content {
    /* padding: 15px 20px 2px; */
    /* text-align: center; */
    /* background: #4eb8c9; */
}

.card-content h4 {
    color: #002F6B;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    background: lab(98.2% 1.16 0.94);
    padding: 17px 10px;
    text-align: center;
}

.card-content p {
    font-size: 16px;
    color: #2c3a61;
    margin: 15px 0 30px;
    text-align: center;
    /* display: none; */
    padding: 0px 11px;
}

.read-more {}

/* View All Button */
.btn-view-all {
    display: inline-block;
    background: #24357b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-view-all:hover {
    color: #fff;
}

/* Bottom Icon Row */
.icon-row {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.service-item {
    text-align: center;
    padding: 30px 10px;
    border-right: 1px solid #eee;
}

.service-item:last-child {
    border-right: none;
}

.service-item img {
    width: 40px;
    margin-bottom: 15px;
}

.service-item span {
    display: block;
    font-size: 10px;
    color: #17a2b8;
    font-weight: 800;
}

.service-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .service-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

.icon-header {
    position: absolute;
    top: 54%;
    left: 17px;
    width: 60px;
    height: 60px;
    background: #17a2b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 45;
    display: none;
}

.icon-header i {
    font-size: 24px;
    color: #ffffff;
}

.service-card:hover .icon-header i {
    color: #ffd400;
    /* Dark blue color */
    transition: 0.3s ease;
}

.dental-services-slider .item {
    padding: 15px;
}

.dental-services-slider .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.dental-services-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #d6d6d6;
    display: block;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

.dental-services-slider .owl-dot.active span {
    background: #17a2b8;
    /* Teal color */
    width: 25px;
    border-radius: 10px;
}

.dental-services-wrapper3 {
    background: #F4F9FC;
}

.about-text-content {
    padding-right: 32px;
}

.smile-town-experience {
    position: relative;
    background-image: url('../images/happy-dental.jpg');
    /* Replace with your image path */
    background-repeat: no-repeat;
    background-size: cover;
    /* Jate left side-e image ta thik thake */
    background-position: left center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 80px 0;
    background-color: #fff;
}

/* Sub-heading 'What' effect */
.sub-heading {



    /* Very light watermarked text */
}



.title-line {
    width: 50px;
    height: 3px;
    background-color: #17a2b8;
    /* Your theme light green color */
}

.description {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* Feature List Styling */
.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.features-list i {
    color: #17a2b8;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

.features-list h5 {
    font-size: 17px;
    font-weight: 700;
    color: #3d3d3d;
    margin-bottom: 5px;
}

.features-list p {
    font-size: 16px;
    color: #312e2e;
    margin-bottom: 0;
    line-height: 1.5;
}

.features-list a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .smile-town-experience {
        background-image: none;
        /* Mobile e background image remove kore dile content valo dekhabe */
    }

    .main-title {
        font-size: 26px;
    }
}

.experience-content {
    position: relative;
}

.title-wrapper {
    position: relative;
    padding-top: 20px;
    margin-bottom: 19px;
    z-index: 1;
}

/* Background Watermark Text */
.watermark-text {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 80px;
    /* Boro size */
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    /* Ekdom halka color */
    text-transform: capitalize;
    line-height: 1;
    z-index: -1;
    user-select: none;
}

/* Main Title */
.main-title {
    font-size: 37px;
    color: #2c3e50;
    position: relative;
    margin: 0;
    line-height: 1.3;
}

/* Green Separator Line */
.title-separator {
    width: 60px;
    height: 3px;
    background-color: #78c2ad;
    /* Teal/Green color */
    margin-top: 15px;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .watermark-text {
        font-size: 60px;
        top: 0;
    }

    .main-title {
        font-size: 26px;
    }
}

.general-dentistry-section {
    background-color: #f4f8fb;
    /* Light grayish-blue bg from image */
    border-bottom: 1px solid #e1e8ed;
}

.dentistry-item {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-right: 1px solid #e1e8ed;
    /* Vertical separator */
    min-height: 120px;
}

/* Icon box styling */
.dentistry-icon {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.dentistry-icon img {
    width: 40px !important;
    /* Owl carousel override */
    height: auto;
}

/* Text styling */
.dentistry-text span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #8c98a4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.dentistry-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

/* Hover effect */
.dentistry-item:hover {
    background-color: #ffffff;
    transition: 0.3s ease;
    cursor: pointer;
}

.general-dentistry-section {
    background-color: #f4f8fb;
    border-bottom: 1px solid #e1e8ed;
}

.dentistry-item {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-right: 1px solid #e1e8ed;
    min-height: 120px;
    transition: 0.3s ease;
}

/* Icon Box Styling */
.dentistry-icon {
    width: 70px;
    height: 70px;
    background: #17a2b8;
    /* Light yellow background as per design */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* FontAwesome Icon Specific Style */
.dentistry-icon i {
    font-size: 30px;
    color: #ffffff;
    /* Blue/Teal color */
}

.dentistry-text span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #7e8287;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.dentistry-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Hover Effect */
.dentistry-item:hover {
    background-color: #ffffff;
    cursor: pointer;
}

.dentistry-item:hover .dentistry-icon i {
    transform: scale(1.1);
    transition: 0.3s;
}

.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/images/family-banner.jpg');
    /* Tomar image path */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Overlay as per your request */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(283.76deg, #00000000 43.45%, #00000029 88.18%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

/* Google Rating Style */
.google-rating {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.g-icon {
    width: 20px;
    margin-right: 10px;
}

.stars {
    color: #ffb400;
    margin-right: 10px;
}

.google-rating span {
    font-size: 14px;
    font-weight: 500;
}

/* Features */
.feature-points li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.feature-points i {
    color: #fff;
    font-size: 20px;
    margin-right: 12px;
}

/* Scroll Mouse Icon */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #17a2b8;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 20px;
    background: #fff;
    margin: 0 auto 5px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: #000;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}



.counter-section {
    background: #ffffff;
    padding: 80px 0;
}

.counter-box {
    padding: 20px;
    transition: all 0.4s ease;
    /* border-radius: 15px; */
    border: 1px dashed #dadadac2;
    border-top: 0;
    border-bottom: 0;
    background: #fdfcfa59;
}

/* Hover korle halka shadow ashbe */
.counter-box:hover {
    /* transform: translateY(-10px); */
}

/* Icon Design */
.counter-icon {
    font-size: 35px;
    color: #17a2b8;
    /* Tomar theme color */
    margin-bottom: 15px;
    /* opacity: 0.8; */
    /* width: 15%; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.counter-num {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    /* letter-spacing: 3px; */
    margin-bottom: 0;

    /* Strong stroke */
    -webkit-text-stroke: 2px #45b5c6;

    /* depth shadow */
    /* text-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25); */
    font-family: 'Poppins', sans-serif;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .counter-num {
        font-size: 50px;
    }

    .counter-label {
        font-size: 12px;
    }
}

/* Contact Now Section Styling */
.contact-now-section {
    position: relative;
    padding: 140px 0;
    background-image: url('../images/smile.webp');
    /* Use your tooth/mirror image */
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    background-repeat: no-repeat;
}

/* Overlay that you mentioned */
.contact-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Your provided gradient */
    background-image: linear-gradient(283.76deg, #00000000 43.45%, #001a33 88.18%);
    z-index: 1;
}

.content-box {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-title span {
    font-weight: 800;
}

.cta-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    /* max-width: 500px; */
    opacity: 0.9;
    color: #fff;
}

/* Buttons */
.cta-btns .btn-book {
    background: #fff;
    color: #2c3e50;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    margin-right: 15px;
    transition: 0.3s;
}

.cta-btns .btn-phone {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 35px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}

.cta-btns .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #17a2b8;
}

.counter-icon i {
    background: #17a2b8;
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.padding-o {
    padding: 0px !important;
}

.counter-label {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    /* Secondary text color */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* margin-top: 5px; */
}

/* ===== TESTIMONIAL SECTION BACKGROUND ===== */
.testimonial-section {
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
    border-top: 1px dashed #00000014;
}

/* Remove unwanted gray bg */
.owl-carousel,
.owl-stage,
.owl-item,
.testimonial-slider .owl-stage-outer {
    background: transparent !important;
}


/* ===== REVIEW CARD DESIGN ===== */
.review-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #bbbcbd5e;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: inset 0 10px 25px rgb(136 136 136 / 23%);
    overflow: hidden;
    min-height: 275px;
}

/* Top gradient border */
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(90deg, #17a2b8, #4dd0e1); */
    border-radius: 20px 20px 0 0;
    border-radius: 10px;
}

/* Hover Effect */
.review-card:hover {
    /* transform: translateY(-12px) scale(1.02); */
    /* box-shadow: inset 0 20px 50px rgba(0, 0, 0, 0.12); */
    /* border-color: #17a2b8; */
}


/* ===== USER INITIAL DESIGN ===== */
.user-initial {
    width: 55px;
    height: 55px;
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 16%);
}

.bg-purple {
    background: #6f42c1;
}

.bg-info {
    background: #17a2b8;
}

.bg-dark {
    background: #2c3e82;
}


/* ===== STARS DESIGN ===== */
.stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}


/* ===== REVIEW TEXT ===== */
.review-content {
    font-size: 14px;
    color: #555;
    min-height: 80px;
    margin-top: 15px;
    line-height: 1.6;
}


/* ===== READ MORE ===== */
.read-more {
    color: #ff5722;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}


/* ===== HEADING STYLE ===== */
.testimonial-section h2 {
    font-size: 36px;
    font-weight: 800;
}

.testimonial-section p {
    font-size: 16px;
}


/* ===== PREMIUM DOTS DESIGN ===== */
.testimonial-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonial-slider .owl-dot {
    display: inline-block;
}

.testimonial-slider .owl-dot span {
    width: 10px;
    height: 10px;
    background: #cfd8dc !important;
    margin: 5px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Active dot */
.testimonial-slider .owl-dot.active span {
    width: 35px;
    height: 10px;
    border-radius: 20px;
    background: linear-gradient(45deg, #17a2b8, #4dd0e1) !important;
}

/* Hover effect */
.testimonial-slider .owl-dot:hover span {
    background: #17a2b8 !important;
}

/* Main Title Style */
.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

/* Span Color Accent (Blue) */
.section-title span {
    color: #4285F4;
    /* Google Blue */
}

/* Professional Underline */
.title-separator {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #4285F4, #EA4335, #FBBC05, #34A853);
    /* Google Gradient */
    margin: 0 auto 20px;
    border-radius: 10px;
}

/* Subtitle Style */
.section-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Logo Wrapping Animation */
.google-logo-wrap img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.05));
}

.google-logo-wrap:hover img {
    transform: scale(1.1);
}

/* Responsive adjust */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.faq-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('../images/frequently.webp');
    /* Background Image ami pore lagie nebo */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Question Styling */
.faq-content-wrap .accordion-button {
    font-size: 18px !important;
    /* Font ektu boro korlam */
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    padding: 20px 21px 20px 12px !important;
    /* Spacing thik korlam */
    color: rgb(255 255 255 / 90%) !important;
    border: none !important;
    font-family: 'Montserrat', sans-serif;
}

/* Active Question (Open) */
.faq-content-wrap .accordion-button:not(.collapsed) {
    color: #fff !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    @import url('https: //fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

    body {
        margin: 0;
        padding: 0;
        list-style: none;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        overflow-x: hidden;
        font-size: 16px;
        line-height: 1.6;
    }

    a:hover {
        color: #00b2c4;
    }

    .text-primary {
        --bs-text-opacity: 1;
        color: rgb(0 86 183) !important;
    }

    /*** 

====================================================================
Main Header
====================================================================

***/
    /* Base styling for main navigation */
    /* Base styling for main navigation */
    h1,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif !important;
    }

    h2 {
        font-family: 'Poppins', sans-serif;
    }

    a:hover,
    a:focus,
    a:visited {
        text-decoration: none;
        outline: none;
    }

    a {
        text-decoration: none !important;
        cursor: pointer;
        color: #1c73ea;
        font-family: 'Montserrat', sans-serif;
    }

    button {
        outline: none !important;
        cursor: pointer;
    }

    p,
    .text {
        font-size: 16px;
        line-height: 28px;
        font-weight: 500;
        color: #292929;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }

    ul,
    li {
        list-style: none;
        padding: 0px;
        margin: 0px;
        font-family: 'Montserrat', sans-serif;
    }

    .main-menu {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-menu .navigation {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    .main-menu .navigation>li {
        position: relative;
        padding: 0 15px;
    }

    /* Sub-menu initially hidden */
    .main-menu .navigation>li>ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 100%;
        width: 280px;
        z-index: 100;
        background-color: #ffffff;
        padding: 0px 0;
        transform: translateY(30px);
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        transition: 500ms ease;
    }

    /* Show sub-menu on hover */
    .main-menu .navigation>li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0ms;
        /* Visibility activates immediately */
    }

    /* Sub-menu items styling */
    .main-menu .navigation>li>ul>li {
        list-style: none;
        position: relative;
    }

    /* Styling for all sub-menu links */
    .main-menu .navigation>li>ul>li>a,
    .main-menu .navigation>li>ul>li>ul>li>a,
    .main-menu .navigation>li>ul>li>ul>li>ul>li>a {
        position: relative;
        padding: 7px 13px;
        line-height: 29px;
        font-weight: 400;
        font-size: 16px;
        color: #ffffff;
        text-align: left;
        margin: 0;
        text-transform: capitalize;
        background: #354982;
        /* Ensure a consistent background */
        display: block;
        border-bottom: 1px solid #2a3b6b !important;
        transition: color 200ms ease, background-color 200ms ease;
        /* Apply specific transition */
        /* border-right: 1px solid #ffffff75; */
    }

    .main-menu .navigation>li>ul>li>a:hover,
    .main-menu .navigation>li>ul>li>ul>li>a:hover,
    .main-menu .navigation>li>ul>li>ul>li>ul>li>a:hover {
        color: #ffffff;
        background-color: #27396f;
        /* Slight change for hover background */
    }

    /* Nested sub-menu transitions */
    .main-menu .navigation>li>ul>li>ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: 100%;
        top: 20%;
        width: 250px;
        z-index: 100;
        background-color: #ffffff;
        padding: 0px 0;
        transform: translateY(30px);
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        transition: 500ms ease;
    }

    .main-menu .navigation>li>ul>li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    /* Smooth transition for deeper nested menus */
    .main-menu .navigation>li>ul>li>ul>li>ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: 100%;
        top: 20%;
        background-color: #ffffff;
        padding: 0px 0;
        transform: translateY(30px);
        transition: 500ms ease;
        width: 370px;
        border-right: 1px solid #fff;
    }

    .main-menu .navigation>li>ul>li>ul>li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .main-header .logo {
        position: relative;
    }

    .main-header .logo img {
        width: 100%;
        /* filter: brightness(0) invert(1); */
    }

    .main-header .logo {
        width: 155px;
    }

    .main-header .main-box {
        position: relative;
        left: 0px;
        top: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .main-header .main-box .nav-outer {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .main-menu {
        position: relative;
        float: left;
    }

    .main-menu .navbar-header {
        display: none;
    }

    .main-menu .navbar-collapse {
        padding: 0px;
    }

    .main-menu .navigation {
        position: relative;
        margin: 0px;
    }

    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 30px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .main-menu .navigation>li:last-child {
        margin-right: 0;
    }

    .main-menu .navigation>li>a {
        position: relative;
        display: block;
        text-align: center;
        opacity: 1;
        font-weight: 600;
        color: #ffffff;
        font-size: 18px;
        line-height: 20px;
        padding: 0;
        /* margin: 0 15px; */
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        text-transform: uppercase;
    }

    .main-menu .navigation>li>a:before {
        position: absolute;
        left: 50%;
        bottom: -4px;
        height: 2px;
        width: 0%;
        /* background: #ffffff; */
        content: "";
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .main-menu .navigation>li:hover>a:before,
    .main-menu .navigation>li.current>a:before {
        left: 0;
        width: 75%;
    }


    .main-menu .navigation>li>ul.from-right {
        left: auto;
        right: 0px;
    }



    .dropdown ul li:last-child a {
        /* border-bottom: none !important; */
    }



    .main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
        font-family: 'Font Awesome 5 Free';
        content: "\f105";
        position: absolute;
        right: 9px;
        top: 11px;
        display: block;
        line-height: 24px;
        font-size: 16px;
        font-weight: 900;
        z-index: 5;
        /* transform: rotate(180deg); */
    }

    .dropdown2a>a:after {
        font-family: 'Font Awesome 5 Free';
        content: "\f105";
        position: absolute;
        right: 9px;
        top: 11px;
        display: block;
        line-height: 24px;
        font-size: 16px;
        font-weight: 900;
        z-index: 5;
        transform: rotate(180deg);
    }

    .dropdown a i {
        font-size: 13px;
        color: #ffffff;
    }

    .dropdown2a li {
        bottom: 2px solid #bebdbd !important;
    }

    .dropdown2a:hover ul {
        display: block;
    }

    .is-sticky {
        position: fixed !important;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
        padding: 0px 0;
        backdrop-filter: blur(7px);
        animation: slideDown 0.45s ease-out;
        width: 100%;
        top: 0;
        border-radius: 0px;
        z-index: 1000;
        background: #2c3e82;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .is-sticky .logo img {
        width: 100%;
        filter: inherit !important;
    }

    .is-sticky .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 35px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 25px;
        margin-right: 12px;
    }

    .is-sticky .logo {
        width: 125px;
    }

    .main-menu .navigation li.dropdown .dropdown-btn {
        position: absolute;
        right: 10px;
        top: 8px;
        width: 34px;
        height: 30px;
        border: 1px solid #ffffff;
        text-align: center;
        font-size: 16px;
        line-height: 26px;
        color: #ffffff;
        cursor: pointer;
        z-index: 5;
        display: none;
    }

    .main-header-two__bottom {
        position: absolute;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .main-header .outer-box {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 40px;
    }

    .main-header .outer-box .theme-btn {
        display: block;
        min-width: 160px;
    }

    .dropdown_t ul {
        position: absolute;
        top: 0;
        right: -370px;
        width: 300px;
        background-color: #f48023;
    }

    .dropdown_t:hover ul {
        display: block;
    }


    /*** 

====================================================================
Mobile Menu
====================================================================

***/

    .mobile-nav-toggler {
        position: relative;
        font-size: 24px;
        line-height: 50px;
        cursor: pointer;
        color: #ffffff;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-right: 15px;
        display: none;
    }

    .mobile-menu {
        position: fixed;
        right: 0;
        left: 0;
        top: 0;
        max-width: 100%;
        height: 100%;
        margin: 0 auto;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        z-index: 999999;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        height: 100vh;
        overflow-y: scroll;
    }

    .mobile-menu .nav-logo {
        position: relative;
        padding: 20px 20px;
        text-align: left;
        width: 100px;
    }

    .mobile-menu .nav-logo img {
        max-width: 200px;
        height: 40px;
        filter: brightness(0) invert(1);
    }

    .mobile-menu-visible {
        overflow: hidden;
    }

    .mobile-menu-visible .mobile-menu {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu .menu-box {
        position: relative;
        left: 0px;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        background: #ffffff;
        padding: 0px 0px;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .mobile-menu-visible .mobile-menu .menu-box {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    .mobile-menu .close-btn {
        position: absolute;
        right: 20px;
        top: 25px;
        line-height: 30px;
        width: 30px;
        text-align: center;
        font-size: 30px;
        color: #ffffff;
        background-color: #1c73ea;
        cursor: pointer;
        z-index: 10;
        -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    .mobile-menu-visible .mobile-menu .close-btn {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .mobile-menu .close-btn:hover {
        opacity: 0.50;
    }

    .mobile-menu .navigation {
        position: relative;
        display: block;
        padding: 0 20px;
    }

    .mobile-menu .navigation>li {
        position: relative;
        display: block;
        margin-bottom: 10px;
    }

    .mobile-menu .navigation>li>a {
        font-weight: 500;
        border: 1px solid #eeeeee;
    }

    .mobile-menu .navigation li>a {
        position: relative;
        display: block;
        line-height: 20px;
        padding: 10px 20px;
        font-size: 16px;
        color: #404040;
        text-transform: capitalize;
    }

    .mobile-menu .navigation li:hover>a,
    .mobile-menu .navigation li.current>a {
        color: #1c73ea;
    }

    .mobile-menu .navigation li.dropdown .dropdown-btn {
        position: absolute;
        right: 0px;
        top: 0px;
        width: 40px;
        height: 42px;
        text-align: center;
        font-size: 27px;
        line-height: 40px;
        border: 1px solid #fafafa;
        color: #222222;
        cursor: pointer;
        z-index: 5;
        -webkit-transition: all 300msease;
        -o-transition: all 300ms ease;
        transition: all 300msease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu .navigation li.dropdown .dropdown-btn.active .fa:before {
        font-family: 'FontAwesome';
        display: inline-block;
        position: relative;
        content: "\f068";
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .mobile-menu .navigation li>ul,
    .mobile-menu .navigation li>ul>li>ul {
        display: none;
        margin-left: 10px;
    }


    .mobile-nav-toggler span {
        color: #ffffff;
    }


    .header-style .main-menu .navigation>li>a {
        color: #ffffff;
        font-weight: 600;
    }

    .header-style .main-menu .navigation>li>a:before {
        bottom: -4px;
    }

    .header-style .main-menu .navigation>li>a:hover:before,
    .header-style .main-menu .navigation>li.current>a:before {
        width: 25px;
    }

    .header-style .menu-outer {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding: 0px 20px 0px 100px;
        /* background: #24357b; */
        backdrop-filter: blur(5px);
    }

    .header-style .outer-box .theme-btn {
        min-width: 160px;
    }


    .header-style-three {
        top: 0;
    }

    .header-style-three .menu-outer {
        position: relative;
        padding: 40px 0 !important;
    }

    .header-style-three .theme-btn {
        min-width: 160px;
    }

    @media only screen and (max-width: 1920px) {

        .main-menu .navigation>li {
            position: relative;
            float: left;
            padding: 48px 0px;
            -webkit-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
            padding-right: 25px;
            margin-right: 12px;
        }

    }

    @media (max-width: 1440px) {
        .main-menu .navigation>li {
            position: relative;
            float: left;
            padding: 48px 0px;
            -webkit-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
            padding-right: 8px;
            margin-right: 12px;
        }

    }

    @media only screen and (max-width: 1240px) {
        .dropdown {
            padding-right: 0px;
        }

        .mobile-menu .navigation li>a {
            padding-right: 40px !important;
            border-bottom: 1px solid #cccccc;
        }

        .mobile-menu-visible .mobile-menu .menu-box {
            background-color: #003667;
            height: 100vh;
            overflow-y: scroll;

        }

        .mobile-menu .navigation {
            margin-top: 40px;
        }

        .mobile-menu .navigation li:hover>a,
        .mobile-menu .navigation li.current>a {
            color: #ffffff;
        }

        .mobile-menu .navigation li>a {
            color: #fff;
        }

        .dropdown-btn span {
            color: #fff;
            font-weight: 400;
        }

        .mobile-nav-toggler {
            display: block;
        }

        .main-header {
            top: 0;
            border-bottom: 1px solid rgba(255, 255, 255, .20);
        }

        .main-header .outer-box,
        .main-header .nav-outer .main-menu {
            display: none;
        }

        .header-style-three .logo,
        .header-style-two .logo,
        .main-header .logo-outer .logo {
            padding: 15px 0;
        }

        .main-header .logo-outer .logo img {
            height: 40px;
        }

        .header-style-two .mobile-nav-toggler {
            color: #303030;
        }

        .header-style-two,
        .header-style-three {
            border-bottom: 0;
        }

        .header-span {
            height: 70px;
        }

        .banner-slider .slick-prev {
            z-index: 1;
        }

        .banner-slider .slick-next {
            z-index: 1;
        }

        .dropdown a i {
            display: none;
        }

        .mobile-menu .nav-logo img {
            width: 100%;
        }

        .mobile-menu .nav-logo {
            position: relative;
            padding: 20px 20px;
            text-align: left;
            width: 81%;
        }

        .mobile-menu .nav-logo img {
            height: auto;
        }

        .mobile-menu .navigation li>ul,
        .mobile-menu .navigation li>ul>li>ul {
            padding-left: 0px !important;
            margin-left: 0px !important;
        }

        .mobile-menu .navigation li>ul,
        .mobile-menu .navigation li>ul>li>ul li a {
            border: 1px solid #fff;
        }

        .Application-slider .slick-next {
            display: none !important;
        }

        .Application-slider .slick-prev {
            display: none !important;
        }
    }

    @media only screen and (min-width: 768px) {

        .main-menu .navigation>li>ul,
        .main-menu .navigation>li>ul>li>ul {
            visibility: hidden;
            opacity: 0;
        }

    }

    @media only screen and (max-width: 1023px) {
        .mobile-nav-toggler {
            display: block;
        }

        .main-header {
            top: 0;
            border-bottom: 1px solid rgba(255, 255, 255, .20);
        }

        .main-header .outer-box,
        .main-header .nav-outer .main-menu {
            display: none;
        }

        .header-style-three .logo,
        .header-style-two .logo,
        .main-header .logo-outer .logo {
            padding: 15px 0;
        }

        .main-header .logo-outer .logo img {
            height: 40px;
        }

        .header-style-two .mobile-nav-toggler {
            color: #303030;
        }

        .header-style-two,
        .header-style-three {
            border-bottom: 0;
        }

        .header-span {
            height: 70px;
        }

    }

    .mobile-logo {
        display: none;
    }

    .mobile-image {
        display: none;
    }

    @media (max-width:1280px) {
        .awards-section {
            padding: 60px 0px;
        }

        .service-section-two .service-arrow {
            bottom: -32px;
        }

        .mobile-arrow {
            display: block;
        }

        .desktop-arrow {
            display: none;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .pbmit-heading-desc {
            text-align: center;
        }

        .pbmit-subtitle {
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .service-section-two .pbmit-heading-subheading .pbmit-title {
            font-size: 37px;
            line-height: 42px;
            text-align: center;
        }

        .about-two-content {
            padding-top: 15px !important;
        }

        .about-two-img {
            display: none;
        }

        .mobile-image {
            display: block;
        }

        .mobile-image img {
            width: 100%;
        }

        .pbmit-heading-subheading {}

        .enquiry-bg {
            padding: 30px 2px !important;
        }

        .fade-in-delay {
            margin-bottom: 25px !important;
        }

        .enquiry-bg {
            text-align: center;
        }

        .logo-make-india {
            margin-top: 15px !important;
        }

        .footer-top {
            text-align: left !important;
        }

        .footer-logo img {
            max-height: -webkit-fill-available;
            margin: 0 10px;
            width: 90%;
            height: auto;
            gap: 25px;
        }

        .logo-make-india {
            width: 50% !important;
        }

        .title-paragraph {
            display: none;
        }

        .pbmit-main-header-area .container-fluid {
            padding: 0px 2px !important;
        }

        .main-header .logo {
            width: 330px;
        }


        .pbmit-top-area {
            background: #066db8;
        }

        .site-branding {
            display: none;
        }

        .mobile-logo {
            display: block;
        }

        /* .site-header .site-branding img{
        padding-right: 0px;
    }
    .pbmit-right-box{
        display: none !important;
    } */
        .main-menu .navigation>li {
            position: relative;
            float: left;
            padding: 30px 0px;
            margin-right: 15px;
            -webkit-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }
    }


    .main-menu .navigation>li>ul>li.dropdown>a:after {
        font-family: 'FontAwesome';
        content: "\f105";
        position: absolute;
        right: 9px;
        top: 11px;
        display: block;
        line-height: 24px;
        font-size: 14px;
        font-weight: 900;
        z-index: 5;
        /* transform: rotate(180deg); */
    }

    .fa-times {
        font-family: 'FontAwesome' !important;
    }

    .fa-bars {
        font-family: 'FontAwesome' !important;
        font-weight: 500 !important;
    }

    .team-content h4 {
        text-align: center;
    }

    .scrollable-list {
        max-height: 300px;
        /* Adjust height as needed */
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
        list-style: none;
    }


    .heading-divider2 {
        border-bottom: 4px solid #0e467e !important
    }

    /*----- Header Top -----*/
    /*----- Header Top -----*/

    .header-top {
        position: relative;
        overflow: hidden;
        padding: 5px 0px;
        background: #d5250f;
        z-index: 100;
    }

    .header-top:before {
        content: "";
        /* background: #30337a; */
        transform: skewX(-30deg);
        -webkit-transform: skewX(-30deg);
        height: 100%;
        width: 79px;
        left: 37%;
        top: 0;
        position: absolute;
    }

    .header-top:after {
        background: #2d2d72;
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        content: '';
        z-index: -1;
    }

    .header-top .top-left h6 {
        font-size: 15px;
        font-weight: 500;
        text-transform: capitalize;
        color: #ffffff;
        margin-top: 5px;
        z-index: 99;
    }

    .header-top .top-right {
        float: right;
    }

    .header-top .top-right .top-info li {
        position: relative;
        display: inline-block;
        padding: 0px 15px;
        border-right: 1px solid #c6ccda;
    }

    .header-top .top-right .top-info li:last-child {
        border-right: none;
    }

    .header-top .top-right .top-info li:first-child a {
        color: #fff;
        font-size: 14px;
    }

    .header-top .top-right .top-info li:nth-child(2) a {
        color: #fff;
        font-size: 14px;
    }

    .header-top .top-right .top-info li:nth-child(3) a {
        color: #fff;
        font-size: 14px;
    }

    .header-top .top-right .top-info li a i {
        margin-right: 5px;
    }

    .menu-container {
        width: 90%;
        margin: 0 auto;
    }

    /* Top Utility Bar */
    .top-bar {
        color: #fff;
        padding: 7px 0;
        font-size: 18px;
        letter-spacing: 1px;
        background: #24357b;
        /* background: #24357b9e; */
        backdrop-filter: blur(22px);
        display: none;
    }

    .top-bar a {
        color: #fff;
        text-decoration: none;
        margin-left: 20px;
        transition: opacity 0.3s;
        font-size: 14px;
        font-weight: 600;
    }

    .top-bar a:hover {
        color: #00b4c4;
    }

    .top-bar a:hover {
        /* opacity: 0.7; */
    }

    /* Main Navigation Bar */
    .main-nav {
        padding: 20px 0;
        background: transparent;
        /* Set to white or semi-transparent if needed */
        position: absolute;
        /* To overlay on background images */
        width: 100%;
    }

    .logo img {
        height: 100%;
    }

    .primary-menu {
        display: flex;
        align-items: center;
    }

    .primary-menu ul {
        display: flex;
        list-style: none;
        margin-right: 30px;
    }

    .primary-menu ul li {
        margin: 0 15px;
    }

    .primary-menu ul li a {
        text-decoration: none;
        color: #fff;
        /* White as per the image overlay */
        font-weight: 600;
        font-size: 15px;
    }

    /* The Teal Action Button */
    .btn-free-consult {
        background-color: #00B4C4;
        /* The signature teal color */
        color: #fff;
        padding: 12px 24px;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        border-radius: 2px;
        transition: background 0.3s;
    }

    .btn-free-consult:hover {
        background-color: #008a96;
    }

    .top-nav {
        text-align: right;
        padding-right: 55px;
    }

    /* ..........main-banner................. */
    .banner-images img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    /* Get a Quote Button */
    .navigation .quote-btn {
        background: #00b2c4;
        color: #000000 !important;
        padding: 10px 23px !important;
        text-decoration: none;
        /* border-radius: 3px; */
        font-size: 14px;
        transition: 0.3s;
        /* height: 0; */
        text-transform: uppercase;
        font-weight: 600;
    }

    .quote-btn:hover {
        background: #fff;
        color: #ff6600;
    }

    .main-banner {
        position: relative;
    }

    .banner-content {
        position: absolute;
        bottom: 20%;
        left: 6%;
    }

    .banner-content h1 {
        color: #ffffff;
        font-size: 95px;
        font-weight: 700;
        line-height: 134%;
        text-transform: uppercase;
        margin-bottom: 30px;
        letter-spacing: -1px;
    }

    .banner-content h1 span {
        background-color: #ffffff;
        color: #000000;
        padding: 0 10px;
        /* line-height: 0; */
    }


    /* Shape at Bottom Right */
    .banner-shape {
        position: absolute;
        bottom: 0;
        right: 100px;
        width: 250px;
    }

    /* --- Mobile Responsive --- */
    @media (max-width: 768px) {
        .banner-content h1 {
            font-size: 35px;
            letter-spacing: 0;
        }

        .main-banner {
            height: 80vh;
            /* Adjust height for mobile */
        }

        .btn-consult {
            font-size: 16px;
            padding: 12px 25px;
        }

        .banner-shape {
            width: 120px;
        }
    }

    /* --- New Integrated Button Style --- */

    /* Hero Section */
    .hero-section-main {
        position: relative;
        width: 100%;
        /* height: 100vh; */
        overflow: hidden;
        color: #fff;
        font-family: "Poppins", sans-serif;
    }

    .hero-slide {
        position: relative;
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ FIX */
        transition: transform 6s ease-in-out;
        will-change: transform;
    }

    .carousel-item.active .hero-slide {
        transform: scale(1.03);
        /* instead of 1.05 or 1.08 */
    }

    .carousel-item {
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
    }

    .carousel-item.active {
        opacity: 1;
    }

    .hero-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 6s ease;
    }


    .hero-content {
        position: absolute;
        z-index: 2;
        /* text-align: center; */
        max-width: 100%;
        padding: 0 20px;
        color: #fff;
        left: 10%;
    }

    .animated-heading {
        font-size: 65px;
        font-weight: 700;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s ease forwards 0.3s;
        color: #fff;
    }

    .animated-heading span {
        font-weight: 700;
        display: block;
        /* font-weight: 600; */
        color: #f66300;
    }

    .animated-paragraph {
        font-size: 1.1rem;
        margin: 20px 0 30px;
        opacity: 0;
        transform: translateY(20px);
        color: #fff;
        animation: fadeUp 1s ease forwards 0.8s;
    }

    .btn-slide {
        display: inline-block;
        background: #f66300;
        color: #fff;
        padding: 12px 30px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-slide:hover {
        background: #fff;
        color: #f66300;
    }

    /* Fade Up Animation */
    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Swiper Navigation */
    .custom-prev,
    .custom-next {
        color: #fff;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        font-size: 22px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-family: swiper-icons;
        font-size: var(--swiper-navigation-size);
        text-transform: none !important;
        letter-spacing: 0;
        font-variant: initial;
        line-height: 1;
        font-size: 20px;
    }

    .custom-prev:hover,
    .custom-next:hover {
        background: #f66300;
        color: #fff;
    }


    /* ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ Zoom effect on active slide */
    .swiper-slide-active .hero-slide {
        transform: scale(1.08);
    }

    .top-left {
        /* position: absolute; */
        top: 20px;
        left: 0;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        z-index: 10;
    }

    .marquee-text {
        display: inline-block;
        animation: marquee 12s linear infinite;
    }



    /* Keyframes for scrolling text */
    @keyframes marquee {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /* banner */
    .homeSlider {
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative
    }

    .homeSlider #slider {
        width: 100%;
        margin: 0;
        position: relative;
    }

    .homeSlider #slider .sliderCaption {
        width: 100%;
        text-align: left;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent;
        height: 100%;
        min-height: 250px;
        display: flex;
        align-items: center;
    }

    .homeSlider #slider .sliderCaption:before,
    .slider .slider_caption_up:before,
    .slider .slider_caption_left:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        min-height: 100%;
        z-index: -1;
    }

    .homeSlider #slider img {
        width: 100%;
    }

    .homeSlider #slider .sliderCaption .bannerTitle {
        color: var(--red);
        display: inline-block;
        margin-bottom: 10px;
        font-size: 36px;
        line-height: 40px;
        font-weight: 700;
        text-transform: capitalize;
        padding-top: 12%;
        text-shadow: 1px 1px 1px #000000a6;
    }

    .homeSlider #slider .sliderCaption p {
        color: #fff;
        font-size: 20px;
        text-transform: inherit;
        line-height: 25px;
        font-weight: 500;
        margin-bottom: 20px;
        max-width: 600px;
    }

    .homeSlider #slider .sliderCaption .read_more {
        color: #fff;
        border: 1px solid #fff;
    }

    .homeSlider #slider .sliderCaption .read_more:hover {
        border-color: var(--red);
        color: #fff;
    }

    .homeSlider #slider .sliderCaption .read_more:after {
        background: var(--red);
    }

    .homeSlider #slider .owl-item.active .bannerTitle {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-name: fadeInDown;
        animation-delay: 0.4s;
    }

    .homeSlider #slider .owl-item.active p {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-name: fadeInDown;
        animation-delay: 0.3s;
    }

    .homeSlider #slider .owl-item.active .read_more {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-name: fadeInUp;
        animation-delay: 0.3s;
    }





    .animated-heading {
        font-size: 65px;
        font-weight: 700;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s ease forwards 0.3s;
        color: #fff;
    }

    .animated-heading span {
        color: #ffd400;
        display: block;
    }

    .animated-paragraph {
        font-size: 1.2rem;
        margin: 20px 0 30px;
        opacity: 0;
        transform: translateY(20px);
        color: #fff;
        animation: fadeUp 1s ease forwards 0.8s;
    }

    .btn-slide {
        display: inline-block;
        background: #24357B;
        color: #fff;
        padding: 12px 30px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1s ease forwards 1.2s;
    }

    .btn-slide:hover {
        background: #fff;
        color: #f66300;
    }

    /* Fade Up Animation */
    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Slide Zoom Effect */
    .carousel-item.active .hero-slide {
        transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 980px) {
        .animated-heading {
            font-size: 25px;
            text-align: center;
        }

        .animated-paragraph {
            font-size: 1rem;
            text-align: center;
        }

        .hero-content {
            padding: 50px 20px;
            top: 56%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 94%;
        }

        .btn-slide {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
    }

    /* ..............new-----------banner */


    .hero-2 {
        padding: 373px 0 350px;
        position: relative;
    }

    .hero-2 .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        transform: scale(1);
        -webkit-transition: all 8s ease-out 0s;
        -moz-transition: all 8s ease-out 0s;
        -ms-transition: all 8s ease-out 0s;
        -o-transition: all 8s ease-out 0s;
        transition: all 8s ease-out 0s;
    }

    .hero-2 .hero-bg::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: rgb(2 2 2 / 58%);
    }

    .hero-2 .hero-content {
        position: relative;
        z-index: 99;
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-2 .hero-content h1 {
        font-size: 60px;
        color: #fff;
    }

    @media (max-width: 1199px) {
        .hero-2 .hero-content h1 {
            font-size: 80px;
        }
    }

    @media (max-width: 991px) {
        .hero-2 .hero-content h1 {
            font-size: 70px;
        }
    }

    @media (max-width: 767px) {
        .hero-2 .hero-content h1 {
            font-size: 55px;
        }

        .modal-left {
            /* width: 38%; */
            background: #fffcfcde;
            padding: 15px 13px !important;
            /* border-right: 1px solid #ddd; */
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 4px 15px !important;
            font-size: 1rem;
            border-radius: 8px;
            border: 1px solid #ccc;
            transition: all 0.3s ease;
        }

        .form-group textarea {
            resize: none;
            min-height: 78px !important;
        }

    }

    @media (max-width: 575px) {
        .hero-2 .hero-content h1 {
            font-size: 23px !important;
            line-height: 30px;
        }

        .hero-section-2 {
            height: 80vh !important;
            overflow: hidden !important;
        }

        .extra-button {
            display: none !important;
        }

        .swiper-horizontal>.swiper-pagination-bullets,
        .swiper-pagination-bullets.swiper-pagination-horizontal,
        .swiper-pagination-custom,
        .swiper-pagination-fraction {
            bottom: 8px;
            left: 0;
            width: 100%
        }

        .service-wrapper .row .col-xxl-3 {
            margin-bottom: 20px;
        }

        .project-card-item .project-content h5 {
            font-size: 19px !important;
            font-weight: 600;
        }

        .vl-about-wrap-seven .title {
            font-size: 25px !important;
            font-weight: 700;
            margin-bottom: 8px;
            margin-top: 4px;
        }

        .vl-about-content-eight-wrapper {
            padding-left: 0px !important;
        }

        .vl-about-content-eight-wrapper {
            padding-top: 20px;
        }

    }

    .hero-2 .hero-content p {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        max-width: 710px;
        margin: 40px auto 0;
    }

    @media (max-width: 575px) {
        .hero-2 .hero-content p {
            font-size: 18px;
            margin-top: 25px;
        }

        .carousel-item .btn-slide {
            display: none;
        }

        .hero-slide {
            position: relative;
            width: 100%;
            height: 62vh;
        }
    }

    .hero-2 .hero-content .hero-button {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 50px;
        justify-content: center;
    }

    @media (max-width: 1199px) {
        .hero-2 .hero-content .hero-button {
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 35px;
        }
    }

    .hero-2 .hero-content .hero-button .theme-btn {
        border: 1px solid #1b9aaa;
    }

    .hero-2 .hero-content .hero-button .theme-btn:hover {
        border: 1px solid red;
    }

    .hero-2 .hero-content .hero-button .theme-btn.style-2 {
        background: transparent;
        color: #fff;
        border: 1px solid #fff;
    }

    .hero-2 .hero-content .hero-button .theme-btn.style-2 i {
        background-color: #1b9aaa;
        color: #fff;
    }

    .hero-2 .hero-content .hero-button .theme-btn.style-2:hover {
        border: 1px solid #1b9aaa;
    }

    .hero-2 .hero-content .hero-button .theme-btn.style-2:hover::before,
    .hero-2 .hero-content .hero-button .theme-btn.style-2:hover::after {
        background-color: #1b9aaa;
    }

    .hero-2 .bar-shape {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.3;
    }

    @media (max-width: 1399px) {
        .hero-2 .bar-shape {
            display: none;
        }
    }

    .hero-2 .bar-shape img {
        height: 100%;
    }

    .doctor-section {
        background-image: url(../image/about-doctor.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .theme-btn {
        background: #fef003;
        color: #000000;
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        padding: 5px 24px;
        padding-right: 5px;
        border-radius: 3px;
        line-height: 1;
        text-transform: uppercase;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        position: relative;
        z-index: 1;
    }

    .theme-btn i {
        width: 48px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        background-color: #24357b;
        color: #ffffff;
        margin-left: 21px;
        transition: all 0.4s ease-in-out;
    }

    .theme-btn::before {
        content: "";
        background-color: #1b9aaa;
        width: 0;
        height: 50%;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        z-index: -1;
    }

    .theme-btn::after {
        content: "";
        background-color: #1b9aaa;
        width: 0;
        height: 50%;
        position: absolute;
        bottom: 0;
        right: 0;
        -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        z-index: -1;
    }

    .theme-btn:hover::before,
    .theme-btn:hover::after {
        width: 100%;
    }

    .theme-btn:hover i {
        background-color: #24357b;
        color: #fff;
    }

    .theme-btn.bg-header {
        background-color: red;
    }

    .theme-btn.bg-header::before,
    .theme-btn.bg-header::after {
        background-color: #fff;
    }

    .theme-btn.bg-header i {
        background-color: #1b9aaa;
        color: #fff;
    }

    .theme-btn.bg-header:hover {
        color: red;
    }

    .theme-btn.theme-btn-2 {
        background: #24357B;
    }

    .theme-btn.theme-btn-2 i {
        color: #24357B;
    }

    .theme-btn.theme-btn-2:hover::before,
    .theme-btn.theme-btn-2:hover::after {
        width: 100%;
    }

    .theme-btn.theme-btn-2:hover i {
        background: #24357B;
        color: #fff;
    }


    /* banner-naimted */

    /* Container for extras */
    .banner-footer-extras {
        position: relative;
        z-index: 10;
    }

    /* Scroll Mouse Animation */
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mouse-icon {
        width: 26px;
        height: 42px;
        border: 2px solid #fff;
        border-radius: 20px;
        position: relative;
    }

    .mouse-icon .wheel {
        width: 4px;
        height: 8px;
        background: #fff;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        animation: scroll-wheel 1.5s infinite;
    }

    .arrow-down span {
        display: block;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #00acc1;
        border-right: 2px solid #00acc1;
        transform: rotate(45deg);
        margin: -5px;
        animation: arrow-bounce 2s infinite;
    }

    /* Sticky Side Button */
    .sticky-side-btn {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        transform-origin: right bottom;
        background: #00acc1;
        color: #fff;
        padding: 10px 25px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 8px 8px 0 0;
        letter-spacing: 1px;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
    }

    .sticky-side-btn:hover {
        background: #008c9e;
        color: white;
    }

    /* Animations */
    @keyframes scroll-wheel {
        0% {
            opacity: 1;
            top: 8px;
        }

        100% {
            opacity: 0;
            top: 20px;
        }
    }

    @keyframes arrow-bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0) rotate(45deg);
        }

        40% {
            transform: translateY(10px) rotate(45deg);
        }

        60% {
            transform: translateY(5px) rotate(45deg);
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .sticky-side-btn {
            padding: 8px 20px;
            font-size: 12px;
        }

        .scroll-indicator {
            bottom: 15px;
        }
    }

    /* Container for the buttons */
    .carousel-custom-controls {
        position: absolute;
        bottom: 30px;
        /* Banner-er niche theke distance */
        right: 50px;
        /* Banner-er right theke distance */
        display: flex;
        gap: 10px;
        /* Duto button-er modhye gap */
        z-index: 10;
    }

    /* Common Button Style */
    .control-btn {
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.2);
        /* Semi-transparent white */
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    /* Hover Effect */
    .control-btn:hover {
        background-color: #17a2b8;
        /* Tanna Dental-er brand color try korte paren */
        border-color: #17a2b8;
        color: #fff;
        transform: translateY(-3px);
        /* Chotto ekta bounce effect */
        border-radius: 2px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .carousel-custom-controls {
            right: 20px;
            bottom: 20px;
        }

        .control-btn {
            width: 40px;
            height: 40px;
            font-size: 14px;
        }
    }


    /* Section Typography */
    .dental-services-wrapper {
        background-image: url(../images/dental-services-wrapper.png);
        background-position: center;
        background-attachment: fixed;
        background-size: cover;
        background-blend-mode: lighten;
    }

    .dental-services-wrapper .main-heading {
        font-size: 2.2rem;
        font-weight: 800;
        color: #2c3e82;
        margin-bottom: 0;
    }

    .dental-services-wrapper .sub-heading {
        font-size: 1.8rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    /* Circle Image Logic */
    .service-circle-container {
        position: relative;
        width: 100%;
        /* max-width: 250px; */
        margin: 0 auto;
        transition: transform 0.3s ease;
    }

    .service-circle-container:hover {
        transform: translateY(-10px);
    }

    .template-bg {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Text Overlay positioning */
    .service-text-overlay {
        position: absolute;
        top: 45%;
        /* Circle er center onujayi adjust kora */
        left: 50%;
        transform: translate(-50%, -50%);
        width: 75%;
        /* Jate text circle er baire na jay */
        text-align: center;
    }

    .service-text-overlay p {
        color: #fff;
        font-weight: 700;
        font-size: 20px;
        line-height: 1.3;
        margin: 0;
        text-transform: uppercase;
    }

    /* Responsive Fixes */
    @media (max-width: 768px) {
        .dental-services-wrapper .main-heading {
            font-size: 1.5rem;
        }

        .dental-services-wrapper .sub-heading {
            font-size: 1.2rem;
        }

        .service-text-overlay p {
            font-size: 0.75rem;
            /* Mobile e text choto thakbe */
        }
    }

    @media (max-width: 480px) {
        .service-text-overlay {
            top: 40%;
        }
    }

    .about-section-main {
        padding: 80px 0;
        background-color: #edf2fa2e;
        position: relative;
        font-family: 'Poppins', sans-serif;
        z-index: 10;
    }

    /* Image Decoration */
    .about-img-container {
        position: absolute;
        z-index: 5;
        /* padding: 0 30px 30px 0; */
        width: 80%;
        left: 0;
        z-index: -1;
    }

    .main-about-img {
        width: 49%;
        border-radius: 20px;
        z-index: -1;
        position: relative;
        height: 780px;
        object-fit: cover;
    }

    .deco-border-teal {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 40px;
        /* background-color: #17a2b8; */
        /* Teal */
        border-radius: 15px;
        z-index: 1;
    }

    /* Content Styling */
    .sub-heading {
        font-size: 24px;
        font-weight: 400;
        color: #333;
        letter-spacing: 1px;
    }

    .main-title {
        font-size: 42px;
        font-weight: 800;
        color: #333;
    }

    .main-title span {
        color: #17a2b8;
    }

    .para-text {
        font-size: 17px;
        color: #555;
        line-height: 1.6;
        margin-top: 15px;
        text-align: justify;
    }

    /* Custom Tabs */
    .about-tabs-wrapper {
        border: 1px solid #000;
        border-radius: 40px;
        overflow: hidden;
    }

    .about-tabs-wrapper .nav-tabs {
        border: none;
        display: flex;
        width: 100%;
    }

    .about-tabs-wrapper .nav-item {
        flex: 1;
        margin-bottom: 0;
    }

    .about-tabs-wrapper .nav-link {
        width: 100%;
        border: none;
        border-radius: 0;
        padding: 12px;
        font-weight: 700;
        color: #000;
        background: transparent;
        border-right: 1px solid #000;
    }

    .about-tabs-wrapper .nav-item:last-child .nav-link {
        border-right: none;
    }

    .about-tabs-wrapper .nav-link.active {
        background-color: #000;
        color: #fff;
    }

    /* Buttons */
    .btn-learn-more {
        display: inline-block;
        background-color: #17a2b8;
        color: #fff;
        padding: 12px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s;
    }

    .btn-learn-more:hover {
        background-color: #2c3e82;
        color: #fff;
    }

    /* Sticky Right Button */
    .sticky-book-btn {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-260%) rotate(-90deg);
        transform-origin: right bottom;
        background-color: #17a2b8;
        color: #fff;
        padding: 10px 15px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 15px 15px 0 0;
        z-index: 999;
    }

    .sticky-book-btn:hover {
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .main-title {
            font-size: 30px;
        }

        .about-img-container {
            padding: 0 15px 15px 0;
        }

        .deco-border-blue,
        .deco-border-teal {
            display: none;
        }

        .about-tabs-wrapper .nav-link {
            font-size: 12px;
            padding: 10px 5px;
        }
    }

    .about-image img {
        width: 100%;
        border-radius: 20px;
    }

    /* Container styling */
    .about-tabs-container {
        border: 1.5px solid #24357b05;
        border-radius: 50px;
        /* Capsule shape */
        overflow: hidden;
        max-width: 100%;
        margin-top: 25px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    /* Header/Button Container */
    .custom-tabs-header {
        display: flex;
        background: transparent;
        border-bottom: 1.5px solid #00000021;
    }

    /* Tab Buttons */
    .tab-link {
        flex: 1;
        border: none;
        outline: none;
        padding: 12px 10px;
        background: transparent;
        font-weight: 600;
        font-size: 16px;
        color: #000;
        cursor: pointer;
        transition: 0.3s;
        text-transform: uppercase;
        border-right: 1.5px solid #24357b21;
        /* Vertical divider line */
    }

    /* Remove last border line */
    .tab-link:last-child {
        border-right: none;
    }

    /* Active Tab Style (Black background, White text) */
    .tab-link.active {
        background-color: #24357b;
        color: #fff;
    }

    /* Content Area */
    .custom-tabs-body {
        padding: 20px 25px;
    }

    .about-tab-content {
        display: none;
        /* Hidden by default */
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        animation: fadeIn 0.5s ease;
    }

    /* Show active content */
    .about-tab-content.active {
        display: block;
    }

    /* Fade animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 576px) {
        .tab-link {
            font-size: 11px;
            padding: 10px 5px;
        }

        .about-tabs-container {
            border-radius: 30px;
        }
    }

    .dental-services {}

    .title-separator {
        width: 60px;
        height: 3px;
        background-color: #79c35b;
        margin-top: 15px;
    }

    /* Section Base */
    .dental-services {}



    .title-separator {
        width: 80px;
        height: 3px;
        background: #17a2b8;
        margin-top: 15px;
    }


    .dental-services {
        background-color: #F4F9FC;
        /* border-top: 1px dashed #8383832e; */
    }

    .sub-title {
        color: #17a2b8;
        font-weight: 700;
        text-transform: uppercase;
    }



    .title-separator {
        width: 60px;
        height: 3px;
        background: #17a2b8;
        margin-top: 10px;
    }

    /* Service Card Styles */
    .service-card {
        border-radius: 17px;
        background: #fff;
        overflow: hidden;
        /* height: 100%; */
        border: none;
        transition: 0.4s ease;
        position: relative;
        margin-bottom: 35px;
        box-shadow: rgb(0 0 0 / 20%) 0px 8px 24px;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    }

    .card-img-wrapper {
        position: relative;
        overflow: hidden;
        z-index: 0;
    }

    .card-img-wrapper img {
        width: 100%;
        /* height: 220px; */
        /* object-fit: cover; */
        transition: 0.5s;
    }

    .service-card:hover .card-img-wrapper img {
        transform: scale(1.1);
    }

    .icon-header {}

    .icon-header img {
        width: 30px;
        height: auto;
    }

    .card-content {
        /* padding: 15px 20px 2px; */
        /* text-align: center; */
        /* background: #4eb8c9; */
    }

    .card-content h4 {
        color: #002F6B;
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 0;
        background: #f8fafd;
        padding: 17px 10px;
        text-align: center;
    }

    .card-content p {
        font-size: 16px;
        color: #2c3a61;
        margin: 15px 0 30px;
        display: none;
    }

    .read-more {}

    /* View All Button */
    .btn-view-all {
        display: inline-block;
        background: #24357b;
        color: #fff;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
    }

    .btn-view-all:hover {
        color: #fff;
    }

    /* Bottom Icon Row */
    .icon-row {
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .service-item {
        text-align: center;
        padding: 30px 10px;
        border-right: 1px solid #eee;
    }

    .service-item:last-child {
        border-right: none;
    }

    .service-item img {
        width: 40px;
        margin-bottom: 15px;
    }

    .service-item span {
        display: block;
        font-size: 10px;
        color: #17a2b8;
        font-weight: 800;
    }

    .service-item h6 {
        font-size: 14px;
        font-weight: 700;
        color: #333;
        margin-top: 5px;
    }

    @media (max-width: 768px) {
        .service-item {
            border-right: none;
            border-bottom: 1px solid #eee;
        }
    }

    .icon-header {
        position: absolute;
        top: 54%;
        left: 17px;
        width: 60px;
        height: 60px;
        background: #17a2b8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 45;
        display: none;
    }

    .icon-header i {
        font-size: 24px;
        color: #ffffff;
    }

    .service-card:hover .icon-header i {
        color: #ffd400;
        /* Dark blue color */
        transition: 0.3s ease;
    }

    .dental-services-slider .item {
        padding: 15px;
    }

    .dental-services-slider .owl-dots {
        text-align: center;
        margin-top: 20px;
    }

    .dental-services-slider .owl-dot span {
        width: 12px;
        height: 12px;
        background: #d6d6d6;
        display: block;
        border-radius: 50%;
        margin: 5px;
        transition: 0.3s;
    }

    .dental-services-slider .owl-dot.active span {
        background: #17a2b8;
        /* Teal color */
        width: 25px;
        border-radius: 10px;
    }

    .dental-services-wrapper3 {
        background: #F4F9FC;
    }

    .about-text-content {
        padding-right: 32px;
    }

    .smile-town-experience {
        position: relative;
        background-image: url('../images/happy-dental.jpg');
        /* Replace with your image path */
        background-repeat: no-repeat;
        background-size: cover;
        /* Jate left side-e image ta thik thake */
        background-position: left center;
        background-attachment: fixed;
        /* Parallax effect */
        padding: 80px 0;
        background-color: #fff;
    }

    /* Sub-heading 'What' effect */
    .sub-heading {



        /* Very light watermarked text */
    }



    .title-line {
        width: 50px;
        height: 3px;
        background-color: #17a2b8;
        /* Your theme light green color */
    }

    .description {
        color: #444;
        font-size: 15px;
        line-height: 1.6;
    }

    /* Feature List Styling */
    .features-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .features-list i {
        color: #17a2b8;
        font-size: 20px;
        margin-right: 15px;
        margin-top: 3px;
    }

    .features-list h5 {
        font-size: 17px;
        font-weight: 700;
        color: #3d3d3d;
        margin-bottom: 5px;
    }

    .features-list p {
        font-size: 16px;
        color: #312e2e;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .features-list a {
        color: #00bcd4;
        text-decoration: none;
        font-weight: 600;
    }

    /* Mobile Responsive */
    @media (max-width: 991px) {
        .smile-town-experience {
            background-image: none;
            /* Mobile e background image remove kore dile content valo dekhabe */
        }

        .main-title {
            font-size: 26px;
        }
    }

    .experience-content {
        position: relative;
    }

    .title-wrapper {
        position: relative;
        padding-top: 20px;
        margin-bottom: 19px;
        z-index: 1;
    }

    /* Background Watermark Text */
    .watermark-text {
        position: absolute;
        top: -10px;
        left: 0;
        font-size: 80px;
        /* Boro size */
        font-weight: 900;
        color: rgba(0, 0, 0, 0.04);
        /* Ekdom halka color */
        text-transform: capitalize;
        line-height: 1;
        z-index: -1;
        user-select: none;
    }

    /* Main Title */
    .main-title {
        font-size: 37px;
        color: #2c3e50;
        position: relative;
        margin: 0;
        line-height: 1.3;
    }

    /* Green Separator Line */
    .title-separator {
        width: 60px;
        height: 3px;
        background-color: #78c2ad;
        /* Teal/Green color */
        margin-top: 15px;
        border-radius: 2px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .watermark-text {
            font-size: 60px;
            top: 0;
        }

        .main-title {
            font-size: 26px;
        }
    }

    .general-dentistry-section {
        background-color: #f4f8fb;
        /* Light grayish-blue bg from image */
        border-bottom: 1px solid #e1e8ed;
    }

    .dentistry-item {
        display: flex;
        align-items: center;
        padding: 30px 20px;
        border-right: 1px solid #e1e8ed;
        /* Vertical separator */
        min-height: 120px;
    }

    /* Icon box styling */
    .dentistry-icon {
        width: 65px;
        height: 65px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .dentistry-icon img {
        width: 40px !important;
        /* Owl carousel override */
        height: auto;
    }

    /* Text styling */
    .dentistry-text span {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #8c98a4;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }

    .dentistry-text h5 {
        font-size: 16px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
        line-height: 1.3;
    }

    /* Hover effect */
    .dentistry-item:hover {
        background-color: #ffffff;
        transition: 0.3s ease;
        cursor: pointer;
    }

    .general-dentistry-section {
        background-color: #f4f8fb;
        border-bottom: 1px solid #e1e8ed;
    }

    .dentistry-item {
        display: flex;
        align-items: center;
        padding: 30px 20px;
        border-right: 1px solid #e1e8ed;
        min-height: 120px;
        transition: 0.3s ease;
    }

    /* Icon Box Styling */
    .dentistry-icon {
        width: 70px;
        height: 70px;
        background: #17a2b8;
        /* Light yellow background as per design */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    /* FontAwesome Icon Specific Style */
    .dentistry-icon i {
        font-size: 30px;
        color: #ffffff;
        /* Blue/Teal color */
    }

    .dentistry-text span {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #7e8287;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 2px;
    }

    .dentistry-text h5 {
        font-size: 15px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
    }

    /* Hover Effect */
    .dentistry-item:hover {
        background-color: #ffffff;
        cursor: pointer;
    }

    .dentistry-item:hover .dentistry-icon i {
        transform: scale(1.1);
        transition: 0.3s;
    }

    .hero-banner {
        position: relative;
        height: 100vh;
        min-height: 600px;
        background-image: url('assets/images/family-banner.jpg');
        /* Tomar image path */
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    /* Overlay as per your request */
    .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(283.76deg, #00000000 43.45%, #00000029 88.18%);
        z-index: 1;
    }

    .banner-content {
        position: relative;
        z-index: 2;
    }

    /* Google Rating Style */
    .google-rating {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 5px 20px;
        border-radius: 50px;
        backdrop-filter: blur(5px);
    }

    .g-icon {
        width: 20px;
        margin-right: 10px;
    }

    .stars {
        color: #ffb400;
        margin-right: 10px;
    }

    .google-rating span {
        font-size: 14px;
        font-weight: 500;
    }

    /* Features */
    .feature-points li {
        margin-bottom: 12px;
        font-size: 16px;
        display: flex;
        align-items: center;
    }

    .feature-points i {
        color: #fff;
        font-size: 20px;
        margin-right: 12px;
    }

    /* Scroll Mouse Icon */
    .scroll-down {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        text-align: center;
        color: #17a2b8;
    }

    .mouse {
        width: 25px;
        height: 40px;
        border: 2px solid #000;
        border-radius: 20px;
        background: #fff;
        margin: 0 auto 5px;
        position: relative;
    }

    .wheel {
        width: 2px;
        height: 6px;
        background: #000;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: scrollWheel 1.5s infinite;
    }

    @keyframes scrollWheel {
        0% {
            opacity: 1;
            top: 8px;
        }

        100% {
            opacity: 0;
            top: 20px;
        }
    }



    .counter-section {
        background: #ffffff;
        padding: 80px 0;
    }

    .counter-box {
        padding: 20px;
        transition: all 0.4s ease;
        /* border-radius: 15px; */
        border: 1px dashed #dadadac2;
        border-top: 0;
        border-bottom: 0;
        background: #fdfcfa59;
    }

    /* Hover korle halka shadow ashbe */
    .counter-box:hover {
        /* transform: translateY(-10px); */
    }

    /* Icon Design */
    .counter-icon {
        font-size: 35px;
        color: #17a2b8;
        /* Tomar theme color */
        margin-bottom: 15px;
        /* opacity: 0.8; */
        /* width: 15%; */
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .counter-num {
        font-size: 72px;
        font-weight: 900;
        color: #ffffff;
        /* letter-spacing: 3px; */
        margin-bottom: 0;

        /* Strong stroke */
        -webkit-text-stroke: 2px #45b5c6;

        /* depth shadow */
        /* text-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25); */
        font-family: 'Poppins', sans-serif;
    }

    /* Responsive adjust */
    @media (max-width: 768px) {
        .counter-num {
            font-size: 50px;
        }

        .counter-label {
            font-size: 12px;
        }
    }

    /* Contact Now Section Styling */
    .contact-now-section {
        position: relative;
        padding: 140px 0;
        background-image: url('../images/smile.webp');
        /* Use your tooth/mirror image */
        background-size: cover;
        background-position: center;
        color: #fff;
        overflow: hidden;
        background-repeat: no-repeat;
    }

    /* Overlay that you mentioned */
    .contact-now-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Your provided gradient */
        background-image: linear-gradient(283.76deg, #00000000 43.45%, #001a33 88.18%);
        z-index: 1;
    }

    .content-box {
        position: relative;
        z-index: 2;
    }

    .cta-title {
        font-size: 38px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .cta-title span {
        font-weight: 800;
    }

    .cta-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 35px;
        /* max-width: 500px; */
        opacity: 0.9;
        color: #fff;
    }

    /* Buttons */
    .cta-btns .btn-book {
        background: #fff;
        color: #2c3e50;
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 700;
        margin-right: 15px;
        transition: 0.3s;
    }

    .cta-btns .btn-phone {
        border: 2px solid #fff;
        color: #fff;
        padding: 10px 35px;
        border-radius: 50px;
        font-weight: 500;
        transition: 0.3s;
    }

    .cta-btns .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        color: #17a2b8;
    }

    .counter-icon i {
        background: #17a2b8;
        color: #fff;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
    }

    .padding-o {
        padding: 0px !important;
    }

    .counter-label {
        font-size: 16px;
        font-weight: 700;
        color: #666;
        /* Secondary text color */
        text-transform: uppercase;
        letter-spacing: 0.5px;
        /* margin-top: 5px; */
    }

    /* ===== TESTIMONIAL SECTION BACKGROUND ===== */
    .testimonial-section {
        position: relative;
        overflow: hidden;
        background: #fdfdfd;
        border-top: 1px solid #00000014;
    }

    /* Remove unwanted gray bg */
    .owl-carousel,
    .owl-stage,
    .owl-item,
    .testimonial-slider .owl-stage-outer {
        background: transparent !important;
    }


    /* ===== REVIEW CARD DESIGN ===== */
    .review-card {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid #bbbcbd5e;
        position: relative;
        transition: all 0.4s ease;
        box-shadow: inset 0 10px 25px rgb(136 136 136 / 23%);
        overflow: hidden;
    }

    /* Top gradient border */
    .review-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        /* background: linear-gradient(90deg, #17a2b8, #4dd0e1); */
        border-radius: 20px 20px 0 0;
        border-radius: 10px;
    }

    /* Hover Effect */
    .review-card:hover {
        /* transform: translateY(-12px) scale(1.02); */
        /* box-shadow: inset 0 20px 50px rgba(0, 0, 0, 0.12); */
        /* border-color: #17a2b8; */
    }


    /* ===== USER INITIAL DESIGN ===== */
    .user-initial {
        width: 55px;
        height: 55px;
        font-size: 22px;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: 0 5px 15px rgb(0 0 0 / 16%);
    }

    .bg-purple {
        background: #6f42c1;
    }

    .bg-info {
        background: #17a2b8;
    }

    .bg-dark {
        background: #2c3e82;
    }


    /* ===== STARS DESIGN ===== */
    .stars {
        color: #ffc107;
        font-size: 14px;
        letter-spacing: 2px;
    }


    /* ===== REVIEW TEXT ===== */
    .review-content {
        font-size: 14px;
        color: #555;
        min-height: 80px;
        margin-top: 15px;
        line-height: 1.6;
    }


    /* ===== READ MORE ===== */
    .read-more {
        color: #ff5722;
        font-weight: 700;
        text-decoration: none;
        font-size: 13px;
    }


    /* ===== HEADING STYLE ===== */
    .testimonial-section h2 {
        font-size: 36px;
        font-weight: 800;
    }

    .testimonial-section p {
        font-size: 16px;
    }


    /* ===== PREMIUM DOTS DESIGN ===== */
    .testimonial-slider .owl-dots {
        text-align: center;
        margin-top: 30px;
    }

    .testimonial-slider .owl-dot {
        display: inline-block;
    }

    .testimonial-slider .owl-dot span {
        width: 10px;
        height: 10px;
        background: #cfd8dc !important;
        margin: 5px;
        border-radius: 50%;
        display: inline-block;
        transition: all 0.3s ease;
    }

    /* Active dot */
    .testimonial-slider .owl-dot.active span {
        width: 35px;
        height: 10px;
        border-radius: 20px;
        background: linear-gradient(45deg, #17a2b8, #4dd0e1) !important;
    }

    /* Hover effect */
    .testimonial-slider .owl-dot:hover span {
        background: #17a2b8 !important;
    }

    /* Main Title Style */
    .section-title {
        font-size: 38px;
        font-weight: 800;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        position: relative;
    }

    /* Span Color Accent (Blue) */
    .section-title span {
        color: #4285F4;
        /* Google Blue */
    }

    /* Professional Underline */
    .title-separator {
        width: 70px;
        height: 4px;
        background: linear-gradient(to right, #4285F4, #EA4335, #FBBC05, #34A853);
        /* Google Gradient */
        margin: 0 auto 20px;
        border-radius: 10px;
    }

    /* Subtitle Style */
    .section-subtitle {
        font-size: 16px;
        color: #666;
        font-weight: 500;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Logo Wrapping Animation */
    .google-logo-wrap img {
        transition: transform 0.3s ease;
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.05));
    }

    .google-logo-wrap:hover img {
        transform: scale(1.1);
    }

    /* Responsive adjust */
    @media (max-width: 768px) {
        .section-title {
            font-size: 28px;
        }
    }

    .faq-section {
        position: relative;
        height: 100vh;
        min-height: 700px;
        background-image: url('../images/frequently.webp');
        /* Background Image ami pore lagie nebo */
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    /* Question Styling */
    .faq-content-wrap .accordion-button {
        font-size: 18px !important;
        /* Font ektu boro korlam */
        font-weight: 500 !important;
        letter-spacing: 0.5px;
        padding: 20px 21px 20px 12px !important;
        /* Spacing thik korlam */
        color: rgb(255 255 255 / 90%) !important;
        border: none !important;
    }

    /* Active Question (Open) */
    .faq-content-wrap .accordion-button:not(.collapsed) {
        color: #fff !important;
        font-weight: 700 !important;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    /* Answer Text (Description) */
    .faq-content-wrap .accordion-body {
        font-size: 17px;
        line-height: 1.8;
        color: rgb(255 255 255) !important;
        /* Soft white jate chokhe na lage */
        /* padding-left: 40px !important; */
        /* padding-bottom: 25px !important; */
        /* max-width: 90%; */
        /* Text jate ekdom boro na hoye jay */
        padding: 20px 21px 20px 12px !important;
        font-family: 'Montserrat', sans-serif;
    }

    /* Custom Icons (+ / -) Styling */
    .faq-content-wrap .accordion-button::before {
        font-size: 14px;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
        opacity: 0.8;
    }

    /* Accordion Item Border */
    .faq-content-wrap .accordion-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        /* Khub halka border */
        margin-bottom: 5px;
    }

    /* Item Hover Effect */
    .faq-content-wrap .accordion-item:hover {
        background: rgba(255, 255, 255, 0.03);
        /* Hover-e halka highlight */
    }

    /* --- View All Button Style --- */
    .faq-content-wrap .btn-light {
        background: #fff;
        border: none;
        padding: 12px 35px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        transition: 0.4s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .faq-content-wrap .btn-light:hover {
        background: #f1f1f1;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    /* Mobile responsive fixes */
    @media (max-width: 768px) {
        .faq-title {
            font-size: 32px;
        }

        .faq-content-wrap .accordion-button {
            font-size: 16px !important;
        }
    }

    .faq-content-wrap .accordion-button::after {
        display: block !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
        filter: brightness(0) invert(1);
        background-size: 1.25rem;
        transition: transform 0.3s ease-in-out;
    }

    .faq-content-wrap .accordion-button:not(.collapsed)::after {
        transform: rotate(-180deg);
        filter: brightness(0) invert(1);
    }

    ;
}

/* Answer Text (Description) */
.faq-content-wrap .accordion-body {
    font-size: 17px;
    line-height: 1.8;
    color: rgb(255 255 255) !important;
    /* Soft white jate chokhe na lage */
    /* padding-left: 40px !important; */
    /* padding-bottom: 25px !important; */
    /* max-width: 90%; */
    /* Text jate ekdom boro na hoye jay */
    padding: 20px 21px 20px 12px !important;
    font-family: 'Montserrat', sans-serif;
}

/* Custom Icons (+ / -) Styling */
.faq-content-wrap .accordion-button::before {
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Accordion Item Border */
.faq-content-wrap .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    /* Khub halka border */
    margin-bottom: 5px;
}

/* Item Hover Effect */
.faq-content-wrap .accordion-item:hover {
    background: rgba(255, 255, 255, 0.03);
    /* Hover-e halka highlight */
}

/* --- View All Button Style --- */
.faq-content-wrap .btn-light {
    background: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-content-wrap .btn-light:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .faq-title {
        font-size: 32px;
    }

    .faq-content-wrap .accordion-button {
        font-size: 16px !important;
    }
}

.faq-content-wrap .accordion-button::after {
    display: block !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: brightness(0) invert(1);
    background-size: 1.25rem;
    transition: transform 0.3s ease-in-out;
}

.faq-content-wrap .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: brightness(0) invert(1);
}

/* Contact Box Wrapper */
.contact-box-wrapper {
    position: relative;
    z-index: 2;
}

/* Individual Contact Item */
.contact-item {
    /* background: rgba(255, 255, 255, 0.03); */
    /* Very light glass effect */
    padding: 8px;
    border-radius: 10px;
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    transition: all 0.3s ease-in-out;
}

.contact-item:hover {
    /* background: rgba(255, 87, 34, 0.08); */
    /* Light orange tint on hover */
    /* border-color: rgba(255, 87, 34, 0.3); */
    transform: translateX(5px);
}

/* Icon Box Style */
.contact-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #17a2b8;
    /* Tanna Dental Orange */
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    /* box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3); */
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-box {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.5);
}

/* Text & Link Styling */
.contact-text p,
.contact-text a {
    line-height: 1.5;
    transition: color 0.3s ease;
    color: #fff !important;
    font-size: 16px;
}

.contact-item:hover .contact-text a,
.contact-item:hover .contact-text p {
    color: #fff !important;
}

@media (max-width: 1440px) {
    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 48px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 8px;
        margin-right: 14px;
    }

    .header-style .menu-outer {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding: 0px 20px 0px 37px;
        /* background: #24357b; */
        backdrop-filter: blur(5px);
    }

    .header-style .menu-outer {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding: 0px 20px 0px 37px;
        /* background: #24357b; */
        backdrop-filter: blur(5px);
    }

    .is-sticky .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 35px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 8px;
        margin-right: 12px;
    }


}

@media (max-width: 1360px) {
    .main-menu .navigation>li>a {
        position: relative;
        display: block;
        text-align: center;
        opacity: 1;
        font-weight: 600;
        color: #ffffff;
        font-size: 16px;
        line-height: 20px;
        padding: 0;
        /* margin: 0 15px; */
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        text-transform: uppercase;
    }

    .faq-section {
        position: relative;
        height: auto;
        min-height: 700px;
        background-image: url(../images/frequently.webp);
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    .review-card {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid #bbbcbd5e;
        position: relative;
        transition: all 0.4s ease;
        box-shadow: inset 0 10px 25px rgb(136 136 136 / 23%);
        overflow: hidden;
        min-height: 295px;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }

    .main-header .logo {
        width: 192px;
        padding: 5px 0px;
    }

    .sticky-book-btn {
        top: 73% !important;
    }

    .about-text-content {
        padding-right: 0px;
    }

    .about-image {
        margin-top: 15px;
    }

    .about-section-main {
        padding: 80px 0 0px;
        background-color: #edf2fa2e;
        position: relative;
        font-family: 'Poppins', sans-serif;
        z-index: 10;
    }

    .counter-box {
        padding: 20px;
        transition: all 0.4s ease;
        /* border-radius: 15px; */
        border: 1px dashed #dadadac2;
        border-top: 1px dashed #dadadac2;
        background: #fdfcfa59;
    }

    .cta-btns .btn-book {
        background: #fff;
        color: #2c3e50;
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 700;
        margin-right: 15px;
        transition: 0.3s;
        margin-bottom: 10px;
    }

    .contact-now-section {
        position: relative;
        padding: 40px 0;
        background-image: url(../images/smile.webp);
        background-size: cover;
        background-position: center;
        color: #fff;
        overflow: hidden;
        background-repeat: no-repeat;
    }

    .footer-heading {
        text-align: left;
    }

    .footer-links li {
        margin-bottom: 9px;
        text-align: left;
    }

    .footer-heading::after {
        left: 24px;
        transform: translateX(-50%);
    }

    .footer-heading {
        font-size: 20px;
        font-weight: 700;
        position: relative;
        padding-bottom: 12px;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 15px !important;
    }

    .footer-heading::after {
        left: 23px;
        transform: translateX(-50%);
    }
}


.contact-page .box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 1px 2px 15px 3px rgb(0 0 0 / 5%);
    height: 100%;
    border-radius: 20px;
}

.contact-page .box .icon {
    background: #ffffff;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 1px 2px 15px 3px rgb(179 31 36);
    border-radius: 100%;
    margin: 0 auto;
    margin-top: -45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.contact-page .box .icon svg {
    width: 40px;
    height: 40px;
}

.contact-page .box .content {
    padding: 35px 10px;
    line-height: 150%;
}

.contact-page .box .content .title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #212121;
    text-transform: uppercase;
}

.contact-page .box .content a {
    color: #666666;
}

.contact-page .box .content a:hover {
    color: #b31f24;
}

.contact-page .iframe-loc {
    margin-top: 45px;
}

.contact-page .iframe-loc iframe {
    height: 400px;
}

@media (max-width: 480px) {
    .innerpage-main .sm-title {
        font-size: 1.1rem;
    }

    .innerpage-main p {
        font-size: 0.9rem;
    }

}

.updown-anim {
    margin: 15px 0;
    animation: updownanim 1s infinite alternate ease-in-out;
}



.vision-mission {
    padding: 20px 0 48px;
}




.about-image {
    padding: 20px 0px;
}

.inner-banner {
    position: relative;
    /* Replace with your image path */
    background-image: url('../images/inner-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Adjusted for your absolute header */
    padding: 200px 0 180px;
    text-align: center;
    color: #ffffff;
}

/* Light overlay to keep it clean but readable */
.inner-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 7%));
    z-index: 0;
}

.inner-banner .container {
    position: relative;
    z-index: 1;
}

/* Title Styling */
.page-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Clean Breadcrumb */
.breadcrumb {
    display: inline-flex;
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #ffb400;
    /* Your brand gold/yellow color */
}

.breadcrumb-item.active {
    color: #e7e442 !important;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "|";
    /* Simple vertical line separator */
    padding: 0 15px;
    color: rgb(255 255 255) !important;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .inner-banner {
        padding: 140px 0 60px 0;
    }

    .page-title {
        font-size: 32px;
    }

    .breadcrumb-item {
        font-size: 14px;
    }
}

.inner-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Wrapper */
.contact-page-wrapper {
    padding: 80px 0;
    background-color: #ffffff;
    /* Very light blue tint */
}

/* Contact Cards */
.contact-card {
    background: #ffffff;
    padding: 20px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #c5c5c54a;
}

.contact-card:hover {
    transform: translateY(-10px);
    /* box-shadow: inset 0 15px 40px rgba(0, 32, 63, 0.1); */
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #2c3e82;
    /* Dark Navy from your logo */
    color: #ffcc00;
    /* Yellow from your logo */
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    transition: 0.3s;
}

.contact-card:hover .icon-box {
    background: #ffcc00;
    color: #00203f;
}


.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-card p,
.contact-card a {
    color: #666;
    text-decoration: none;
    line-height: 1.6;
    font-size: 16px;
}

/* Form & Map Section */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #00203f;
    margin-bottom: 30px;
    position: relative;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-box {
    background: #ffffff;
    padding: 22px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Entry Animation */
.animated-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .contact-page-wrapper {
        padding: 50px 0;
    }

    .section-title {
        text-align: center;
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .contact-card {
        padding: 30px 20px;
    }
}

/* Main Wrapper */
.enquiry-form-section {
    background: #ffffff;
    padding: 20px;
}

/* Form Controls Design */
.enquiry-form-section .form-control {
    height: 55px;
    background: #f9f9f9;
    border: 1px solid #e1e8f0;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

/* Specific Height for Textarea */
.enquiry-form-section textarea.form-control {
    height: auto;
    padding-top: 15px;
}

/* Focus State (When clicking inside) */
.enquiry-form-section .form-control:focus {
    background: #fff;
    border-color: #00203f;
    /* Your Brand Navy */
    box-shadow: 0 5px 15px rgba(0, 32, 63, 0.08);
    outline: none;
}

/* Placeholder Color */
.enquiry-form-section .form-control::placeholder {
    color: #a0aab8;
}

/* Submit Button */
.enquiry-form-section .submit-btn {
    background: #00203f;
    /* Dark Navy */
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 32, 63, 0.2);
}

.enquiry-form-section .submit-btn:hover {
    background: #ffcc00;
    /* Brand Yellow */
    color: #00203f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .enquiry-form-section .form-control {
        height: 50px;
    }

    .enquiry-form-section .submit-btn {
        width: 100%;
        /* Full width button on mobile */
    }
}

/* Main Section Wrapper */
.service-details-section {
    background: #fdfdfd;
}

/* Main Content Styling */
.service-main-content .service-title {
    color: #00203f;
    /* Your Brand Navy */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    border-left: 4px solid #ffcc00;
    /* Your Brand Yellow */
    padding-left: 15px;
    margin-bottom: 25px;
}

.service-main-content h3 {
    color: #00203f;
    margin-top: 30px;
}

.info-highlight-box {
    background: #eef3f7;
    padding: 25px;
    border-radius: 10px;
}

.info-highlight-box h4 {
    color: #00203f;
    font-size: 20px;
    font-weight: 600;
}

/* Benefit List Styling */
.benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.benefit-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
}

.benefit-list li i {
    color: #ffcc00;
    margin-right: 10px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #00203f;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
}

.treatment-links {
    list-style: none;
    padding: 0;
}

.treatment-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8faff;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.treatment-links li a:hover,
.treatment-links li a.active {
    background: #00203f;
    color: #fff;
}

/* Sidebar Contact Box */
.sidebar-contact-box {
    background: linear-gradient(135deg, #00203f 0%, #004080 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
}

.sidebar-contact-box i {
    font-size: 40px;
    color: #ffcc00;
}

.btn-call {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #ffcc00;
    color: #00203f;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .service-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .service-main-content .service-title {
        font-size: 26px;
    }
}

.sidebar-contact-box p {
    color: #fff;
}

.service-sidebar {
    position: sticky;
    top: 110px;
}

.service-main-content p {
    text-align: justify;
}


.service-main-content h3 {
    font-weight: 700;
}



.about-us-silver {
    padding: 100px 0;
}

.about-us-image-box-silver {
    position: relative;
    height: 100%;
    margin-right: 15px;
}

.about-image-box-1-silver {
    height: 100%;
    padding-top: 40px;
}

.about-image-box-1-silver figure {
    height: 100%;
    display: block;
    border-radius: 10px;
}

.about-image-box-1-silver img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.955;
    object-fit: cover;
    border-radius: 10px;
}

.about-image-box-2-silver {
    position: absolute;
    top: 0;
    right: -13px;
    z-index: 1;
}

.about-image-box-2-silver figure {
    display: block;
    border-radius: 10px 10px 0 10px;
}

.about-image-box-2-silver img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 10px 10px 0 10px;
}

.about-counter-box-silver {
    position: absolute;
    width: 100%;
    max-width: 200px;
    bottom: 30px;
    left: 30px;
    background: #0D0D0D1A;
    backdrop-filter: blur(15px) saturate(100%);
    -webkit-backdrop-filter: blur(15px) saturate(100%);
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

.about-counter-silver h2 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
}

.about-counter-silver p {
    color: #fff;
    margin: 5px 0 0;
}

.about-us-content-silver {
    height: 100%;
    align-content: center;
}

.about-us-item-list-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.about-us-item-silver {
    width: 100%;
    background-color: #F5F5F5;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.about-us-item-silver .icon-box {
    position: relative;
    background: #cd0001;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
}

.about-us-item-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #0D0D0D;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-us-item-silver:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.about-us-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.about-us-item-silver:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-us-item-content-silver h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.about-us-content-list-silver ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-us-content-list-silver ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us-content-list-silver ul li:last-child {
    margin-bottom: 0;
}

.about-us-content-list-silver ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #f10219;
}





.infographic {
    text-align: center;
    padding: 80px 20px;
    background: #eef1f5;
    font-family: Arial, sans-serif;
}

.title {
    font-size: 30px;
    letter-spacing: 2px;
    color: #000000;
}

.subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 50px;
}

.card-wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

/* CARD BASE */
.info-card {
    position: relative;
    width: 260px;
}

/* MAIN BOX */
.card-inner {
    background: linear-gradient(145deg, #ffffff, #eaeaea);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* SIDE BORDER SHAPE */
.info-card::before {
    content: "";
    position: absolute;
    bottom: -13px;
    left: -22px;
    width: 77px;
    height: 80%;
    border-radius: 10px 0 0 10px;
    z-index: 1;
}

.info-card::after {
    content: "";
    position: absolute;
    bottom: -17px;
    right: -22px;
    width: 77px;
    height: 80%;
    border-radius: 0 10px 10px 0;
    z-index: 1;
}

/* CONTENT */
.card-inner h3 {
    margin: 15px 0 10px;
}

.card-inner p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.icon {
    font-size: 28px;
}

/* BOTTOM RIBBON */
.card-number {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
    z-index: 1;
}

/* YELLOW STYLE */
.info-card.yellow::before,
.info-card.yellow::after {
    background: #f4a100;
}

.info-card.yellow .card-number {
    background: #f4a100;
}

/* BLUE STYLE */
.info-card.blue::before,
.info-card.blue::after {
    background: #3b6fb6;
}

.info-card.blue .card-number {
    background: #3b6fb6;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .card-wrapper {
        flex-direction: column;
        align-items: center;
    }
}



.infographic {
    padding: 80px 20px;
    text-align: center;
    font-family: Arial, sans-serif;

    background: linear-gradient(135deg, #e6f7ff, #f0f9ff, #ffffff);
}

.infographic {
    padding: 80px 20px;
    text-align: center;

    background: #f4fbff url("https://www.transparenttextures.com/patterns/cubes.png");
}

.infographic {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: #f7fbff;
    overflow: hidden;
}

.infographic::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #0ea5e9;
    filter: blur(120px);
    top: -100px;
    left: -100px;
    opacity: 0.2;
}

.infographic::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #3b6fb6;
    filter: blur(120px);
    bottom: -100px;
    right: -100px;
    opacity: 0.2;
}

.infographic {
    padding: 80px 20px;
    text-align: center;

    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url("https://i.pinimg.com/736x/a9/46/e4/a946e4073cd917533f3bd89df94c0afa.jpg");

    background-size: cover;
    background-position: center;
}

.infographic h2 {
    margin-bottom: 25px;
}


.card-content h4 a {
    color: #000000;
}

.footer-brand img {
    filter: brightness(0) invert(1);
    width: 89%;
}



.blog {
    padding: 70px 0px 120px 0;
}

.blog-area {
    background-image: url(assets/images/blog/blog-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-section {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(assets/images/blog/blog-bg.webp) no-repeat center center;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pb-20 {
    padding-bottom: 20px;
}

.blog article {
    width: 100%;
}

.blogs .blog-item {
    background-color: #fff;
    height: 100%;
    padding: 20px;
}

.blog-img {
    overflow: hidden;
}

.p-relative {
    position: relative;
}

.blog-img img {
    height: auto;
    width: 100%;
}

.blogs img {
    /* padding: 20px; */
}

.blog-content {
    padding: 20px 0;
    /* margin: 10px; */
}

.blog-title {
    font-size: 20px;
    text-transform: capitalize;
}

.blog-title a {
    transition: all .3s ease-out 0s;
    color: #000;
}

.blog .image-anime {
    position: relative;
    overflow: hidden;
}

.blog .image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.blog .image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.blog-item img {
    transition: transform .5s ease;
    width: 100%;
    height: auto;
}

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

.blogs .blog-item .blog-paragraph {
    /* padding: 20px; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: #fff;
    background: #17a2b8;
    border-radius: 5px;
    padding: 17px 57px 17px 20px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover {
    color: #dde7ea;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 42px;
    height: 42px;
    background-color: #ffd400;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
    border-radius: 5px;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover:before {
    background-color: #17a2b8;
    background-image: url('../images/arrow-white.svg');
}

.btn-default::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #ffd400;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-default.btn-highlighted:hover {
    color: #0D0D0D;
}

.btn-default.btn-highlighted:hover:before {
    background-color: #0D0D0D;
    background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-highlighted::after {
    background-color: #fff;
}

