@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary:#0c43c8;
}
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
a{
    text-decoration:none;
    display:inline-block;
}
        body {
            font-family: 'Manrope', sans-serif;
            overflow-x: hidden;
        }
        .font2{
            font-family: "Noto Serif", serif;
        }

        /* Header Styles */
        .top-bar {
            background: var(--primary);
            text-align:center;
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        .top-bar a{
            text-decoration:none;
            color:white;
            font-size:12px;
        }

        .navbar {
         
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            margin-bottom: -90px;
    position: relative;
    z-index:999;
        }
        .navbar a {
            color:white;
        }

    
        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-link {
         
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s;
            text-transform:uppercase;
            font-size:14px;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary) !important;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/images/home_banner.webp');
            background-size: cover;
            background-position: bottom;
            height: 700px;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .btn-primary-custom {
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,102,255,0.3);
        }

        .btn-primary-custom:hover {
            background: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,102,255,0.4);
        }

        .btn-secondary-custom {
            background: transparent;
            color: white;
            padding: 12px 30px;
            border: 2px solid white;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            margin-left: 15px;
        }

        .btn-secondary-custom:hover {
            background: white;
            color: var(--primary);
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 40px;
            font-weight: 500;
            color: #333;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            font-size: 16px;
        }

        /* Before/After Section */
        .before-after-section {
            padding: 80px 0;
           
        }

        .before-after-swiper {
            padding: 40px 0;
        }

        .before-after-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
          
            transition: transform 0.3s;
        }

        .before-after-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .before-after-card img {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }

.before-after-card:hover img{
    filter:grayscale(1);
}
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: white;
        }

        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
          
            height: 100%;
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 5px;
            font-size: 24px;
        }

        .review-text {
              color: #222;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
        }
        .read-more{
        display: block;
    color: #999;
    font-size: 15px;
    font-weight: 600;
        }
        .review-author {
            font-weight: 600;
            color: #333;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: var(--primary);
            color: white;
        }

        .benefit-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .benefit-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .benefit-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Treatment Types Section */
        .treatment-types {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .treatment-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

        .treatment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .treatment-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .treatment-content {
            padding: 30px;
        }

        .treatment-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .treatment-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: white;
        }

        .process-card {
            text-align: center;
            padding: 30px;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
            font-weight: 700;
        }

        .process-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .accordion-button {
            font-weight: 600;
            background: white;
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
        }

        /* Swiper Custom */
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary) !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary) !important;
        }
        .btn{
            border-radius:0;
        }
        .btn-lg{
            font-size: 16px;
        }
        .tems{
            font-size:11px;
            max-width:400px;
        }
        .btn-primary{
            background-color:var(--primary) !important;
            border-color:var(--primary) !important;
        }
        .hero_footer{
               margin-bottom: -150px;
    margin-top: 150px;
    display: flex;
    justify-content: space-between;
        }
        .section_thumb{
            text-align:center;
        }
        .section_thumb img{
            max-width:100px;
            display:block;
            margin-left:auto;
            margin-right:auto;
        }
        .text-primary{
            color:var(--primary) !important;
        }
        .swiper-button-next, .swiper-button-prev{
                width: 50px;
    height: 50px;
    font-size: 24px;
    background-color: var(--primary);
    color: white !important;
    border-radius: 100%;
    padding: 15px;
        }
        .swiper-button-next:after, .swiper-button-prev:after{
                font-size: 20px;
        }
        .reivew_wrapper{
            position:relative;
        }
        .reivew_wrapper .swiper-button-next{
            right: -30px;
        }
        .reivew_wrapper .swiper-button-prev{
            left: -30px;
        }
        .ratings_cc{
            
        }
        .star{
            width:25px;
        }
        .google_logo{
            width:120px;
        }
        
        /*google reviews*/
        .review-card-header{
            display:flex;align-items: start;
        }
        .review-card-img{
            flex:1;
                display: flex;
    align-items: start;
    gap: 10px;
        }
        .review-card-img > div{
                display: flex;
    flex-direction: column;
        }
        .review-card-img > div span{
            font-size:12px;
        }
        .review-card-brand{
            width:30px;
        }
        .review-stars img{
            width: 18px;
        }