/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.6
Tested up to: 7.0
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

 :root{
    --primary:#d01814;
    --secondary:#303d4e;
    --heading:#ee3337;
    --text:#7b798c;
    --white:#fff;
    --bg:#faf7f7;
   --section-padding: 70px 0;
   --responsive-padding:50px 0;
    --heading-font:"Hanken Grotesk" ;
     --body-font:"Hanken Grotesk";
  --gradient-primary: linear-gradient(135deg, #d11a14, #df460f);
  --gradient-secondary: linear-gradient(135deg, #096467, #59d0c8);
}
/* h1,h2,h3,h4,h5,h6{
    font-family: 'Hanken Grotesk' !important;
} */

body{
    font-family:var(--body-font);
    overflow-x:hidden;
    background:var(--bg);
}
.section-title {
    font-size: 41px;
    line-height: 52px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    font-family: 'Hanken Grotesk';
}
p{
    font-family:var(--body-font);
    font-size:17px;
    font-weight:400;
    line-height:28px;
    color:var(--text);
}
@media(max-width:991px){
    .section-title{
        font-size:42px;
    }
}

.container-fluid {
    width: 98%;
}
a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

img.img-fluid.logo {
    width: 100%;
}

@media(max-width:767px){
    img.img-fluid.logo {
    width: 55%;
}
.section{
    padding: var(-responsive-padding);
}
}
/* Header-section */

.site-header {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    z-index: 99;
}

.site-navbar {
    padding: 15px 20px;
}

.navbar-brand {
    width: 150px;
    padding: 0;
}

.navbar-brand img {
    width: 100%;
    height: auto;
    display: block;
}

.site-navbar .navbar-collapse {
    justify-content: center;
}

.site-navbar .navbar-nav {
    padding: 5px;
    gap: 2px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
}

.site-navbar .navbar-nav > li > a {
    padding: 12px 15px;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: 0.3s ease;
}

.site-navbar .navbar-nav > li > a::after {
    content: "+";
    border: 0;
    font-size: 13px;
    margin-left: 2px;
}

.site-navbar .navbar-nav > li > a:hover,
.site-navbar .navbar-nav > li.current-menu-item > a,
.site-navbar .navbar-nav > li.current_page_item > a {
    color: var(--white);
    background: var(--primary);
}
.navbar-toggler {
    width: 45px;
    height: 45px;
    padding: 8px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--secondary);
    border-radius: 5px;
}

@media (max-width: 1199px) {

    .site-navbar .navbar-nav > li > a {
        padding: 11px 10px;
        font-size: 13px;
    }

    .header-connect {
        width: 160px;
    }

}

@media (max-width: 991px) {

    .site-header {
        top: 10px;
    }

    .site-navbar {
        padding: 12px 15px;
    }

    .navbar-brand {
        width: 125px;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .site-navbar .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        background: var(--white);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(32, 32, 32, 0.12);
    }

    .site-navbar .navbar-nav {
        display: block;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .site-navbar .navbar-nav > li {
        border-bottom: 1px solid #eeeeee;
    }

    .site-navbar .navbar-nav > li:last-child {
        border-bottom: 0;
    }

    .site-navbar .navbar-nav > li > a {
        min-height: 50px;
        padding: 14px 5px;
        color: var(--secondary);
        border-radius: 0;
        justify-content: space-between;
        font-size: 15px;
    }

    .site-navbar .navbar-nav > li > a:hover,
    .site-navbar .navbar-nav > li.current-menu-item > a,
    .site-navbar .navbar-nav > li.current_page_item > a {
        color: var(--primary);
        background: transparent;
    }

    .header-connect {
        width: 100%;
        margin-top: 15px;
        background: var(--primary);
        color: var(--white);
    }

    .header-connect:hover {
        color: var(--white);
    }

    .header-connect i {
        background: var(--white);
        color: var(--primary);
    }

}

@media (max-width: 575px) {

    .site-header {
        top: 5px;
    }

    .site-navbar {
        padding: 10px;
    }

    .navbar-brand {
        width: 115px;
    }

    .navbar-toggler {
        width: 42px;
        height: 42px;
    }

}

@media (max-width: 991px) {

    .site-navbar {
        justify-content: flex-end;
    }

    .navbar-toggler {
        display: block;
        border: 0;
        box-shadow: none !important;
    }

    .navbar-collapse {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
        z-index: 999;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav li {
        width: 100%;
    }

    .navbar-nav li a {
        display: flex;
        justify-content: space-between;
        padding: 12px 5px;
        color: var(--secondary) !important;
    }

}

/* Hero-section */

.hero-section {
    /* padding: 20px 0 0; */
    /* background: #292929; */
    position: relative;
    min-height: 645px;
    border-radius: 0 0 100px 100px;
     background-image: url("https://biosmithlaboratories.com/wp-content/uploads/2026/08/blog.png");
      background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* .hero-banner {
    position: relative;
    min-height: 645px;
    border-radius: 0 0 100px 100px;
     background-image: url("https://hivends.org/biosmith/wp-content/uploads/2026/08/blog.png");
    background-size: cover;
    background-position: center;
    overflow: hidden; 
} */

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
}

.hero-banner .row {
    position: relative;
    z-index: 2;
    min-height: 645px;
}

.hero-content {
    width: 470px;
    margin-left: 70px;
    margin-top: 80px;
    padding: 40px 35px 32px;
    border-radius: 42px;
    background: rgba(70, 70, 70, 0.45);
    border-bottom: 8px solid var(--primary);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-content .section-title {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 52px;
    line-height: 1.05;
}

.hero-content .section-title span {
    position: relative;
    color: var(--primary);
    font-style: italic;
    display: inline-block;
}

.hero-content .section-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.hero-content .sub-title {
    margin-bottom: 32px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
}

.hero-btn {
    width: 190px;
    height: 48px;
    padding: 4px 5px 4px 20px;
    border-radius: 50px;
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.hero-btn:hover {
    color: var(--secondary);
}

.hero-btn i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-phone:hover {
    color: var(--white);
}

.hero-phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-phone-text span {
    color: rgb(255 255 255);
    font-family: var(--body-font);
    font-size: 14px;
}

.hero-phone-text strong {
    color: var(--white);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1199px) {

    .hero-content {
        margin-left: 35px;
    }

}

@media (max-width: 991px) {

    .hero-section {
        padding-top: 10px;
    }

    .hero-banner {
        min-height: 650px;
        border-radius: 0 0 60px 60px;
        background-position: 65% center;
    }

    .hero-banner .row {
        min-height: 650px;
    }

    .hero-content {
        width: 90%;
        max-width: 500px;
        margin-left: 25px;
        padding: 35px 28px 30px;
    }

    .hero-content .section-title {
        font-size: 45px;
    }

}

@media (max-width: 767px) {

    .hero-banner {
        min-height: 650px;
        border-radius: 0 0 40px 40px;
        background-position: 65% center;
    }

    .hero-banner .row {
        min-height: 550px;
    }

    .hero-content {
        width: calc(100% - 30px);
        margin: 0 15px;
        padding: 30px 22px 27px;
        border-radius: 30px;
    }

    .hero-content .section-title {
        font-size: 38px;
        line-height: 1.08;
    }

    .hero-content .sub-title {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

}

/* Marque-section */

.marquee-section {
    position: relative;
    width: 100%;
    height: 255px;
    overflow: hidden;
    background: var(--white);
}

.marquee-wrap {
    position: absolute;
    inset: 0;
}

.marquee-strip {
    position: absolute;
    left: -5%;
    width: 110%;
    height: 75px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-back {
    top: 80px;
    background: #303743;
    transform: rotate(-4deg);
    z-index: 1;
}

.marquee-front {
    top: 105px;
    background: linear-gradient(90deg, #d01814, #ed4a08);
    transform: rotate(4deg);
    z-index: 2;
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 35px;
    white-space: nowrap;
    animation: marquee-left 25s linear infinite;
}

.marquee-front .marquee-track {
    animation: marquee-right 25s linear infinite;
}

.marquee-track span {
    color: var(--white);
    font-family: var(--body-font);
    font-size: 43px;
    font-weight: 700;
    line-height: 1;
}

.marquee-track i {
    color: var(--white);
    font-size: 35px;
    font-style: normal;
    line-height: 1;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 991px) {

    .marquee-section {
        height: 250px;
    }

    .marquee-strip {
        height: 95px;
    }

    .marquee-back {
        top: 70px;
    }

    .marquee-front {
        top: 90px;
    }

    .marquee-track {
        gap: 25px;
    }

    .marquee-track span {
        font-size: 32px;
    }

    .marquee-track i {
        font-size: 27px;
    }

}

@media (max-width: 575px) {

    .marquee-section {
        height: 200px;
    }

    .marquee-strip {
        height: 65px;
    }

    .marquee-back {
        top: 65px;
    }

    .marquee-front {
        top: 80px;
    }

    .marquee-track {
        gap: 20px;
    }

    .marquee-track span {
        font-size: 25px;
    }

    .marquee-track i {
        font-size: 21px;
    }

}
img.img-fluid.icon-img {
    filter: brightness(0) invert(1);
    width: 40px;
}

/* About-us */

.about-section {
    padding: var(--section-padding);
    background: var(--white);
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-small {
    position: relative;
    z-index: 3;
    width: 120px;
    height: 410px;
    margin-left: 15px;
    border-radius: 0 0 70px 70px;
    overflow: hidden;
}

.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding-left: 25px;
}

.about-content .sub-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 700;
}

.about-content .sub-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 90px;
    height: 2px;
    background: var(--primary);
}

.about-content .section-title {
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-content .section-title span {
    color: var(--primary);
}

.about-content > p {
    margin-bottom: 25px;
}

.about-features {
    row-gap: 20px;
}

.about-feature {
    height: 100%;
    padding: 20px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 35px rgba(32,32,32,.07);
}

.about-feature h4 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
}

@media (max-width: 991px) {

    /* .about-image {
        min-height: 480px;
        margin-bottom: 40px;
        justify-content: center;
    } */

    .about-content {
        padding-left: 0;
    }

    .about-content .section-title {
        font-size: 42px;
        line-height: 1.15;
    }

}

@media (max-width: 575px) {

    .about-image {
        min-height: 400px;
        padding-left: 0px;
    }

    .about-img-small {
        width: 90px;
        height: 330px;
        margin-left: 10px;
    }
    .about-content .section-title {
        font-size: 35px;
        line-height: 1.1;
    }

    .about-feature {
        padding: 18px;
    }

}

/* Offer-section */

.offer-section {
    padding: var(--section-padding);
    background: #343e4a;
    overflow: hidden;
}

.offer-section .row {
    min-height: 365px;
}

.offer-sticky-content {
    position: sticky;
    top: 100px;
    max-width: 570px;
    /* padding: 15px 25px 15px 45px; */
}

.offer-section .sub-title {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 18px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.offer-section .sub-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 122px;
    height: 2px;
    background: #ef3338;
}

.offer-section .section-title {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 41px;
    line-height: 1.2;
}

.offer-section .section-title span {
    color: var(--heading);
}

/* .offer-section .offer-description {
    max-width: 520px;
    margin-bottom: 28px;
    color: #f0f1f3;
    font-size: 14px;
    line-height: 22px;
} */

.offer-btn {
    display: inline-flex;
    align-items: center;
    min-width: 165px;
    height: 41px;
    padding: 0 4px 0 20px;
    border-radius: 30px;
    background: var(--white);
    color: #303943;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-btn i {
    width: 41px;
    height: 41px;
    margin-left: auto;
    margin-right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ef3338;
    color: var(--white);
    font-size: 15px;
}

.offer-btn:hover {
    color: #303943;
    transform: translateY(-2px);
}

.offer-scroll {
    width: 100%;
    height: 330px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offer-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.offer-card {
    position: relative;
    width: 100%;
    height: 330px;
    margin: 0;
    border-radius: 7px;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.offer-card + .offer-card {
    margin-top: 25px;
}

.offer-image {
    position: absolute;
    inset: 0;
}

.offer-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.offer-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 20%,
        rgba(0, 0, 0, 0.20) 100%
    );
}

.offer-overlay {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    min-height: 110px;
    padding: 15px 17px 15px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 7px;
    background: rgba(112, 106, 106, 0.84);
    backdrop-filter: blur(4px);
}

.offer-card-content {
    flex: 1;
}

.offer-card-content h3 {
    margin: 0 0 6px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 23px;
    line-height: 35px;
    font-weight: 700;
}

.offer-card-content p {    
    color: #f5f5f5; 
}

.offer-arrow {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: #68717a;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-arrow:hover {
    background: var(--heading);
    color: var(--white);
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .offer-sticky-content {
        padding-left: 25px;
    }

    .offer-section .section-title {
        font-size: 37px;
    }

    .offer-scroll,
    .offer-card {
        height: 315px;
    }
}

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

    .offer-section .row {
        min-height: auto;
    }

    .offer-sticky-content {
        position: relative;
        top: auto;
        max-width: 100%;
        padding: 0 0 35px;
    }

    .offer-section .section-title {
        font-size: 42px;
    }

    .offer-scroll {
        height: 360px;
    }

    .offer-card {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .offer-section {
        padding: 50px 0;
    }

    .offer-section .section-title {
        font-size: 34px;
    }

    .offer-section .sub-title {
        font-size: 16px;
    }

    .offer-section .offer-description {
        font-size: 14px;
        line-height: 22px;
    }

    .offer-scroll,
    .offer-card {
        height: 320px;
    }

    .offer-card + .offer-card {
        margin-top: 20px;
    }

    .offer-overlay {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 14px;
        gap: 10px;
    }

    .offer-card-content h3 {
        font-size: 17px;
        line-height: 23px;
    }

    .offer-card-content p {
        font-size: 12px;
        line-height: 18px;
    }

    .offer-arrow {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 575px) {
    .offer-section .section-title {
        font-size: 31px;
    }

    .offer-scroll,
    .offer-card {
        height: 290px;
    }

    .offer-card-content p {
        display: none;
    }
}

/* Why-choose */

.why-choose-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--white);
    overflow: hidden;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-image-wrap {
    position: relative;
    width: 100%;
    height: 570px;
    margin: 0 auto;
}

.why-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    z-index: 2;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 13%,
        100% 13%,
        100% 100%,
        0 100%,
        0 60%,
        7% 60%,
        7% 38%,
        0 38%
    );
}

.why-content {
    max-width: 590px;
    padding-left: 55px;
}

.why-choose-section .sub-title {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #111827;
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.why-choose-section .sub-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 135px;
    height: 2px;
    background: var(--heading);
}

.why-choose-section .section-title {
    max-width: 580px;
    margin-bottom: 38px;
    color: #343e4a;
    font-size: 47px;
    line-height: 1.18;
}

.why-choose-section .section-title span {
    color: var(--heading);
}

.why-features {
    width: 100%;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 0 25px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #d8dadd;
}

.why-feature:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.why-icon {
    position: relative;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    overflow: hidden;
}

.why-icon i {
    position: relative;
    z-index: 2;
}

.why-feature-content {
    flex: 1;
}

.why-feature-content h3 {
    margin: 0 0 5px;
    color: #111827;
    font-family: var(--heading-font);
    font-size: 23px;
    line-height: 29px;
    font-weight: 700;
}

.why-feature-content p {
    margin: 0;
    color: #6f7480;
    font-size: 15px;
    line-height: 22px;
}

.why-decoration {
    position: absolute;
    z-index: 1;
    color: rgba(89, 208, 200, 0.16);
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    transform: rotate(45deg);
}

.why-decoration-one {
    top: 45px;
    right: 38px;
}

.why-decoration-two {
    top: 88px;
    right: 78px;
}

.why-decoration-three {
    top: 130px;
    right: 118px;
}

.why-decoration-four {
    top: 172px;
    right: 158px;
}

@media (max-width: 1199px) {
    .why-image-wrap {
        max-width: 450px;
        height: 510px;
    }

    .why-content {
        padding-left: 30px;
    }

    .why-choose-section .section-title {
        font-size: 41px;
    }

    .why-feature-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-image-wrap {
        max-width: 520px;
        height: 500px;
        margin-bottom: 50px;
    }

    .why-content {
        max-width: 700px;
        padding-left: 0;
        margin: 0 auto;
    }

    .why-choose-section .section-title {
        font-size: 42px;
    }

    .why-decoration {
        display: none;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .why-image-wrap {
        height: 390px;
        margin-bottom: 40px;
    }

    .why-choose-section .sub-title {
        font-size: 16px;
    }

    .why-choose-section .section-title {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .why-feature {
        gap: 13px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .why-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .why-feature-content h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .why-feature-content p {
        font-size: 13px;
        line-height: 20px;
    }
}

@media (max-width: 575px) {
    .why-image-wrap {
        height: 330px;
    }

    .why-choose-section .section-title {
        font-size: 31px;
    }

    .why-feature-content h3 {
        font-size: 17px;
    }
.why-feature-content p {
    font-size: 16px;
    line-height: 26px;
}
}

/* pcd highlight */

.pcd-highlight-section {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(rgb(54 63 75 / 87%), rgb(54 63 75 / 65%)), url(https://biosmithlaboratories.com/wp-content/uploads/2026/08/biosmith-bg.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.pcd-highlight-section .container-fluid {
    position: relative;
    z-index: 5;
}


.pcd-highlight-content {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcd-highlight-section .section-title {
    position: relative;
    z-index: 3;
    max-width: 1650px;
    margin: 0;
    color: var(--primary);
    font-size: clamp(65px, 8.4vw, 158px);
    line-height: 0.98;
    letter-spacing: -5px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
}

.pcd-highlight-section .sub-title {
    font-family: var(--heading-font);
}

.pcd-highlight-pill {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 57px;
    padding: 10px 25px;
    border-radius: 50px;
    background: var(--white);
    color: var(--secondary);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pcd-highlight-pill-one {
    top: 30%;
    left: 7%;
    transform: rotate(-5deg);
}

.pcd-highlight-pill-two {
    top: 33%;
    left: 55% !important;
    transform: rotate(-4deg);
}

.pcd-highlight-pill-three {
    bottom: 27%;
    left: 24%;
    transform: rotate(3deg);
}
.pcd-highlight-pill-four {
    right: 9%;
    bottom: 33%;
    transform: rotate(
7deg);
}

.pcd-highlight-shape {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    opacity: 0.8;
    background: repeating-radial-gradient(
        ellipse at center,
        transparent 0 8px,
        #e6e6e617 9px 11px,
        transparent 12px 19px
    );
}

.pcd-highlight-shape::after {
    content: "";
    position: absolute;
    inset: 55px;
    border-radius: 50%;
    background: repeating-radial-gradient(
        ellipse at center,
        transparent 0 8px,
        #e6e6e617 9px 11px,
        transparent 12px 20px
    );
}

.pcd-highlight-shape-one {
    top: 28px;
    left: 25px;
    width: 185px !important;
    height: 185px !important;
    transform: rotate(25deg);
}

.pcd-highlight-shape-two {
    right: -35px;
    bottom: -100px;
    width: 400px !important;
    height: 400px !important;
    transform: rotate(-18deg);
}

.pcd-highlight-shape-two::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-radial-gradient(
        ellipse at center,
        transparent 0 10px,
        #e6e6e617 11px 14px,
        transparent 15px 25px
    );
}

@media (max-width: 1399px) {

    .pcd-highlight-section,
    .pcd-highlight-content {
        min-height: 600px;
    }

    .pcd-highlight-section .section-title {
        font-size: clamp(60px, 8vw, 120px);
    }

    .pcd-highlight-pill {
        min-width: 200px;
        min-height: 52px;
        font-size: 18px;
    }

    .pcd-highlight-pill-one {
        left: 8%;
    }

    .pcd-highlight-pill-two {
        left: 48%;
    }

    .pcd-highlight-pill-three {
        left: 22%;
    }

    .pcd-highlight-shape-two {
        width: 560px !important;
        height: 560px !important;
    }
}

@media (max-width: 991px) {

    .pcd-highlight-section,
    .pcd-highlight-content {
        min-height: 560px;
    }

    .pcd-highlight-section .section-title {
        font-size: clamp(50px, 9vw, 90px);
        line-height: 1;
        letter-spacing: -3px;
    }

    .pcd-highlight-pill {
        min-width: 170px;
        min-height: 46px;
        padding: 8px 18px;
        font-size: 16px;
    }

    .pcd-highlight-pill-one {
        top: 27%;
        left: 5%;
    }

    .pcd-highlight-pill-two {
        top: 36%;
        left: 47%;
    }

    .pcd-highlight-pill-three {
        bottom: 25%;
        left: 18%;
    }

    .pcd-highlight-pill-four {
        right: 4%;
        bottom: 22%;
    }

    .pcd-highlight-shape-one {
        width: 220px !important;
        height: 220px !important;
    }

    .pcd-highlight-shape-two {
        right: -100px;
        bottom: -80px;
        width: 450px !important;
        height: 450px !important;
    }
}

@media (max-width: 767px) {

    .pcd-highlight-section {
        min-height: 600px;
    }

    .pcd-highlight-content {
        min-height: 600px;
        padding: 40px 15px;
    }

    .pcd-highlight-section .section-title {
        max-width: 100%;
        font-size: clamp(42px, 12vw, 70px);
        line-height: 1.03;
        letter-spacing: -2px;
    }

    .pcd-highlight-pill {
        min-width: auto;
        min-height: 42px;
        padding: 8px 16px;
        font-size: 13px;
    }

    .pcd-highlight-pill-one {
        top: 22%;
        left: 4%;
    }

    .pcd-highlight-pill-two {
        top: 37%;
        right: 4%;
        left: auto;
    }

    .pcd-highlight-pill-three {
        bottom: 29%;
        left: 8%;
    }

    .pcd-highlight-pill-four {
        right: 5%;
        bottom: 17%;
    }

    .pcd-highlight-shape-one {
        top: 20px;
        left: -60px;
        width: 200px !important;
        height: 200px !important;
    }

    .pcd-highlight-shape-two {
        right: -150px;
        bottom: -60px;
        width: 400px !important;
        height: 400px !important;
    }
}
@media(max-width:767px){
    .process-section {
    padding: var(--responsive-padding) !important;
}
section.section.faq-section {
    margin: 55px 0 0 0;
}
section.contact-us{
     padding: var(--responsive-padding);
}
}

@media (max-width: 575px) {

    .pcd-highlight-section {
        min-height: 419px !important;
    }

 .pcd-highlight-content {
    min-height: 442px;
    padding: 0px 15px;
}
    .pcd-highlight-section .section-title {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .pcd-highlight-pill {
        font-size: 12px;
        min-height: 38px;
        padding: 7px 13px;
    }

    .pcd-highlight-pill-one {
        top: 27%;
    }

    .pcd-highlight-pill-two {
        top: 38%;
    }

    .pcd-highlight-pill-three {
        bottom: 28%;
    }

    .pcd-highlight-pill-four {
        bottom: 17%;
    }

    .pcd-highlight-shape-one {
        width: 160px !important;
        height: 160px !important;
        left: -55px;
    }

    .pcd-highlight-shape-two {
        width: 330px !important;
        height: 330px !important;
        right: -120px;
    }
}
/* Process-section */

.process-section {
    padding: var(--section-padding);
    background: var(--white);
    overflow: hidden;
}

.process-content {
    padding-right: 35px;
}

.process-content .sub-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 700;
}

.process-content .sub-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 126px;
    height: 2px;
    background: var(--primary);
}

.process-content .section-title {
    margin-bottom: 35px;
    color: var(--secondary);
}

.process-content .section-title span {
    display: block;
    color: var(--primary);
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-item {
    min-height: 147px;
    padding: 20px 20px 20px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 35px rgba(32, 32, 32, 0.07);
}
.process-number {
    width: 35px;
    flex-shrink: 0;
    color: #e5e9ef;
    font-family: var(--body-font);
    font-size: 23px;
    font-weight: 900;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.process-text {
    flex: 1;
}

.process-text h4 {
    margin-bottom: 8px;
    color: var(--secondary);
    font-family: var(--body-font);
    font-size: 21px;
    font-weight: 700;
}
.process-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    clip-path: polygon(
        50% 0%,
        61% 8%,
        75% 5%,
        84% 16%,
        96% 22%,
        93% 37%,
        100% 50%,
        93% 63%,
        96% 78%,
        84% 84%,
        75% 95%,
        61% 92%,
        50% 100%,
        39% 92%,
        25% 95%,
        16% 84%,
        4% 78%,
        7% 63%,
        0% 50%,
        7% 37%,
        4% 22%,
        16% 16%,
        25% 5%,
        39% 8%
    );
}
/* .process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

@media (max-width: 991px) {

    .process-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .process-image {
        height: 500px;
        margin-left: 0;
    }

    .process-content .section-title {
        font-size: 42px;
    }

}

@media (max-width: 575px) {

    .process-content .section-title {
        font-size: 35px;
        line-height: 1.1;
    }

    .process-item {
        min-height: 125px;
        padding: 15px 12px;
        gap: 10px;
    }

    .process-number {
        width: 25px;
        font-size: 13px;
    }

    .process-text h4 {
        font-size: 17px;
    }

    .process-text p {
        font-size: 13px;
        line-height: 20px;
    }

    .process-icon {
        width: 58px;
        height: 58px;
        font-size: 21px;
    }

    .process-image {
        height: 400px;
    }

}

/* Faq-section */

.faq-section {
    padding: 100px 0;
    position: relative;
    min-height: 555px;
    background-image: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)), url("https://biosmithlaboratories.com/wp-content/uploads/2026/08/faq-imgg.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0 0 90px 90px;
    border-bottom: 8px solid var(--primary);
    overflow: hidden;
}

.faq-content {
    padding: 0 20px;
}

.faq-content .sub-title {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.faq-content .sub-title > span {
    color: var(--primary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-accordion .accordion-item {
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.28);
}

.faq-accordion .accordion-button {
    min-height: 60px;
    padding: 15px 18px;
    color: var(--white);
    background: rgba(255,255,255,.22);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 700;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button i {
    width: 22px;
    height: 22px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255,255,255,.28);
    border-bottom: 2px solid var(--primary);
}

.faq-accordion .accordion-button:not(.collapsed) i {
    background: var(--primary);
    color: var(--white);
}
.faq-accordion .accordion-body {
    padding: 16px 18px 18px;
    color: var(--white);
    background: rgba(255,255,255,.28);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 25px;
}
@media (max-width: 991px) {

    .faq-section {
        padding: 70px 0;
        min-height: auto;
        border-radius: 0 0 60px 60px;
    }

    .faq-content {
        padding: 0;
    }

}

@media (max-width: 575px) {

    .faq-section {
        padding: 55px 0;
        border-radius: 0 0 40px 40px;
    }

    .faq-content .sub-title {
        font-size: 25px;
    }

    .faq-accordion {
        gap: 12px;
    }

    .faq-accordion .accordion-button {
        font-size: 15px;
        padding: 14px;
    }

}

/* Contact-section */

.custom-contact-form {
    background: #df1010;
    padding: 35px 35px 0 35px;
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
}

.custom-contact-form .row {
    margin-left: 0;
    margin-right: 0;
}
.custom-contact-form .form-column {
    padding-left: 0;
    margin-bottom: 43px;
}

.custom-contact-form .col-md-6:nth-child(2) {
    padding-right: 0;
    padding-left: 0;
}
.custom-contact-form label {
    display: block;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}
.custom-contact-form .cf7-input {
    display: block;
    width: 100%;
    height: 42px;
    padding: 15px;
    background: #ffffff;
    color: #687582;
    border: 0;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 16px;
  font-weight: 400;
  box-shadow: none;
}
.custom-contact-form .cf7-input::placeholder {
    color: #687582;
    opacity: 1;
}
.custom-contact-form .cf7-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}
.custom-contact-form .col-12.form-column:nth-child(3) {
    padding-right: 0;
}
.custom-contact-form textarea.cf7-input {
    height: 137px;
    min-height: 137px;
    resize: both;
    padding-top: 15px;
}
.custom-contact-form .col-12:last-child {
    padding-right: 0;
    margin-bottom: 0;
}
.custom-contact-form .cf7-submit {
    display: block;
    width: 100%;
    height: 58px;
    background: var(--secondary);
    color: #ffffff;
    border: none;
    border-radius: 35px;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.custom-contact-form .cf7-submit:hover {
    background: #2c3541;
    color: #ffffff;
}
section.contact-us {
    padding: var(--section-padding);
}

.custom-contact-form p {
    margin: 0;
}

.custom-contact-form .wpcf7-not-valid-tip {
    color: #ffffff;
    font-size: 14px;
    margin-top: 5px;
}

.custom-contact-form .wpcf7-response-output {
    color: #ffffff;
    border: 1px solid #ffffff;
    margin: 20px 0 0;
    padding: 10px;
    border-radius: 5px;
}

@media (max-width: 767px) {

    .custom-contact-form {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .custom-contact-form .form-column {
        padding: 0;
        margin-bottom: 30px;
    }

    .custom-contact-form .col-md-6:nth-child(2) {
        padding: 0;
    }

    .custom-contact-form label {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .custom-contact-form .cf7-input {
        height: 58px;
        font-size: 17px;
    }

    .custom-contact-form textarea.cf7-input {
        height: 130px;
    }

    .custom-contact-form .cf7-submit {
        height: 55px;
        font-size: 18px;
    }
}

/* Testimonial-section */

.testimonials-section {
    position: relative;
    width: 100%;
    min-height: 650px;
 background: var(--secondary);
    padding: var(--section-padding);
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}
.testimonials-heading {
    position: relative;
    z-index: 20;
    text-align: center;
    color: #ffffff;
    margin-bottom: 55px;
}
.small-title {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 2px;
    border-bottom: 3px solid #df1717;
    font-family: 'Hanken Grotesk';
}
.testimonials-heading h2 span {
    color: #df1717;
    font-weight: 800;
}
.testimonial-wrapper {
    position: relative;
    width: 100%;
    max-width: 1130px;
    height: 390px;
    margin: 0 auto;
}
.testimonial-card {
    position: absolute;
    width: 230px;
    height: 380px;
    padding: 28px 28px 25px;
    box-sizing: border-box;
    border-radius: 5px;
    color: #334553;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.20),
        0 0 25px rgba(255, 255, 255, 0.05);
    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease,
        filter 0.35s ease;
    cursor: pointer;
    transform-origin: center center;
    will-change: transform;
    overflow: visible;
}
.card-1 {
    background: #e8f7f6;
}
.card-2 {
    background: #e9edff;
}
.card-3 {
    background: #f0ebff;
}

.card-4 {
    background: #fff0eb;
}

.card-5 {
    background: #fce9f4;
}
.card-1 {
    left: 2%;
    top: 20px;
    transform: rotate(-8deg);
    z-index: 1;
}

.card-2 {
    left: 21%;
    top: 20px;
    transform: rotate(-6deg);
    z-index: 2;
}

.card-3 {
    left: 40%;
    top: 20px;
    transform: rotate(-5deg);
    z-index: 3;
}

.card-4 {
    left: 59%;
    top: 20px;
    transform: rotate(-6deg);
    z-index: 4;
}

.card-5 {
    left: 78%;
    top: 20px;
    transform: rotate(-8deg);
    z-index: 5;
}

.testimonial-card:hover {
    transform: rotate(0deg) scale(1.08) translateY(-12px) !important;

    z-index: 100 !important;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(255, 255, 255, 0.12);

    filter: brightness(1.03);
}
.testimonial-card .avatar {
    position: absolute;
    width: 66px;
    height: 66px;
    top: -32px;
    right: 25px;
border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #df1717;
    box-sizing: border-box;
    z-index: 10;
}

.testimonial-card .avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.stars {
    color: #ffc400;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 23px;
}

.testimonial-text {
    margin: 0 0 25px;
    color: #425465;
    font-size: 16px;
    line-height: 1.48;
    font-weight: 600;
}
.person-name {
    color: #182635;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 8px;
}

.person-country {
    color: #667583;
    font-size: 14px;
    margin-top: 5px;
}
.quote-mark {
    position: absolute;
    right: 22px;
    bottom: 39px;
    color: rgba(120, 110, 130, 0.18);
    font-family: Georgia, serif;
    font-size: 85px;
    line-height: 0.7;
    font-weight: 700;
    pointer-events: none;
}
.testimonial-card:hover .testimonial-text {
    color: #263746;
}
.testimonial-card:hover .person-name {
    color: #111d2b;
}
.testimonial-card:hover .person-country {
    color: #4d5d6a;
}
@media (max-width: 1000px) {

    .testimonial-wrapper {
        height: 390px;
        max-width: 850px;
    }
    .testimonial-card {
        width: 200px;
        height: 360px;

        padding: 25px 22px;
    }
    .card-1 {
        left: 0;
    }
    .card-2 {
        left: 19%;
    }

    .card-3 {
        left: 38%;
    }

    .card-4 {
        left: 57%;
    }

    .card-5 {
        left: 76%;
    }

    .testimonial-text {
        font-size: 14px;
    }
    .testimonials-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

    .testimonials-section {
        padding: 45px 20px;
        min-height: auto;
    }
  .testimonials-heading {
        margin-bottom: 40px;
    }

    .small-title {
        font-size: 17px;
    }

    .testimonials-heading h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .testimonial-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 25px;
    }

    .testimonial-card {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100%;
        height: auto;
        min-height: 330px;
        padding: 30px;
        transform: rotate(0deg) !important;
    }

    .testimonial-card:hover {
        transform: scale(1.02) translateY(-5px) !important;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.55;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5 {
        z-index: auto;
    }
}

/* Blogs-section */

.blog-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.blog-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}
.blog-small-title {
    display: inline-block;
    color: #182638;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 3px;
    border-bottom: 3px solid #e01b1b;
    font-family: 'Hanken Grotesk';
}
.blog-heading h2 {
    margin: 20px 0 0;
    color: #303d4e;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    font-family: 'Hanken Grotesk';
}

.blog-heading h2 span {
    color: #df1717;
}
.blog-card {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1005px;
    min-height: 375px;
    margin: 0 auto;
    padding: 18px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e8edf0;
    border-radius: 10px;
    box-shadow:
        0 10px 35px rgba(36, 53, 68, 0.07);
    gap: 35px;
}
.blog-image {
    flex: 0 0 50%;
    width: 50%;
    overflow: hidden;
    border-radius: 8px;
    min-height: 305px;
}

.blog-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 305px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.03);
}
.blog-content {
    flex: 1;
 display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px 10px 0;
    box-sizing: border-box;
}
.blog-category {
    display: inline-block;
    align-self: flex-start;
    padding: 9px 16px;
    margin-bottom: 22px;
    background: #df1717;
    color: #ffffff;
    border-radius: 25px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}
.blog-content h3 {
    margin: 0 0 17px;
    color: #172638;
    font-size: 27px;
    line-height: 1.18;
    font-weight: 700;
    font-family: 'Hanken Grotesk';
}
.hero-btn:hover{
        color: #ffffff;
    background: #273746;
    border-color: #273746;
}
@media (max-width: 900px) {

    .blog-section {
        padding: 50px 25px 60px;
    }

    .blog-heading h2 {
        font-size: 34px;
    }

    .blog-card {
        gap: 25px;
    }

    .blog-image {
        flex: 0 0 48%;
        width: 48%;
    }

    .blog-content h3 {
        font-size: 23px;
    }

    .blog-content {
        padding-right: 10px;
    }
}

@media (max-width: 767px) {

    .blog-section {
        padding: 40px 18px 50px;
    }


    .blog-small-title {
        font-size: 17px;
    }


    .blog-heading {
        margin-bottom: 30px;
    }


    .blog-heading h2 {
        margin-top: 15px;

        font-size: 28px;
        line-height: 1.25;
    }
    .blog-card {
        display: block;

        padding: 12px;

        min-height: auto;

        border-radius: 10px;
    }
    .blog-image {
        width: 100%;
        height: 240px;
        min-height: 240px;
        margin-bottom: 25px;
    }
    .blog-image img {
        width: 100%;
        height: 240px;
        min-height: 240px;
    }


    .blog-content {
        display: block;

        padding: 5px 10px 20px;
    }


    .blog-category {
        margin-bottom: 17px;

        font-size: 13px;
    }


    .blog-content h3 {
        font-size: 23px;
        line-height: 1.25;

        margin-bottom: 14px;
    }
}
a.hero-btn.blog {
    border: 1px solid #3232326b !important;
}

/* Footer-css */


.main-footer {
    background: var(--secondary);
    color: #ffffff;
    width: 100%;
    position: relative;
}

.main-footer .footer-top {
    padding: 70px 0 50px;
}
.main-footer .footer-logo {
    width: 154px;
    height: auto;
    display: block;
    margin-bottom: 12px;
}
.main-footer .footer-about p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
}
.main-footer .footer-widget h4 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
}

.main-footer .footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

.main-footer .footer-widget ul li {
    margin-bottom: 12px;
    padding: 0;
}
.main-footer .footer-widget ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
}
.main-footer .footer-widget ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.main-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px !important;
}

.main-footer .footer-contact li i {
    width: 18px;
    min-width: 18px;
    margin-top: 4px;
    color: var(--primary);
    font-size: 15px;
    text-align: center;
}

.main-footer .footer-contact li a,
.main-footer .footer-contact li span {
    color: #b8c0cc;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.main-footer .footer-contact li a:hover {
    color: #ffffff;
}

.main-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 22px 0;
}

.main-footer .footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.main-footer .footer-bottom p a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.main-footer .footer-bottom p a:hover {
    color: var(--primary);
}

.main-footer .footer-bottom > .row > div:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-footer .footer-bottom > .row > div:last-child a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.main-footer .footer-bottom > .row > div:last-child a:hover {
    color: #ffffff;
}

.main-footer .footer-bottom > .row > div:last-child span {
    color: #596273;
}

@media (max-width: 991px) {

    .main-footer .footer-top {
        padding: 55px 0 35px;
    }

    .main-footer .footer-about {
        margin-bottom: 15px;
    }

    .main-footer .footer-widget {
        margin-bottom: 20px;
    }

    .main-footer .footer-bottom {
        padding: 20px 0;
    }
}
@media (max-width: 767px) {

    .main-footer .footer-top {
        padding: 45px 0 25px;
    }

    .main-footer .footer-about {
        margin-bottom: 30px;
    }

    .main-footer .footer-logo {
        max-width: 170px;
        margin-bottom: 20px;
    }

    .main-footer .footer-about p {
        font-size: 16px;
        line-height: 1.7;
    }

    .main-footer .footer-widget {
        margin-bottom: 25px;
    }

    .main-footer .footer-widget h4 {
        font-size: 18px;
        margin-bottom: 18px;
    }

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

    .main-footer .footer-bottom {
        text-align: center;
        padding: 18px 0;
    }

    .main-footer .footer-bottom > .row > div:last-child {
        justify-content: center !important;
        margin-top: 10px;
    }

}

@media (max-width: 575px) {

    .main-footer .footer-top {
        padding: 40px 0 20px;
    }

    .main-footer .footer-widget {
        margin-bottom: 25px;
    }

    .main-footer .footer-bottom p {
        font-size: 16px;
        line-height: 1.6;
    }

    .main-footer .footer-bottom > .row > div:last-child {
        flex-wrap: wrap;
        gap: 7px;
    }

}

.main-footer .footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.main-footer .footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.main-footer .footer-social a:hover {
    color: #ffffff;
    background: var(--primary);
    border-color: #198754;
    transform: translateY(-3px);
}

.main-footer .footer-social a i {
    line-height: 1;
}

/* Mobile */
@media (max-width: 575px) {
    .main-footer .footer-social {
        margin-top: 20px;
        gap: 8px;
    }

    .main-footer .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* Quick-menu */

#sequence {
    width: 100%;
    float: left;
    background: var(--primary);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 8px 0;
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
    border-right: 1px solid #fff;
}
@media(max-width:767px){
    .chaty-channels {
    display: none;
}
}

/* --- Fixed Dropdown Hover Gap --- */
.site-navbar .navbar-nav li.menu-item-has-children {
    position: relative !important;
}

/* Add padding-top to create an invisible bridge over the gap */
.site-navbar .navbar-nav .sub-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 210px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
    padding: 15px 0 !important;
    margin-top: 0px !important; /* Removed any separating gap */
    list-style: none !important;
    z-index: 99999 !important;
}

/* Use a pseudo-element bridge so the mouse never loses hover across the gap */
.site-navbar .navbar-nav li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px; /* Matches or covers the gap height */
    background: transparent;
}

/* Keep dropdown open when hovering parent OR the dropdown menu itself */
.site-navbar .navbar-nav li.menu-item-has-children:hover > .sub-menu,
.site-navbar .navbar-nav .sub-menu:hover {
    display: block !important;
}

/* Sub-menu styling */
.site-navbar .navbar-nav .sub-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #131444 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.2s ease-in-out;
}

.site-navbar .navbar-nav .sub-menu li a:hover {
    background-color: rgba(220, 53, 69, 0.08) !important;
    color: #dc3545 !important;
}



