/*
Theme Name: Storefront Child
Theme URI: https://woocommerce.com/storefront/
Template: storefront
Author: Automattic
Author URI: https://woocommerce.com/
Description: Storefront is the perfect theme for your next WooCommerce project. Designed and developed by WooCommerce Core developers, it features a bespoke integration with WooCommerce itself plus many of the most popular customer facing WooCommerce extensions. There are several layout &amp; color options to personalise your shop, multiple widget regions, a responsive design and much more. Developers will love its lean and extensible codebase making it a joy to customize and extend. Looking for a WooCommerce theme? Look no further!
Tags: e-commerce,two-columns,left-sidebar,right-sidebar,custom-background,custom-colors,custom-header,custom-menu,featured-images,full-width-template,threaded-comments,accessibility-ready,rtl-language-support,footer-widgets,sticky-post,theme-options,editor-style
Version: 2.5.3.1581571512
Updated: 2020-02-13 05:25:12

*/

/* ========================================
   CRITICAL: Override Storefront Header Spacing
   ======================================== */

/* Force remove ALL header spacing with maximum specificity */
body .site-header,
body #masthead.site-header,
body .storefront-primary-navigation,
html body .site-header,
html body #masthead.site-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Remove margins from all branding elements */
body .site-branding, 
body .site-search, 
body .site-header-cart, 
body .site-logo-anchor, 
body .site-logo-link, 
body .custom-logo-link,
html body .site-branding, 
html body .site-search, 
html body .site-header-cart {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Media query overrides with maximum specificity */
@media (min-width: 768px) {
    body .site-header,
    body #masthead.site-header,
    html body .site-header,
    html body #masthead.site-header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    body .site-header,
    body #masthead.site-header,
    html body .site-header,
    html body #masthead.site-header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* ========================================
   BioAlign Modern Landing Page Styles
   ======================================== */

:root {
    --primary-color: #0066ff;
    --secondary-color: #00d4ff;
    --dark-bg: #0a0e27;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
.bioalign-landing {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.bioalign-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 20px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 24px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: var(--dark-bg);
    color: var(--white);
}

.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6, .site-footer .widget .widget-title, .site-footer .widget .widgettitle{
        color: rgba(255, 255, 255, 0.55) !important;
}

.site-footer a:not(.button):not(.components-button){
    color: rgba(255, 255, 255, 0.55) !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 80px 20px 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        order: -1;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


/* ========================================
   BioAlign Custom Styles with Modern Fonts
   ======================================== */

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

/* Font Variables */
:root {
    --font-primary: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Poppins', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --primary-color: #3876b7;
    --secondary-color: #4a8bc2;
    --primary-dark: #2d5a8f;
    --primary-light: #5a94d1;
}

/* Global Font Override - Maximum Specificity */
*,
*::before,
*::after,
body,
html,
.site,
.site-content,
.content-area,
.site-main,
.entry-content,
.widget,
.widget-area,
.site-footer,
.site-header,
.main-navigation,
.storefront-primary-navigation,
p, span, div, a, li, ul, ol, td, th, table,
input, textarea, select, button,
.woocommerce,
.woocommerce-page {
    font-family: var(--font-primary) !important;
}

/* Headings Override */
h1, h2, h3, h4, h5, h6,
.entry-title,
.page-title,
.site-title,
.widget-title,
.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce h4,
.woocommerce h5,
.woocommerce h6,
.hero-title,
.section-title,
.feature-card h3,
.service-content h3 {
    font-family: var(--font-heading) !important;
    font-weight: 600;
    letter-spacing: -0.025em;
}

/* Navigation Specific Override */
.main-navigation,
.main-navigation ul,
.main-navigation li,
.main-navigation a,
.storefront-primary-navigation,
.storefront-primary-navigation ul,
.storefront-primary-navigation li,
.storefront-primary-navigation a,
#menu-main_menu,
#menu-main_menu li,
#menu-main_menu li a {
    font-family: var(--font-primary) !important;
}

/* WooCommerce Elements Override */
.woocommerce .woocommerce-breadcrumb,
.woocommerce .price,
.woocommerce .amount,
.woocommerce .button,
.woocommerce input,
.woocommerce select,
.woocommerce textarea,
.woocommerce-page .woocommerce-breadcrumb,
.woocommerce-page .price,
.woocommerce-page .amount,
.woocommerce-page .button {
    font-family: var(--font-primary) !important;
}

/* Form Elements Override */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select,
button,
.button,
.btn {
    font-family: var(--font-primary) !important;
}

/* Footer Override */
.site-footer,
.site-footer *,
.site-info,
#colophon,
#colophon * {
    font-family: var(--font-primary) !important;
}

/* Header Styles */
#masthead {
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

/* Override body padding for proper header spacing */
body {
    padding-top: 90px !important;
}

/* Remove Storefront default margins and padding */
.site-branding, 
.site-search, 
.site-header-cart, 
.site-logo-anchor, 
.site-logo-link, 
.custom-logo-link {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Force remove all header padding and margins */
.site-header,
#masthead.site-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

@media (min-width: 768px) {
    .site-header,
    #masthead.site-header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .site-header,
    #masthead.site-header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* Specific override for Storefront's 768px+ media query */
@media (min-width: 768px) {
    .site-header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* Layout Styles */
.alignfull {
    padding: 0 !important;
}

.has-normal-font-size.whyus {
    text-align: justify;
}

.whybioalign {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-top: 35px;
    text-transform: uppercase;
}

.wp-image-654 {
    padding-top: 35px;
}

/* Contact Styles */
.contactus {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    text-transform: uppercase;
}

.contactform input {
    width: 100%;
}

.contactform p {
    margin-bottom: 6px;
}

.contactform textarea {
    max-height: 100px;
    margin-bottom: 20px;
}

/* Footer Styles */
.site-info {
    padding: 0;
    text-align: center;
}

#colophon {
    padding: 13px;
}

.site-footer {
    background-color: var(--primary-color);
    color: #f7f7f7;
}

.site-footer .site-info {
    font-size: 20px;
    font-family: var(--font-primary) !important;
}

footer {
    border-top: 1px solid #aaa;
}

/* Logo and Branding */
.site-header .site-branding img {
    height: auto;
    max-width: 80px !important;
    max-height: none;
}

.site-branding {
    text-align: center;
    margin-bottom: 0;
    max-width: 80px !important;
}

.site-branding a {
    width: 80px !important;
    margin: auto;
    margin-bottom: auto;
}

.site-header .site-logo-anchor img, 
.site-header .site-logo-link img, 
.site-header .custom-logo-link img {
    width: 100%;
    max-width: 80px !important;
}

/* Navigation Styles */
.customlogonv {
    float: left;
    width: 10%;
}

.primarynav {
    float: left;
    width: 70%;
    text-align: center;
}

#site-header-cart {
    width: 20%;
}

#site-navigation {
    width: 100%;
}

.customlogonv .custom-logo-link {
    margin-top: -0px;
}

.storefront-primary-navigation {
    padding: 5px 0 15px;
}

.main-navigation ul.menu > li > a, 
.main-navigation ul.nav-menu > li > a {
    padding: 0.618em 1em;
}

#menu-main_menu li a {
    font-family: var(--font-primary) !important;
    font-size: 16px;
    font-weight: 500;
}

/* Search Styles */
.site-search {
    display: none;
}

.serachboxh .site-search {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 3px 0;
}

.serachboxh {
    width: 20%;
    float: left;
    text-align: center;
    margin-top: 10px;
}

/* Product Styles */
.productimage {
    margin-top: 35px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 35px;
}

.productimage .wp-block-columns {
    margin: 0;
}

.productimage .wp-block-column {
    margin-bottom: 0 !important;
}

.productimage .homefeatured {
    margin-bottom: 0;
}

.productgalley {
    margin-top: 40px;
}

.productgalley h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 35px;
}

/* Gallery Styles */
.homegallery {
    padding: 0 !important;
}

.homegallery li {
    margin-bottom: 20px !important;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* Media Styles */
embed, iframe, object, video {
    max-width: 100%;
    width: 100%;
    min-height: 500px;
}

/* Type of Feet Styles */
.typeoffeet .wp-block-column {
    border: 0px solid #ddd;
}

.typeoffeet h2 {
    padding: 0 10px;
    margin-bottom: 5px;
}

.typeoffeet .wp-block-image {
    margin-bottom: 5px !important;
}

.typeoffeet p {
    padding: 0 15px;
    text-align: justify;
}

.grouptypefoot {
    padding: 40px 10% !important;
}

.typefoorhead {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 35px;
}

/* BioAlign Help Styles */
.bioalignhelphtag {
    margin-left: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.bioalignhelp ul li {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.5;
    list-style: circle;
}

/* Breadcrumb Styles */
.storefront-breadcrumb {
    margin-bottom: 10px;
    background: #ddd;
    border-bottom: 1px solid #444;
}

/* Entry Header Styles */
.entry-header {
    text-align: center;
    position: relative;
    border-bottom: 1px solid #ddd !important;
    margin-bottom: 20px !important;
}

.entry-header .entry-title {
    margin-bottom: 0;
}

.post-1411 .entry-header {
    display: none !important;
}

/* Contact Form Map Styles */
.contactformmap .wp-block-column.contactform {
    border: 1px solid #ddd;
    padding: 15px 20px !important;
    border-radius: 10px;
}

.contactformmap .wp-block-column iframe {
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-top: 25px;
}

/* Content Area Styles */
.site-main {
    margin-bottom: 0;
}

.content-area {
    margin-bottom: 0;
}

/* Widget Styles */
.widget_recent_entries ul li a {
    width: 100%;
    float: left;
}

.widget_recent_entries ul li {
    padding-bottom: 10px;
}

/* Utility Classes */
.displaynone {
    display: none;
}

.price {
    display: none;
}

/* Banner Styles */
.sa_hover_container {
    padding: 0% !important;
    background-size: 100% 100% !important;
}

.overlawdiv {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.3);
}

.overlawdiv .bannertext {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
}

/* Error Page Styles */
.error-404.not-found section {
    display: none !important;
}

.error-404.not-found .fourohfour-columns-2 {
    display: none !important;
}

.error-404.not-found {
    min-height: 500px;
}

/* Typography Styles */
p {
    text-transform: capitalize;
    font-size: 18px;
}

/* Link Styles */
.linkbtnHome {
    display: none;
}

a:focus {
    outline-color: #0000;
}

/* Misc Styles */
.bottomupDiv {
    margin-top: -25px !important;
}

.card-partners {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    margin: 15px 30px;
    background: linear-gradient(180deg, #C6D9E16E 0%, #FFFFFF 100%);
}

/* Contact Form 7 Styling */
.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #333;
    text-align: left;
    font-family: var(--font-primary) !important;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    margin-bottom: 18px;
    font-family: var(--font-primary) !important;
}

.wpcf7-form textarea {
    min-height: 80px;
    resize: vertical;
    height: 90px;
}

/* Focus Effect */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 118, 183, 0.15);
}

/* Submit Button */
.wpcf7-form .cf7-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 12px 26px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary) !important;
}

.wpcf7-form .cf7-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(56, 118, 183, 0.35);
}

/* Validation Errors */
.wpcf7-not-valid {
    border-color: #ff4d4f;
}

.wpcf7-response-output {
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
}

.wpcf7-form p {
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

/* Responsive Design */
@media only screen and (max-width: 850px) {
    .serachboxh { 
        display: none;
    }
    .primarynav {
        width: 50%;
    }
    .customlogonv {
        width: 50%;
    }
    .bannertext h1 {
        font-size: 40px !important;
    }
    .bannertext a {
        font-size: 20px !important;
    }
    .bannertext h3 {
        margin-top: 25px !important;
    }
}

@media only screen and (max-width: 600px) {
    .bannertext h1 {
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }
    .bannertext a {
        font-size: 15px !important;
    }
    .bannertext h3 {
        margin-top: 10px !important;
    }
    .overlawdiv .bannertext {
        bottom: 20px !important;
    }
}

@media only screen and (max-width: 400px) {
    .bannertext h1 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    .bannertext a {
        font-size: 11px !important;
    }
    .bannertext h3 {
        margin-top: 5px !important;
        margin-bottom: 0;
    }
    .overlawdiv .bannertext {
        bottom: 20px !important;
    }
}