/*
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.5
Tested up to: 6.9
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-blue: #005691;
    --secondary-teal: #00a896;
    --gradient-main: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    --text-color-light: #f8f9fa;
    --text-color-dark: #212529;
    --background-light: #ffffff;
    --background-accent: #f0f0f0;
    --light-bg : #F2F7FA;
    --base-font-size: 1.1rem;
    --heading-font-size: 44px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-light);
    color: var(--text-color-dark);
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.heading-meta {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
    color: var(--secondary-teal);
}

.site-header {
    background-color: var(--background-light);
    color: var(--text-color-light);
}
.site-header .contact-details-header {
    color: var(--text-color-dark);
    font-size: 14px;
}
.site-header .text-accent-teal {
   font-weight: 600;
   font-size: 16px;
}

.site-header .header-top {
    display: flex;
}

.site-header .header-top a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color 0.3s;
}

.site-header img.header-logo {
    width: 40%;
}

.site-header .btn-square {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 0.5rem;
    background-color: var(--secondary-teal);
    color: var(--text-color-dark);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.site-header .nav-bar .navbar {
    background: var(--gradient-main);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.site-header .navbar .nav-link,
.site-header .navbar-brand {
    color: var(--text-color-light) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: var(--base-font-size);
}

.site-header .navbar .nav-link:hover,
.site-header .navbar .nav-link.active {
    color: var(--secondary-teal) !important;
}

.site-header .navbar .social-icons a {
    color: var(--background-light);
    font-size: 1.25rem;
}

.site-header .navbar .social-icons a:hover {
    color: var(--background-light);
}

.site-header .nav-bar .inner-nav,.site-header .header-logo-side  {
padding: 0 90px;
transition: all 0.3s ease;
width: 100%;
}

.site-header .nav-bar.navbar-scrolled {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}
.site-header .nav-bar.navbar-scrolled .inner-nav {
padding: 0;
}

.hero-video-section {
    position: relative;
    height: 80vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
    text-align: center;
}

.hero-video-section .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-section .video-container video,
.hero-video-section .video-container img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 25%);
    z-index: 2;
}

.hero-video-section .hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
}

.hero-video-section .hero-content h1 {
    font-size: 4rem;
    color: var(--text-color-light);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    background-image: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    font-weight: 600;
}

.hero-video-section .hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
        font-style: normal;
    font-size: var(--heading-font-size);
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    background-image: var(--gradient-main);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.highlight-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: inherit;
    font-size: inherit;
    background-image: none;
    color: var(--secondary-teal);
    -webkit-background-clip: unset;
    background-clip: unset;
    /* text-shadow: 0 0 2px var(--secondary-teal); */
    padding: 0 4px;
    /* border-bottom: 2px solid var(--primary-blue); */
}

p,
a,
li,
span,
button,
input,
textarea,
select {
    font-size: var(--base-font-size);
}

a {
    color: var(--secondary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

.color-display {
    height: 30px;
    width: 50%;
    display: inline-block;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-right: 1rem;
}


.text-accent-teal {
    color: var(--secondary-teal) !important;
}

/* about us section */
 #about-us {
    background-color: #fff;
}

#about-us .section-title {
    margin-top: 0;
}

#about-us .mission-heading {
    font-size: 1.75rem;
    margin-top: 2rem;
}

#about-us .mission-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

#about-us .cta-box {
    background-color: var(--secondary-teal, #d1f3f0);
    color: var(--text-color-dark, #003638);
    transition: all 0.3s ease-in-out;
}

#about-us .cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#about-us .cta-text {
    font-family: "Outfit", sans-serif;
    font-size: 1.3rem;
    color: #003638;
}

#about-us .btn-partner {
    background-color: var(--primary-blue, #005691);
    border-color: var(--primary-blue, #005691);
    color: var(--text-color-light, #fff);
}

#about-us .btn-partner:hover {
    background-color: #003d6e;
    border-color: #003d6e;
}

#about-us .about-image-wrap img {
    border-radius: 12px;
    object-fit: cover;
}

/* Feature card */
section.features-section .feature-card {
    padding: 30px;
    border-radius: 15px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section.features-section .title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

section.features-section .card-icon {
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

section.features-section .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color-light);
}

section.features-section .card-text {
    font-size: 1rem;
    opacity: 0.85;
    color: var(--text-color-dark);
}

section.features-section .dark-card {
    background-color: var(--text-color-dark);
    color: var(--text-color-light);
}

section.features-section .dark-card .card-text {
    color: var(--text-color-light);
    opacity: 0.9;
}
section.features-section .dark-card .card-title {
    color: var(--text-color-light);
}

section.features-section .primary-card {
    background-color: var(--primary-blue);
    color: var(--text-color-light);
}

section.features-section .primary-card .card-icon {
    background: var(--text-color-dark);
    color: var(--background-light);
}

section.features-section .primary-card .card-text {
    opacity: 0.85;
    color: var(--text-color-light);
}

section.features-section .feature-card.dark-card .card-icon {
    background: var(--primary-blue);
    color: var(--background-light);
}

section.features-section .highlight-card {
    background: var(--secondary-teal);
    color: var(--text-color-light);
}

section.features-section .highlight-card .card-icon {
    color: var(--text-color-light);
    background: var(--primary-blue);
}

section.features-section .highlight-card .card-text {
    color: var(--text-color-light);
}

section.features-section .dark-highlight-card {
    background-color: var(--primary-blue);
    color: var(--text-color-light);
}

section.features-section .dark-highlight-card .card-icon {
    background: var(--secondary-teal);
    color: var(--background-light);
}

section.features-section .dark-highlight-card .card-text {
    color: var(--text-color-light);
}

@media (max-width: 767px) {
    section.features-section .feature-card {
        min-height: 180px;
        padding: 20px;
    }

    section.features-section .card-title {
        font-size: 1.25rem;
    }

    section.features-section .card-text {
        font-size: 0.9rem;
    }

    section.features-section .title-wrapper {
        margin-bottom: 15px;
    }

    section.features-section .card-icon {
        font-size: 16px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 10px;
    }
}

/* Our prodcut section csss */

 .service-section-area {
    background-color: var(--light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.service-section-area .service-card {
    background-color: var(--background-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-section-area .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.service-section-area .service-card .card-img-top {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    transition: transform 0.5s;
}

.service-section-area .service-card:hover .card-img-top {
    transform: scale(1.03);
}

.service-section-area .service-card-body {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    flex-grow: 1;
    padding-top: 4rem;
}

.service-section-area .service-icon-wrap {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: var(--background-light);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-teal);
    transition: color 0.3s;
}

.service-section-area .service-card:hover .service-icon-wrap {
    color: var(--primary-blue);
}

.service-section-area .service-card .card-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 0;
    transition: color 0.3s;
    line-height: 1.2;
}

.service-section-area .service-card:hover .card-title {
    color: var(--secondary-teal);
}

.service-section-area .owl-stage-outer {
    padding: 20px 0 45px 0;
}

.service-section-area .vl-btn1 {
    background-color: var(--secondary-teal);
    color: var(--light-bg);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

.service-section-area .vl-btn1:hover {
    background-color: var(--primary-blue);
    color: var(--text-color-light);
}

.service-section-area .owl-theme .owl-nav [class*='owl-'] {
    background-color: var(--primary-blue) !important;
    color: var(--light-bg) !important;
    border: none !important;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    margin: 0 5px;
    transition: background-color 0.3s;
    font-size: 1rem !important;
}

.service-section-area .owl-theme .owl-nav [class*='owl-']:hover {
    background-color: var(--secondary-teal) !important;
    color: var(--text-color-light);
}

.service-section-area .owl-theme .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -6rem;
}


@media (max-width:767px){
    .site-header .nav-bar .inner-nav, .site-header .header-logo-side {
    padding: 0 10px;
}
.hero-video-section .hero-content h1 {
    font-size: 42px;
}
.hero-video-section .hero-content p {
    font-size: 18px;
}
.service-section-area .owl-theme .owl-nav {
    top: 68px;
    left: 40%;
    right: unset;
}
}

 /* --- WHY SCINEX BIOTECH SECTION STYLES --- */
    .why-scinex-section {
        background-color: var(--background-light);
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .why-scinex-section .scinex-bullet-list {
        list-style: none;
        padding-left: 0;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .why-scinex-section .scinex-bullet-list li {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
    }

    .why-scinex-section .scinex-bullet-list i {
        color: var(--secondary-teal);
        font-size: 1.25rem;
        margin-right: 10px;
    }

    .why-scinex-section .learn-more-btn {
        background-color: var(--primary-blue);
        color: var(--text-color-light);
        font-weight: 600;
        padding: 0.75rem 2rem;
        border-radius: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: background-color 0.3s;
        display: inline-flex;
        align-items: center;
    }

    .why-scinex-section .learn-more-btn:hover {
        background-color: var(--secondary-teal);
        color: var(--text-color-light);
    }

    .why-scinex-section .scinex-grid-container {
        border: 1px solid var(--background-accent);
    }

    .why-scinex-section .scinex-grid-card {
        padding: 2.5rem;
        position: relative;
        background-color: var(--background-light);
    }

    .why-scinex-section .scinex-grid-card h5 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-color-dark);
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .why-scinex-section .scinex-grid-card p {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: var(--text-color-dark);
    }

    .why-scinex-section .scinex-grid-card a {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-blue);
        display: inline-flex;
        align-items: center;
        transition: color 0.3s;
    }

    .why-scinex-section .scinex-grid-card a:hover {
        color: var(--secondary-teal);
    }

    .why-scinex-section .row-border-bottom {
        border-bottom: 1px solid var(--background-accent);
    }

    .why-scinex-section .col-border-right {
        border-right: 1px solid var(--background-accent);
    }

    .why-scinex-section .scinex-icon-box {
        position: absolute;
        top: 2.5rem;
        left: 2.5rem;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: var(--light-bg);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-scinex-section .scinex-icon-box.blue {
        background-color: var(--background-accent);
    }

    .why-scinex-section .scinex-grid-card-content {
        padding-left: 55px;
    }

    .why-scinex-section .scinex-video-wrapper {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .why-scinex-section .scinex-video-wrapper video,
    .why-scinex-section .scinex-video-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

     /* Core Features Section Styles (Using existing root colors) */
    .feature-section {
        background-color: var(--light-bg);
        padding-top: 4rem;
        padding-bottom: 5rem;
    }

    .feature-section .feature-image-col {
        position: relative;
        padding-right: 2rem;
    }

    .feature-section .feature-image-container {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-section .feature-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .feature-section .image-cta-box {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background-color: var(--secondary-teal);
        color: var(--text-color-light);
        padding: 1.5rem 2rem;
        border-radius: 0.75rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .feature-section .image-cta-box span {
        font-size: 1.25rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .feature-section .image-cta-box a {
        color: var(--text-color-light);
        font-size: 1rem;
        font-weight: 700;
        transition: color 0.3s;
    }

    .feature-section .image-cta-box a:hover {
        color: var(--primary-blue);
    }

    .feature-section .feature-item-list {
        list-style: none;
        padding-left: 0;
    }

    .feature-section .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .feature-section .feature-icon-box {
        flex-shrink: 0;
        width: 55px;
        height: 55px;
        border-radius: 0.5rem;
        background-color: var(--secondary-teal);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 168, 150, 0.3);
    }

    .feature-section .feature-icon-box i {
        font-size: 1.75rem;
        color: var(--text-color-light);
    }

    .feature-section .feature-details h4 {
        font-size: 1.3rem;
        font-weight: 500;
        color: var(--text-color-dark);
        margin-top: 0;
        margin-bottom: 0.25rem;
    }

    .feature-section .feature-details p {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 0;
    }
    @media(max-width:767px){
        .feature-section {
    padding: 40px 0;
}
        .feature-section .image-cta-box {
    position: relative;
    top: 0;
    right: 0;
    border-radius: 0;
}
    }

    /* Breakthrough Section Css */
    .breakthrough-section {
        padding: 40px 0;
    }

    .breakthrough-section.event-meta {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
        display: inline-block;
        color: var(--secondary-teal);
        background-color: rgba(0, 168, 150, 0.1);
        padding: 4px 10px;
        border-radius: 4px;
    }

    .breakthrough-section .breakthrough-heading {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--text-color-dark);
        margin-top: 0.5rem;
        margin-bottom: 3rem;
        line-height: 1.2;
    }

    .breakthrough-section .highlight-card-large {
        position: relative;
        background-color: var(--background-light);
        border-radius: 1.5rem;
        overflow: hidden;
        height: 100%;
        min-height: 450px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        color: var(--text-color-light);
    }

    .breakthrough-section .highlight-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        filter: brightness(0.7);
    }

    .breakthrough-section .highlight-card-content {
        position: relative;
        z-index: 2;
        padding: 2.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    }

    .breakthrough-section .meta-tag {
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.2);
        color: var(--text-color-light);
        font-size: 0.85rem;
        padding: 5px 10px;
        border-radius: 20px;
        margin-right: 5px;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .breakthrough-section .cta-dark-box {
        background-color: var(--primary-blue);
        color: var(--text-color-light);
        padding: 3rem;
        border-radius: 1.5rem;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .breakthrough-section .cta-dark-box h4,
    .breakthrough-section .highlight-card-small h4 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-color-light);
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .breakthrough-section .cta-dark-btn {
        background-color: var(--secondary-teal);
        color: var(--text-color-light);
        font-weight: 700;
        padding: 0.75rem 2rem;
        border-radius: 0.5rem;
        transition: background-color 0.3s;
        display: inline-flex;
        align-items: center;
    }

    .breakthrough-section .cta-dark-btn:hover {
        background-color: var(--primary-blue);
        color: var(--text-color-light);
    }

    .breakthrough-section .highlight-card-small {
        position: relative;
        background-color: var(--secondary-teal);
        color: var(--text-color-light);
        border-radius: 1.5rem;
        overflow: hidden;
        min-height: 200px;
        padding: 2.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        margin-top: 1.5rem;
    }

    .breakthrough-section .small-card-btn {
        color: var(--primary-blue);
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        font-size: 1rem;
        margin-top: 1rem;
    }

    .breakthrough-section .small-card-btn:hover {
        color: var(--text-color-dark);
    }

    @media (min-width: 992px) {
        .breakthrough-section .breakthrough-grid-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }

        .breakthrough-section .grid-right-column {
            display: flex;
            flex-direction: column;
        }
    }

    /* Contact Section Css */
    .contact-section {
        padding: 40px 0;
    }

.contact-section .contact-section-inner {
    background: url('assets/images/contact-bg.avif');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0f2c4d;
    margin: 10px;
    padding: 80px 0;
    color: var(--text-color-light);
    border-radius: 12px;
}
.container-fluid {
    max-width: 100% !important;
    padding: 0 0 0 0 !important;
}
.container {
    max-width: 90% !important;
}
    .contact-section .contact-form .form-label {
        color: var(--secondary-teal);
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .contact-section .contact-form .form-control {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-color-light);
        border-radius: 8px;
        padding: 15px 20px;
        font-size: 1rem;
        transition: var(--transition-4s);
    }

    .contact-section .contact-form .form-control:focus {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 0.25rem rgba(0, 86, 145, 0.3);
        color: var(--text-color-light);
    }

    .contact-section .contact-form textarea.form-control {
        min-height: 150px;
        resize: none;
    }

    .contact-section .testimonial-card {
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 50px;
        padding-bottom: 0;
        height: 100%;
        overflow: hidden;
    }

    .contact-section .testimonial-card h3 {
        color: var(--text-color-light);
        font-size: 32px;
    }

    .contact-section .testimonial-card .highlight {
        color: var(--secondary-teal);
    }

    .contact-section .testimonial-quote-icon {
        color: var(--secondary-teal);
        font-size: 92px;
        font-weight: 900;
        line-height: 1;
        font-family: serif;
    }

    .contact-section .testimonial-text {
        font-size: 20px;
        line-height: 1.5;
    }

    .contact-section .author-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 2;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-section .author-details img {
        width: 50px !important;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
    }
input.wpcf7-form-control.wpcf7-submit.has-spinner.send-message-btn {
    background: #000;
    padding: 10px;
    color: #fff;
}
    .contact-section .author-details h5 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-color-light);
        margin: 0;
    }

    .contact-section .author-details p {
        font-size: 0.85rem;
        color: var(--secondary-teal);
        margin: 0;
        line-height: 1.2;
    }
.mobile-form {
    display: none;
}
	section.hero-video-section {
    display: block;
}
section#mobile-banner {
    display: none ;
}
    .contact-section .testimonial-nav {
        display: flex;
        gap: 10px;
    }

    .contact-section .testimonial-nav button {
        width: 38px;
        height: 38px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: transparent;
        color: var(--text-color-light);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: var(--transition-4s);
        cursor: pointer;
    }

    .contact-section .testimonial-nav button:hover {
        background-color: var(--primary-blue);
        border-color: var(--primary-blue);
        color: var(--text-color-light);
    }

    .contact-section .contact-label {
        font-size: 1rem;
        font-weight: 600;
        color: var(--secondary-teal);
        margin-bottom: 0.5rem;
        display: block;
    }

    .contact-section .form-control-custom {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--text-color-light);
        padding: 1rem 1.25rem;
        border-radius: 0.75rem;
        transition: border-color 0.3s, background-color 0.3s;
        line-height: 1.5;
        font-size: var(--base-font-size);
    }

    .contact-section .form-control-custom:focus {
        background-color: rgba(255, 255, 255, 0.2);
        border-color: var(--secondary-teal);
        box-shadow: 0 0 0 0.25rem rgba(0, 168, 150, 0.25);
        color: var(--text-color-light);
    }

    .contact-section .form-control-custom::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    @media (max-width: 767.98px) {
		section.hero-video-section {
    display: none !important;
}
section#mobile-banner {
    display: inline-block !important;
}
		.mobile-form {
    background: #c9f7fd;
    padding: 39px 10px;
    display: inline-block !important;
}
        .contact-section .contact-form-card {
            padding: 2rem 1.5rem;
        }
		.col-lg-5.mb-5.mb-lg-0 {
    order: 2 !important;
    margin: 40px 0 0 0 !important;
}
		.highlight-card-large p {
    display: none !important;
}
.container {
    max-width: 100% !important;
}

        .contact-section .contact-form-section .row>div {
            margin-bottom: 1.5rem;
        }
    }

    .contact-section .send-message-btn {
        background-color: var(--secondary-teal);
        color: var(--text-color-light);
        font-weight: 700;
        padding: 1rem 3rem;
        border-radius: 0.75rem;
        transition: background-color 0.3s, transform 0.1s;
        border: none;
        font-size: var(--base-font-size);
        box-shadow: 0 5px 15px rgba(0, 168, 150, 0.4);
    }

    .contact-section .send-message-btn:hover {
        background-color: var(--primary-blue);
        transform: translateY(-2px);
    }

    @media (max-width: 991.98px) {
        .contact-section {
            padding: 30px 0;
        }

        .contact-section .row {
            padding: 0;
        }

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

        .contact-section .testimonial-card {
            padding: 30px;
        }

        .contact-section .testimonial-quote-icon {
            font-size: 6rem;
            margin-bottom: 10px;
        }

        .contact-section .contact-section-inner {
            padding: 40px 0;
        }
    }

    /* --- BLOG SECTION STYLES --- */
    .blog-section {
        padding: 40px 0;
        background-color: var(--background-light);
    }

    .blog-section .section-title {
        font-weight: 600;
        text-align: center;
        margin-bottom: 50px;
    }

    .blog-section .blog-card {
        border-radius: 12px;
        background-color: var(--light-bg);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .blog-section .blog-card>a {
        color: inherit;
        text-decoration: none;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .blog-section .featured-blog {
        height: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .blog-section .featured-blog .blog-img-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        aspect-ratio: 16/9;
    }

    .blog-section .featured-blog img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-section .featured-blog:hover img {
        transform: scale(1.05);
    }

    .blog-section .featured-blog .blog-date-overlay .day {
        font-size: 32px;
        font-weight: 700;
    }

    .blog-section .featured-blog .blog-content {
        padding: 25px 15px 0;
    }

    .blog-section .featured-blog h4 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.3;
        color: var(--text-color-dark);
    }

    .blog-section .featured-blog p.blog-description {
        font-size: 1rem;
        color: var(--text-color-dark);
        margin-bottom: 20px;
    }

    .blog-section .sidebar-blog-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
        height: 100%;
    }

    .blog-section .sidebar-blog-card {
        display: flex;
        padding: 20px;
        background-color: var(--light-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        flex: 1 1 auto;
    }

    .blog-section .sidebar-blog-card a {
        display: flex;
        width: 100%;
    }

    .blog-section .sidebar-blog-card .blog-img-wrapper {
        position: relative;
        flex-shrink: 0;
        width: 250px;
        border-radius: 12px;
        height: 100%;
        overflow: hidden;
    }

    .blog-section .sidebar-blog-card .blog-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-section .sidebar-blog-card:hover img {
        transform: scale(1.1);
    }

    .blog-section .featured-blog .blog-date-overlay,
    .blog-section .sidebar-blog-card .blog-date-overlay {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background-color: rgba(255, 255, 255, 0.25);
        color: var(--text-color-light);
        padding: 10px 8px;
        border-radius: 8px;
        text-align: center;
        line-height: 1;
        z-index: 10;
    }

    .blog-section .sidebar-blog-card .blog-date-overlay .day {
        font-size: 1.2rem;
        font-weight: 700;
        display: block;
    }

    .blog-section .sidebar-blog-card .blog-date-overlay .month {
        font-size: 0.7rem;
        display: block;
    }

    .blog-section .featured-blog .blog-date-overlay {
        bottom: 20px;
        right: 20px;
        padding: 15px 12px;
        border-radius: 10px;
    }

    .blog-section .featured-blog .blog-date-overlay .month {
        font-size: 0.9rem;
    }

    .blog-section .sidebar-blog-card .blog-content {
        padding: 20px;
        flex-grow: 1;
    }

    .blog-section .sidebar-blog-card h5 {
        font-size: 26px;
        font-weight: 500;
        margin-bottom: 28px;
        line-height: 1.3;
        color: var(--text-color-dark);
    }

    @media (max-width: 1199.98px) {
        .blog-section .sidebar-blog-card .blog-img-wrapper {
            width: 100%;
            height: 100%;
        }
    }

    @media (max-width: 991.98px) {
        .blog-section {
            padding: 30px 0;
        }

        .blog-section .sidebar-blog-card {
            display: block;
        }

        .blog-section .featured-blog .blog-img-wrapper {
            aspect-ratio: 4/3;
        }

        .blog-section .sidebar-blog-wrapper {
            gap: 15px;
        }
    }

    @media (max-width: 575.98px) {
        .blog-section .featured-blog h4 {
            font-size: 1.3rem;
        }

        .blog-section .sidebar-blog-card .blog-img-wrapper {
            width: 100%;
            height: 100%;
        }

        .blog-section .sidebar-blog-card .blog-content {
            padding: 15px;
        }
    }


/* Footer Changes */
     .main-footer {
         background: url('assets/images/footer-bg-scinex.avif');
         background-size: cover;
         background-repeat: no-repeat;
         background-color: var(--text-color-dark);
         color: var(--background-light);
         padding-top: 80px;
         width: 100%;
         margin-top: auto;
     }

     .main-footer .footer-heading-lg {
         font-family: var(--heading-font);
         color: var(--background-light);
         font-weight: 600;
         font-size: 24px;
         margin-bottom: 25px;
         display: block;
     }

     .main-footer .footer-logo-section p {
         color: var(--text-color-light);
     }

     .main-footer .footer-social-links a {
         display: inline-flex;
         width: 40px;
         height: 40px;
         justify-content: center;
         align-items: center;
         border-radius: 50%;
         background-color: rgba(255, 255, 255, 0.08);
         color: var(--background-light);
         margin-right: 10px;
         transition: 0.4s;
     }

     .main-footer .footer-social-links a:hover {
         background-color: var(--primary-blue);
         color: var(--background-accent);
     }

     .main-footer .footer-links ul,
     .main-footer .footer-products ul {
         list-style: none;
         padding: 0;
         margin: 0;
     }

     .main-footer .footer-links li,
     .main-footer .footer-products li {
         margin-bottom: 12px;
     }

     .main-footer .footer-links a,
     .main-footer .footer-products a {
         color: var(--text-color-light);
         font-size: 0.95rem;
         transition: 0.4s;
         display: inline-block;
     }

     .main-footer .footer-links a:hover,
     .main-footer .footer-products a:hover {
         color: var(--primary-blue);
         transform: translateX(5px);
     }

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

     .main-footer .contact-info-block {
         padding: 5px 0;
         border-top: 1px solid rgba(255, 255, 255, 0.05);
     }

     .main-footer .contact-inner {
         display: flex;
         align-items: center;
         margin-bottom: 5px;
     }

     .main-footer .contact-item i {
         width: 24px;
         height: 24px;
         color: var(--background-light);
         flex-shrink: 0;
         margin-right: 0;
         margin-top: 4px;
     }

     .main-footer .contact-item-title {
         font-size: 15px;
         font-weight: 500;
         color: var(--background-light);
         margin-bottom: 4px;
         font-family: var(--text-font);
         display: block;
     }

     .main-footer .contact-item p {
         font-size: 18px;
         font-weight: 500;
         color: var(--background-light);
         margin-bottom: 0;
         line-height: 1.3;
     }

     .main-footer .footer-copyright {
         font-size: 15px;
         color: var(--text-color-light);
     }

     .main-footer .footer-copyright a {
         color: var(--text-color-light);
         transition: 0.4s;
     }

     .main-footer .footer-copyright a:hover {
         color: var(--primary-blue);
     }

     .main-footer .footer-logo {
         width: 240px;
         height: auto;
         margin-bottom: 15px;
     }

     @media (max-width: 991.98px) {
         .main-footer {
             padding: 60px 0 30px;
         }

         .main-footer .footer-logo-section {
             margin-bottom: 40px;
         }

         .main-footer .footer-links,
         .main-footer .footer-products {
             margin-bottom: 40px;
         }

         .main-footer .contact-info-block {
             padding: 10px 0;
         }

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



      /* Mobile quick menu */
     #sequence {
         width: 100%;
         float: left;
         background: var(--gradient-main);
         position: fixed;
         bottom: 0;
         z-index: 100;
         padding: 0;
         color: var(--background-light) !important;
         margin: 0 !important;
     }

     #sequence a {
         width: 33.3333%;
         float: left;
         text-align: center;
         padding: 8px 0;
         font-size: 15px;
         color: var(--background-light) !important;
         font-weight: 600;
         text-decoration: none !important;
         border-right: 1px solid var(--background-light);
     }

     /* Media min acreen 767px and max 1399px */

@media (min-width: 767px) and (max-width: 1399px) {
    .site-header img.header-logo {
    width: 45%;
}
    .site-header .text-accent-teal {
    font-size: 14px;
}
    .site-header .contact-details-header {
    font-size: 12px;
}
.site-header .btn-square {
    width: 40px;
    height: 40px;
}
p, a, li, span, button, input, textarea, select {
    font-size: 14px;
}
#about-us .mission-list li {
    font-size: 14px;
}
}