@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary:#0c43c8;
    --primary-hover:#001F3D;
    --overlay:#00000054;
    --gray:#f8f9fa;
    --bs-gray-200:#F8F9FA;
    --text:#6c757d;
    --font2: "Noto Serif", serif;
}
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
a{
    text-decoration:none;
    display:inline-block;
}
.bg-light{
    background-color: var(--gray) !important;
}
p{
    font-weight: 500;
    color: var(--text);
    font-size: 17px;
}

  .h2{
      font-size: 45px;
  }
        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 9px;
            transition: color 0.3s;
            text-transform: uppercase;
            font-size: 16px;
            border-bottom:1px solid transparent;
            transition:300ms;
        }
        .spl .btn-primary{
            background-color:white !important;
            border-color:white !important;
            color:black;
        }
        .spl .btn-primary:hover{
            background-color:#e6e6e6 !important;
            border-color:#e6e6e6 !important;
        }
        .navbar-nav .nav-link:hover {
            color: white !important;
            border-bottom-color:white;
        }

        .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;

        }

        .btn-primary-custom:hover {
            background: #0052cc;
            transform: translateY(-2px);

        }

        .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: 20px;
        }

        .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;
            margin-bottom: 200px;
        }

        .benefit-card {
            background: var(--primary);
            padding:40px  30px;
            border-radius: 10px;
            text-align: center;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid  var(--primary);
        }

        .benefit-card:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            cursor: pointer;
            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;

        }

        .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: 16px;
            text-align: center;
        }

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

        .swiper-pagination-bullet-active {
            background: var(--primary) !important;
        }

        .btn-lg{
            font-size: 14px;
            padding: 10px 20px;
            font-weight: 500;
        }
        .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;
        }
.benefits-section{
    background:url("/assets/images/benefits.webp");
    background-position: center;
    position: relative;
}
.benefit_section_inner{
    padding-top: 300px;
    margin-bottom: -200px;

}
.benefit-outer{
    padding-bottom: 1px;

}
.benefits-section::before{
    content: '';
    display: block;
    background-color: var(--overlay);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
}
.benefit-card img{
    max-width: 80px;
    margin-bottom: 20px;
}

.treatments{

}
.dotted{
    max-width:70px;
    border-top: 4px dotted black;
    margin: 20px auto;
}
.service_card{
    padding: 0;
    background-color:var(--bs-gray-200);
    position: relative;
    height: 100%;
}
.service_card img{
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.service_card_desc{
    padding:20px;
    padding-right: 80px;
}
.service_card_arrow{
    display: flex;
    width: 70px;
    height: 60px;
    color: white;
    background-color: var(--primary);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 22px;

}
.section{
    padding: 60px 0;
}

.bg_gray{
    background-color:var(--bs-gray-200);
}
.result_video{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.result_video > div{
    height: auto;
    width: 100%;
}
.result_video iframe{
    height: 563px;
}
.result_video_play_btn{
    background-color: transparent;
    border: none;
    font-size: 60px;
    color: white;
}
.result_video_play_btn img{
    width: 100px;
}
.result_video > div{
    overflow: hidden;
    border-radius: 14px;
}

.process_rows{
    max-width:1240px;
    margin: auto;
}
.process_rows >.row{

}

.process_card{
    background-color: white;
    padding: 50px;
    text-align: center;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.process_section{
    padding: 80px 0;
}

.accordion-button{
    font-family: var(--font2);
}

.hero-content *{
    color: white;
}
.benefit-card p{
    color: white;
}

.dotted.white{
    border-color: white;
}

.footer a{
    font-size: 16px;
    font-weight: 500;
}
.footer_subscribe_form{
    display: flex;
    height: 60px;
}
.footer_subscribe_form *{
    border-radius: 0;
    border: 0;
}
.footer_subscribe_form input{
    flex: 1;

}
.footer_subscribe_form button{
    background-color: black;
    color: white;
}
.footer_subscribe_form button:hover{
    background-color: var(--primary-hover);
    color: white;
}
.form-control{
    box-shadow: none;
    outline: none;
}
.form-control:focus,.form-control:focus-visible{
    box-shadow: none !important;
    outline: none!important;
}
.footer_subscribe_form button{
    width: 100px;
}
.hero-inner{
    background-position: top;
}

.hero-inner::before{
    content: '';
    background-color: #0d1115;
    --background-overlay: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: .6;
}
.hero-inner .hero-content p{
    font-size: 16px;
    line-height: 1.7;
}
.hero-inner
{
    height: 640px;
    align-items: end;
    color: white;
    position: relative;
    padding-bottom: 80px;
}
.hero-inner-2{
    height:700px;
}
.mygal img{
    transition:300ms;
}
.mygal img:hover{
    filter:grayscale(1);
}
.rounded_icon{
    width: 100px;
    display: inline-flex;
    height: 100px;
    background-color: var(--primary);
    border-radius: 50%;
    padding: 32px;
    justify-content: center;
    align-items: center;
}
.rounded_icon .black{
    filter: invert(1);
}

.about_video_thbb{
    height: 700px;
}
.about_video .result_video iframe{
height: 650px;
}

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

.navbar .dropdown-item{
    color:black;
    padding: 14px 20px;
}
.navbar .dropdown-item:hover{
    background-color: var(--primary);
    color: white;
}
.navbar-expand-lg .navbar-nav .dropdown-menu{
    width: 250px;
    border-radius: 0;
    padding:0;
}
.dropdown:hover .dropdown-menu{
    display:block
}

.service_text_box{
    background-color: var(--gray);
    padding: 40px;
    text-decoration: none;
    display: block;
    color: #222;
    transition: 300ms;
    height: 100%;
}
.service_text_box:hover{
    background-color: var(--primary);
    color: white;
}
.service_text_box h5{
    font-size: 17px;
    font-weight: bold;
}
.service_text_box  p{
    font-size:15px;
    line-height: 1.7;
    margin-bottom: 0;
}
.service_text_box:hover p{
    color: white;

}
.hairline_cta{
    background-image: url(https://smplyink.com/wp-content/uploads/2024/09/Firefly-20240921193520-scaled-e1726963130110.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hairline_cta_inner{
    background-color: #ffffffa6;

}
.hairline_cta_content{
    padding: 100px 0;
    text-align: center;
    max-width: 680px;
    margin: auto;
}

.hairline_play{
    animation-name: updown;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}
@keyframes updown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(20px);
    }
}
#videoModal .modal-content{
border-radius: 0;
}
#videoModal .modal-content .modal-body{
    padding: 0;
}
.popup_video{
    width: 100%;
    height: 410px;
    margin-bottom: -10px;
}
.modal-content{
    border-radius: 0;
}
.modal-lg, .modal-xl{
    max-width: 700px;
}
.accordion-button{
    color: var(--primary);
}
.acacemy_rw{

}

.sser{
    max-width: 1000px;
    margin: auto;
}
.sser hr{
    border-color: #aaa;
    margin-top: 26px;
    margin-bottom: 40px;
}

._lisss{

}
._lisss img{
    width: 40px;
    color: var(--primary);
}
.navbar.spl{
    background-color: var(--primary);
    margin-bottom: 0;
}
.btn-outline-primary{
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover,.btn-outline-primary.active{
    background-color:var(--primary);
    color: white;
    border-color: var(--primary);
}

.gallery_xx a > img:hover{
    transform: scale(1.03);
}
.gallery2_section{
    height: 720px;
    width: 100%;
    object-fit: cover;
}
.page-link{
    color: var(--primary);
    box-shadow: none;
}
.active>.page-link, .page-link.active{
    border-color: var(--primary);
    background-color: var(--primary);
}
.text-hover-primary:hover{
    color: var(--primary) !important;
}
.bg-primary{
    background-color: var(--primary) !important;
}

.cale{
    width: 100px;
    height: 100px;
    display: block;
    margin: auto;
    background: var(--primary);
    border-radius: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post_content{
    font-family: "Azeret Mono", monospace;;
}
