/*
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.7
Tested up to: 7.1
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-color: #f9080c;
    --primary-dark: #001b38;
    --secondary-color: #001b38;
    --secondary-dark: #e86421;
    --accent-color: #f4f7e9;

    --dark-color: #20251a;
    --text-color: #5f635a;
    --light-color: #ffffff;
    --border-color: #e7e9df;
    --gradient-color: linear-gradient(90deg, #03163f, #323093);
    --btn-bg: linear-gradient(90deg, #ed1c28, #e50910);

    --heading-font: "TikTok Sans", sans-serif;
    --body-font: "TikTok Sans", sans-serif;

    --transition: all 0.3s ease;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 50px;
    --radius-pill: 50px;

    --container-width: 1320px;
    --section-padding: 70px 0;
	--responsive-padding:40px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background: var(--light-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--primary-dark);
    font-weight: 700;
}

p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
}

/* Global-section-title css */

.section-title {
    color: var(--primary-dark);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

/* .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 12px;
} */
/* 
.sub-title::before {
    content: "";
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-pill);
} */

img.img-fluid.novalab-img {
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 38px;
    }
}

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

    .sub-title {
        font-size: 13px;
    }
}
.about-us{
	padding:var(--section-padding);
}
.pharma-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--light-color);
    overflow: hidden;
}

.pharma-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(249, 8, 12, 0.04);
    border-radius: 50%;
    top: -180px;
    left: -180px;
}

.pharma-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 27, 56, 0.04);
    border-radius: 50%;
    right: -140px;
    bottom: -140px;
}

.pharma-content {
    position: relative;
    z-index: 2;
    padding-right: 35px;
}

.section-title {
    position: relative;
    color: var(--primary-dark);
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 35px;
}

.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin-top: 9px;
    background: var(--btn-bg);
    border-radius: var(--radius-pill);
}

.pharma-content p {
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.pharma-image {
    position: relative;
    z-index: 2;
    padding: 15px;
}

.pharma-image::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    right: 0;
    top: 5%;
    background: var(--accent-color);
    border-radius: 30px;
    z-index: -1;
}

.pharma-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: var(--transition);
}

.pharma-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 27, 56, 0.12);
}

@media (max-width: 991px) {

    .pharma-section {
        padding: 60px 0;
    }

    .pharma-content {
        padding-right: 0;
        margin-bottom: 35px;
    }

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

    .pharma-image {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {

    .pharma-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .pharma-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .pharma-image img {
        height: 380px;
        border-radius: 16px;
    }
}

@media (max-width: 575px) {

    .section-title {
        font-size: 30px;
    }

    .pharma-image img {
        height: 300px;
    }
}
/* Menu-section */

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    line-height: 40px;
    height: 40px;
    padding: 0px 20px;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: #060606 !important;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600 !important;
    outline: none;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background-color: transparent;
    color: #ed1c28 !important;
    font-weight: normal;
    text-decoration: none;
    border-color: white;
}

/* TOP BAR */
.topbar {
    background: var(--gradient-color);
    color: #fff;
    padding: 7px 0;
    font-size: 15px;
}
    .topbar a{
      color:#fff;
      text-decoration:none;
      font-weight:500;
    }

    .topbar .icon-box{
      width:28px;
      height:28px;
      background:#fff;
      color:var(--primary-color);
      border-radius:4px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:14px;
      margin-right:10px;
    }

    .top-contact{
      gap:25px;
    }

    /* HEADER */
    .main-header{
      background:#fff;
      box-shadow:0 2px 10px rgba(0,0,0,0.05);
    }

    .navbar-nav .nav-link{
      color:#222;
      font-size:18px;
      font-weight:500;
      margin:0 16px;
      transition:0.3s;
    }

    .navbar-nav .nav-link:hover{
      color:#0ea5a8;
    }

    /* BUTTON */
  a.main-btn {
    background: var(--btn-bg);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
    a.main-btn:hover{
      color:#fff;
      transform:translateY(-2px);
    }

    /* SEARCH BUTTON */
   .search-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #0ea5a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #04757e;
    text-decoration: none;
    transition: 0.3s;
}

    .search-btn:hover{
      background:#0ea5a8;
      color:#fff;
    }

    /* LOGO */
    .logo img{
      width:95%;
    }

    @media(max-width:991px){

      .topbar{
        text-align:center;
      }

      .topbar .row{
        gap:10px;
      }

      .navbar-nav{
        padding-top:20px;
      }

      .navbar-nav .nav-link{
        margin:10px 0;
      }

      .header-actions{
        margin-top:20px;
      }

      .quote-btn{
        padding:14px 28px;
        font-size:16px;
      }

      .search-btn{
        width:60px;
        height:60px;
        font-size:24px;
      }
    }

/* Footer-section */
.footer-section {
  background: #03163f;
  padding: 80px 0 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
iframe {
    border-radius: 10px;
    margin-top: 18px;
}
.footer-text {
  color: #cfd7e6;
  line-height: 1.8;
  max-width: 320px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #d7dcec;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background:#f9080c;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 18px;
}
.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #d5dcec;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ea1620;
  padding-left: 5px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #13b8b1;
  transform: translateY(-3px);
}
.newsletter-box {
  background: #0d8d93;
  padding: 30px;
  border-radius: 10px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  outline: none;
}

.newsletter-form button {
  border: none;
  background: #03163f;
  color: white;
  padding: 0 25px;
  border-radius: 6px;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #02112d;
}


.certificates img {
  width: 90px;
  margin: 10px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
  text-decoration: none;
  color: #d5dcec;
}

.footer-bottom p {
  color: #d5dcec;
}
footer.footer-section h5 {
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    height: 55px;
  }
}


/* Pharma-cta */
.pharma-cta {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-image: url("https://limegreen-octopus-460283.hostingersite.com/site/wordpress/wp-content/uploads/2026/08/1.webp");
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.pharma-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 27, 56, 0.97),
        rgba(0, 46, 105, 0.91),
        rgba(0, 27, 56, 0.82)
    );
    z-index: -1;
}

.pharma-cta::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -100px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(249, 8, 12, 0.20);
    z-index: -1;
}

.pharma-cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pharma-cta .section-title {
    color: var(--light-color);
    font-size: 48px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 90px;
}
.pharma-cta .section-title::after {
    display: none;
}
.pharma-cta-content a.main-btn {
    margin-bottom: 90px;
}
.cta-line {
    position: relative;
    width: 75px;
    height: 3px;
    margin: 0 auto 17px;
    background: var(--primary-color);
    border-radius: var(--radius-pill);
}

.cta-line::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background: var(--light-color);
}

.pharma-cta p {
    color: var(--light-color);
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 23px;
}

@media (max-width: 767px) {

    .pharma-section {
        padding: 15px 0;
    }

    .pharma-cta {
        min-height: 290px;
        padding: 40px 20px;
        border-radius: var(--radius-md);
    }

    .pharma-cta .section-title {
        font-size: 26px;
    }

    .pharma-cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {

    .pharma-cta {
        min-height: 270px;
        padding: 35px 15px;
    }

    .pharma-cta .section-title {
        font-size: 23px;
    }

    .pharma-cta p {
        font-size: 15px;
    }
}
section.industry-leader-section{
	padding:var(--section-padding);
}

/* Pcd-model-section */
.pcd-model-section {
    background: #fed7d8de;
}
.pcd-model-content {
    max-width: 620px;
}

.pcd-model-content .section-title {
    margin-bottom: 35px;
}

.pcd-model-content p {
    margin-bottom: 22px;
    line-height: 1.8;
}

.pcd-model-image {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.pcd-model-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.pcd-model-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .pcd-model-content {
        max-width: 100%;
    }

    .pcd-model-content .section-title {
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .pcd-model-section {
        padding: 50px 0 !important;
    }

    .pcd-model-content p {
        line-height: 1.7;
    }
}

/* franchise-investment-section */

.franchise-investment-section,
.manufacturing-process-section {
    padding: var(--section-padding);
}

.manufacturing-process-section {
    background: #e9131d0d;
}
.franchise-investment-content,
.manufacturing-content {
    width: 100%;
}

.franchise-investment-content .section-title,
.manufacturing-content .section-title {
    margin-bottom: 25px;
}

.franchise-investment-content > p,
.manufacturing-content > p {
    margin-bottom: 20px;
}

.franchise-investment-image,
.manufacturing-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.franchise-investment-image img,
.manufacturing-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.franchise-investment-image:hover img,
.manufacturing-image:hover img {
    transform: scale(1.03);
}

.franchise-benefit-list {
    margin: 30px 0;
}

.franchise-benefit-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.franchise-benefit-item:last-child {
    border-bottom: 0;
}

.benefit-number {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--light-color);
    font-size: 18px;
    font-weight: 600;
}

.franchise-benefit-item h3,
.manufacturing-point h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.franchise-benefit-item p,
.manufacturing-point p {
    margin: 0;
}

.manufacturing-image {
    box-shadow: 0 20px 50px rgba(32, 37, 26, 0.10);
}

.manufacturing-points {
    margin-top: 30px;
}

.manufacturing-point {
    display: flex;
    gap: 18px;
    padding: 20px;
    margin-bottom: 15px;
    background: #03163f;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.manufacturing-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(32, 37, 26, 0.08);
}


.point-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--light-color);
    font-size: 14px;
}


@media (max-width: 991px) {
    .franchise-investment-section,
    .manufacturing-process-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .franchise-investment-section,
    .manufacturing-process-section {
        padding: 55px 0;
    }

    .franchise-benefit-item,
    .manufacturing-point {
        gap: 14px;
    }

    .franchise-benefit-item h3,
    .manufacturing-point h3 {
        font-size: 18px;
    }
}

/* Product-section */

.portfolio-content {
    max-width: 620px;
}

.portfolio-content .sub-title {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-content .section-title {
    margin-bottom: 22px;
}

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

.portfolio-subtitle {
    margin-bottom: 18px;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
}

.portfolio-carousel {
    padding-bottom: 38px;
}

.portfolio-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 145px;
    padding: 25px;
    background: #fef3f3;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(32, 37, 26, 0.07);
    transition: var(--transition);
}
.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(32, 37, 26, 0.12);
}

.portfolio-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 21px;
}

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

.portfolio-card-content h4 {
    margin: 0 0 8px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
}

.portfolio-card-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

.portfolio-card-content p strong {
    color: var(--dark-color);
}

.portfolio-carousel .owl-dots {
    margin-top: 20px;
}

.portfolio-carousel .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px;
    background: var(--border-color) !important;
    transition: var(--transition);
}

.portfolio-carousel .owl-dot.active span {
    width: 28px;
    background: var(--primary-color) !important;
    border-radius: var(--radius-pill);
}

.portfolio-image-wrapper {
    position: relative;
    padding: 15px;
}

.portfolio-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--light-color);
    box-shadow: 0 20px 50px rgba(32, 37, 26, 0.14);
}

.portfolio-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-image:hover img {
    transform: scale(1.03);
}

.portfolio-image-content {
    position: absolute;
    right: 0;
    bottom: 35px;
    min-width: 175px;
    padding: 18px 25px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(24, 130, 68, 0.25);
}

.portfolio-image-content span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.portfolio-image-content p {
    margin: 5px 0 0;
    color: var(--light-color);
    font-size: 13px;
}

@media (max-width: 991px) {
    .portfolio-content {
        max-width: 100%;
    }

    .portfolio-image-wrapper {
        padding: 0;
    }

    .portfolio-image img {
        height: 430px;
    }
}

@media (max-width: 575px) {
    .portfolio-card {
        min-height: auto;
        padding: 20px;
    }

    .portfolio-image img {
        height: 330px;
    }

    .portfolio-image-content {
        right: 15px;
        bottom: 20px;
    }
}

/* Monopoly-section */

.monopoly-section {
    position: relative;
    padding: 80px 0;
    background-image: url("https://limegreen-octopus-460283.hostingersite.com/site/wordpress/wp-content/uploads/2026/08/a0.avif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.monopoly-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 27, 56, 0.94),
        rgba(0, 27, 56, 0.82),
        rgba(249, 8, 12, 0.55)
    );
}

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

.monopoly-content {
    margin: 0 auto;
    padding: 55px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.monopoly-content .sub-title {
    margin-bottom: 12px;
}

.monopoly-content .section-title {
    max-width: 850px;
    margin: 0 auto 15px;
}

.monopoly-line {
    position: relative;
    width: 80px;
    height: 4px;
    margin: 0 auto 28px;
    background: var(--btn-bg);
    border-radius: var(--radius-pill);
}

.monopoly-line::before,
.monopoly-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    background: var(--primary-dark);
    transform: translateY(-50%);
}

.monopoly-line::before {
    right: 100%;
    margin-right: 10px;
}

.monopoly-line::after {
    left: 100%;
    margin-left: 10px;
}

.monopoly-content p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.monopoly-content ul {
    max-width: 750px;
    margin: 25px auto 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.monopoly-content li {
    position: relative;
    padding: 12px 15px 12px 48px;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
    background: #f9080c1c;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.monopoly-content li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--btn-bg);
    color: var(--light-color);
    font-size: 13px;
    font-weight: 700;
}

.monopoly-content li:hover {
    transform: translateX(5px);
    background: rgba(249, 8, 12, 0.08);
}

@media (max-width: 991px) {

    .monopoly-section {
        padding: 65px 0;
    }

    .monopoly-content {
        padding: 45px 40px;
    }

    .monopoly-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    .monopoly-section {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .monopoly-content {
        padding: 35px 22px;
        border-radius: var(--radius-md);
    }

    .monopoly-content p {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }

    .monopoly-content ul {
        margin-top: 20px;
    }

    .monopoly-content li {
        font-size: 14px;
        padding-left: 43px;
    }

    .monopoly-content li::before {
        left: 12px;
    }
}

@media (max-width: 575px) {

    .monopoly-section {
        padding: 40px 0;
    }

    .monopoly-content {
        padding: 30px 17px;
    }

    .monopoly-content .section-title {
        font-size: 28px;
    }

    .monopoly-content p {
        font-size: 14px;
    }

    .monopoly-content li {
        font-size: 13px;
    }
}
section.monopoly-section .section-title::after {
    background: none;
}
section.portfolio-section {
    background: #f9080c29;
}

/*  Marketing-kits-section  */

.marketing-kits-section {
    position: relative;
    padding: 0 0 70px 0;
    background: var(--accent-color);
    overflow: hidden;
}

.marketing-kits-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -180px;
    right: -120px;
    border-radius: 50%;
    background: rgba(249, 8, 12, 0.06);
}

.marketing-kits-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
    background: rgba(0, 27, 56, 0.05);
}

.marketing-kits-wrapper {
    position: relative;
    z-index: 2;
    background: var(--light-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 27, 56, 0.08);
}
.marketing-kits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.marketing-kit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: #fed7d8;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.marketing-kit-item:last-child {
    grid-column: 1 / -1;
}

.marketing-kit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 8, 12, 0.25);
    box-shadow: 0 12px 30px rgba(0, 27, 56, 0.08);
}

.marketing-kit-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--btn-bg);
    color: var(--light-color);
    font-size: 14px;
    font-weight: 700;
}

.marketing-kit-item strong {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 17px;
}
@media (max-width: 991px) {

    .marketing-kits-wrapper {
        padding: 0 0;
    }

    .marketing-kits-list {
        grid-template-columns: 1fr;
    }

    .marketing-kit-item:last-child {
        grid-column: auto;
    }
}

@media (max-width: 767px) {

    .marketing-kits-section {
        padding: 0px 0;
    }

    .marketing-kits-intro p {
        font-size: 15px;
    }

    .marketing-kit-item {
        padding: 15px;
    }

    .marketing-kit-item p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .marketing-kit-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}

/* Franchise-steps */

.franchise-steps-section {
    position: relative;
    padding: 80px 0;
    background-image: url("https://limegreen-octopus-460283.hostingersite.com/site/wordpress/wp-content/uploads/2026/08/1.webp");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.franchise-steps-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 27, 56, 0.88),
        rgba(0, 27, 56, 0.72),
        rgba(0, 27, 56, 0.82)
    );
}

.franchise-steps-section .container {
    position: relative;
    z-index: 2;
}

.franchise-steps-heading {
    margin: 0 auto 55px;
}

.franchise-steps-heading .section-title {
    color: var(--light-color);
    margin-bottom: 18px;
}

.franchise-steps-heading p {
    color: var(--light-color);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.franchise-steps {
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
}

.franchise-steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%);
}

.franchise-step {
    position: relative;
    width: 47%;
    min-height: 125px;
    display: flex;
    align-items: center;
    padding: 22px 25px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.franchise-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.franchise-step-left {
    margin-right: auto;
}

.franchise-step-right {
    margin-left: auto;
}

.franchise-step::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
}

.franchise-step-left::after {
    right: -30px;
}

.franchise-step-right::after {
    left: -30px;
}

.franchise-step::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--light-color);
    transform: translateY(-50%);
    z-index: 3;
}

.franchise-step-left::before {
    right: -37px;
}

.franchise-step-right::before {
    left: -37px;
}

.step-number {
    width: 72px;
    height: 72px;
    min-width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border-radius: 50%;
    background: var(--btn-bg);
    color: var(--light-color);
    font-size: 25px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(249, 8, 12, 0.25);
}

.franchise-step-right .step-number {
    order: 2;
    margin-right: 0;
    margin-left: 20px;
    background: var(--gradient-color);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .franchise-steps-section {
        padding: 70px 0;
    }

    .franchise-step {
        width: 46%;
        padding: 20px;
    }

    .step-number {
        width: 62px;
        height: 62px;
        min-width: 62px;
        font-size: 21px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {

    .franchise-steps-section {
        padding: 55px 0;
    }

    .franchise-steps-heading {
        margin-bottom: 35px;
    }

    .franchise-steps-heading p {
        font-size: 15px;
    }

    .franchise-steps {
        padding-left: 30px;
    }

    .franchise-steps::before {
        left: 8px;
        transform: none;
    }

    .franchise-step,
    .franchise-step-left,
    .franchise-step-right {
        width: 100%;
        margin: 0 0 20px;
        min-height: auto;
    }

    .franchise-step::after {
        display: none;
    }

    .franchise-step::before,
    .franchise-step-left::before,
    .franchise-step-right::before {
        left: -28px;
        right: auto;
        width: 13px;
        height: 13px;
    }

    .step-number,
    .franchise-step-right .step-number {
        order: 0;
        margin: 0 15px 0 0;
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {

    .franchise-steps-section {
        padding: 45px 0;
    }

    .franchise-steps {
        padding-left: 25px;
    }

    .franchise-step {
        padding: 17px 15px;
    }

    .franchise-step::before,
    .franchise-step-left::before,
    .franchise-step-right::before {
        left: -23px;
    }

    .step-number,
    .franchise-step-right .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 12px;
        line-height: 1.55;
    }
}

/* Eligibility-investment-section */

.eligibility-investment-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--light-color);
    overflow: hidden;
}

.eligibility-investment-section .row {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 27, 56, 0.08);
}

.eligibility-content,
.investment-content {
    height: 100%;
    padding: 55px 0px;
    background: var(--accent-color);
}
.eligibility-content ul,
.investment-content ul {
    padding-left: 20px;
    margin: 0;
}

.eligibility-content li,
.investment-content li {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    padding-left: 9px;
    margin-bottom: 10px;
}

.eligibility-content li::marker,
.investment-content li::marker {
    color: var(--primary-color);
    font-size: 16px;
}

.eligibility-content strong, .investment-content strong {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 18px;
}

.investment-content {
    background: var(--light-color);
}
.investment-content > p:last-child {
    margin-top: 22px;
    margin-bottom: 0;
}
.eligibility-image img {
    border-radius: 10px;
}
@media (max-width: 991px) {

    .eligibility-content,
    .investment-content {
        padding: 45px 35px;
    }

    .eligibility-image,
    .investment-image {
        min-height: 400px;
    }

    .eligibility-image img,
    .investment-image img {
        min-height: 400px;
    }
}

@media (max-width: 767px) {

    .eligibility-investment-section {
        padding: 40px 0;
    }

    .eligibility-content,
    .investment-content {
        padding: 35px 25px;
    }

    .eligibility-image,
    .investment-image {
        min-height: 300px;
    }

    .eligibility-image img,
    .investment-image img {
        min-height: 300px;
        max-height: 350px;
    }

    .eligibility-content p,
    .investment-content p {
        font-size: 16px;
    }

    .eligibility-content li,
    .investment-content li {
        font-size: 16px;
    }
}

@media (max-width: 575px) {

    .eligibility-content,
    .investment-content {
        padding: 30px 18px;
    }

    .eligibility-image,
    .investment-image {
        min-height: 250px;
    }

    .eligibility-image img,
    .investment-image img {
        min-height: 250px;
    }

    .eligibility-content p,
    .investment-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .eligibility-content li,
    .investment-content li {
        font-size: 16px;
    }
}

/* Pan-india */

.pan-india-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--light-color);
    overflow: hidden;
}

.pan-india-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -250px;
    right: -180px;
    border-radius: 50%;
    background: rgba(249, 8, 12, 0.04);
}

.pan-india-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -170px;
    left: -130px;
    border-radius: 50%;
    background: rgba(0, 27, 56, 0.04);
}

.pan-india-section .container {
    position: relative;
    z-index: 2;
}

.pan-india-content {
    padding-right: 45px;
}

.pan-india-content > p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.territory-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.territory-list li {
    position: relative;
    padding: 13px 18px 13px 48px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.65;
    background: var(--accent-color);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.territory-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--btn-bg);
    color: var(--light-color);
    font-size: 11px;
    font-weight: 700;
}

.territory-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 27, 56, 0.07);
}

.territory-list strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.territory-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    padding: 16px 20px;
    background: var(--primary-dark);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 27, 56, 0.15);
}

.territory-note-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--btn-bg);
    color: var(--light-color);
    font-weight: 700;
}

.territory-note p {
    color: var(--light-color);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.pan-india-map {
    position: relative;
    /* min-height: 560px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 30px; */
}
.map-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(249, 8, 12, 0.10) 0%,
        rgba(249, 8, 12, 0.04) 45%,
        transparent 70%
    );
}

.pan-india-map img {
    position: relative;
    z-index: 2;
    /* width: 85%; */
    /* max-width: 470px; */
    /* max-height: 530px; */
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 27, 56, 0.12));
    transition: var(--transition);
	border-radius:10px;
}
.pan-india-map:hover img {
    transform: translateY(-8px);
}

.map-badge {
    position: absolute;
    z-index: 3;
    right: 3%;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    padding: 14px 20px;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 30px rgba(0, 27, 56, 0.12);
}
.map-badge strong {
    color: var(--primary-dark);
    font-size: 20px;
}

.map-badge span {
    color: var(--text-color);
    font-size: 16px;
    margin-top: 3px;
}

@media (max-width: 991px) {

    .pan-india-content {
        padding-right: 0;
    }

    .pan-india-map {
        min-height: 450px;
        margin-top: 30px;
    }

    .pan-india-map img {
        max-height: 430px;
    }

    .map-glow {
        width: 350px;
        height: 350px;
    }

    .map-badge {
        right: 10%;
        bottom: 35px;
    }
}

@media (max-width: 767px) {

    .pan-india-section {
        padding: 0px 0;
    }

    .pan-india-content > p {
        font-size: 15px;
    }

    .territory-list li {
        font-size: 14px;
        padding: 12px 15px 12px 44px;
    }

    .territory-note p {
        font-size: 14px;
    }

    .pan-india-map {
        min-height: 380px;
        padding: 15px;
        margin-top: 15px;
    }

    .pan-india-map img {
        width: 100%;
        max-height: 360px;
    }

    .map-glow {
        width: 300px;
        height: 300px;
    }

  .map-badge {
    right: 7%;
    bottom: 44px;
}
}

@media (max-width: 575px) {

    .pan-india-map {
        min-height: 330px;
    }

    .pan-india-map img {
        width: 100%;
        max-height: 320px;
    }

    .map-glow {
        width: 250px;
        height: 250px;
    }

    .map-badge {
        padding: 10px 13px;
    }

    .map-badge strong {
        font-size: 14px;
    }

    .map-badge span {
        font-size: 10px;
    }
}

/* Mission,vission,values */

.mission-vision-section {
    position: relative;
    padding: var(--section-padding);
    background: #fed7d8;
    overflow: hidden;
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
    border-radius: 50%;
    background: rgba(249, 8, 12, 0.05);
}

.mission-vision-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    background: rgba(0, 27, 56, 0.05);
}

.mission-vision-section .container {
    position: relative;
    z-index: 2;
}

.mission-vision-heading {
    max-width: 850px;
    margin: 0 auto 45px;
}

.mission-vision-line {
    width: 110px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: var(--radius-pill);
    background: var(--btn-bg);
}

.purpose-card {
    position: relative;
    height: 100%;
    padding: 40px 30px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 27, 56, 0.07);
    transition: var(--transition);
}

.purpose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--btn-bg);
}

.vision-card::before {
    background: var(--gradient-color);
}

.values-card::before {
    background: var(--primary-dark);
}

.purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 27, 56, 0.13);
}

.purpose-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--btn-bg);
    box-shadow: 0 10px 25px rgba(249, 8, 12, 0.20);
}

.vision-card .purpose-icon {
    background: var(--gradient-color);
    box-shadow: 0 10px 25px rgba(0, 27, 56, 0.18);
}

.values-card .purpose-icon {
    background: #ea141d;
    box-shadow: 0 10px 25px rgba(0, 27, 56, 0.18);
}
.purpose-icon span {
    color: var(--light-color);
    font-size: 20px;
    font-weight: 700;
}

.purpose-card h3 {
    color: var(--primary-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .mission-vision-heading {
        margin-bottom: 35px;
    }

    .purpose-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .mission-vision-section {
        padding: 55px 0;
    }

    .purpose-card {
        padding: 30px 22px;
    }

    .purpose-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .purpose-card h3 {
        font-size: 19px;
    }

    .purpose-card p {
        font-size: 14px;
    }
}
section.mission-vision-section .section-title::after {
    background: none;
}

/* Faq-section */

.faq-section {
    position: relative;
    padding: var(--section-padding);
    background: #fed7d8;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
    border-radius: 50%;
    background: rgba(249, 8, 12, 0.05);
}

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

.faq-heading {
    max-width: 800px;
    margin-bottom: 40px;
}

.faq-wrapper {
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 27, 56, 0.06);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(249, 8, 12, 0.25);
    box-shadow: 0 12px 30px rgba(0, 27, 56, 0.10);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 25px;
    border: 0;
    background: transparent;
    color: var(--primary-dark);
    text-align: left;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--btn-bg);
    color: var(--light-color);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    transition: var(--transition);
}

.faq-answer {
    display: none;
    padding: 0 25px 22px;
}

.faq-answer p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.faq-item.active {
    border-color: rgba(249, 8, 12, 0.20);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 767px) {

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

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

    .faq-question {
        padding: 17px 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
	
    .faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 18px;
    }
}

/* Banner-section */

.nv-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("https://limegreen-octopus-460283.hostingersite.com/site/wordpress/wp-content/uploads/2026/09/biosmith-img-scaled.png");
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}

.nv-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 27, 56, 0.95) 0%,
        rgba(0, 27, 56, 0.82) 45%,
        rgba(0, 27, 56, 0.25) 100%
    );
}

.nv-banner .container {
    position: relative;
    z-index: 2;
}

.nv-banner-content {
    max-width: 760px;
    padding: 100px 0 60px;
}

.nv-banner-content .sub-title {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--light-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nv-banner-content h1 {
    color: var(--light-color);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 25px;
}

.nv-banner-content p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.nv-banner-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nv-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 25px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-pill);
    color: var(--light-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.nv-banner-link:hover {
    color: var(--primary-dark);
    background: var(--light-color);
    border-color: var(--light-color);
}

@media (max-width: 991px) {

    .nv-banner {
        min-height: 750px;
        background-position: center;
    }

    .nv-banner-overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 27, 56, 0.94),
            rgba(0, 27, 56, 0.70)
        );
    }

    .nv-banner-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {

    .nv-banner {
        min-height: 500px;
        background-position: center;
    }

    .nv-banner-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .nv-banner-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .nv-banner-buttons {
        gap: 12px;
    }

    .nv-banner-btn,
    .nv-banner-link {
        min-height: 48px;
        padding: 0 20px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {

    .nv-banner-content h1 {
        font-size: 32px;
    }

    .nv-banner-content p {
        font-size: 14px;
    }

    .nv-banner-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .nv-banner-btn,
    .nv-banner-link {
        width: 100%;
    }
}
.footer-contact a {
    color: #fff;
}

/* Responsive-css */

@media(max-width:767px){
	.mega-menu-toggle {
    float: right;
}
	.nv-banner-content {
    padding: 50px 0 50px;
}
	.nv-banner-btn, .nv-banner-link {
    width: 70%;
    margin-top: 17px;
}
	.about-us {
    padding: var(--responsive-padding);
}
	section.industry-leader-section {
    padding: var(--responsive-padding);
}
	.portfolio-carousel {
    padding-bottom: 0;
}
	.franchise-investment-section, .manufacturing-process-section {
    padding: 30px 0;
}
	.marketing-kits-section {
    padding: 0px 0 40px 0;
}
	.eligibility-content, .investment-content {
    padding:0;
}
	.footer-section {
    padding: 50px 0 20px; 
}
	img.img-fluid.footer-logo {
    background: #fff;
    border-radius: 10px;
    width: 55%;
    margin-bottom: 15px;
}
	.footer-text {
    color: #cfd7e6;
    line-height: 1.8;
     max-width: 100%;
}
}
#sequence {
    width: 100%;
    float: left;
    background: #e81019;
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #ffffff !important;
    margin: 0 !important;
}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 9px 0;
    font-size: 15px;
    color: #ffffff !important;
    font-weight: 500;
    text-decoration: none !important;
    border-right: 1px solid;
}
img.img-fluid.footer-logo {
    background: #fff;
    border-radius: 10px;
    width: 55%;
    margin-bottom: 15px;
}

label {
    width: 100% !important;
    padding: 0 0 3px 0;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #cf0202;
    padding: 8px 0 0 0;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    border: 1px solid #cf0202;
    border-radius: 4px;
    height: 150px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    background:#cf0202;
    color: #fff;
    border-radius: 4px;
    border: none;
    padding: 5px 0;
}
h3.highlight-text {
    font-size: 25px;
    color: #ec1b27;
    padding-bottom: 5px;
}
h3.inner-title {
    font-size: 35px;
}
.breadcrumb-section {
    background: url(https://limegreen-octopus-460283.hostingersite.com/site/wordpress/wp-content/uploads/2026/09/biosmith-img-scaled.png) rgba(0,0,0,0.5);
    background-color: #2d5669;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 163px 0px 100px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 5px solid #ed3539;
    background-blend-mode: multiply;
}
.breadcrumb-section .page-header-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}
section.inner-page {
    padding: 40px 0;
}
.inner-box {
    background-color: #fed7d8de;
    border: 1px solid #03163f;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
}
.mission-content {
    background-color: var(--accent-color);
    border-color: var(--border-color) !important;
    position: relative;
    overflow: hidden;
}

.mission-content::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -60px;
    right: -40px;
}

.mission-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.mission-content .inner-title {
    margin-bottom: 20px;
    position: relative;
}

.mission-content p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.mission-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin: 25px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--primary-color);
}

.mission-highlight i {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.mission-highlight p {
    margin: 0;
    line-height: 1.7;
}

.mission-highlight strong {
    font-weight: 700;
}

@media (max-width: 767px) {
    .mission-content {
        padding: 25px !important;
    }

    .mission-content .inner-title {
        font-size: 26px;
    }

    .mission-highlight {
        padding: 16px;
        gap: 10px;
    }
}
.contact-content.pt-md-3.rounded-4.shadow-sm.border p {
    border-left: 6px solid #cf0202;
    border-radius: 13px;
    padding: 11px 0 11px 20px;
    margin: 15px 0 40px 0;
}
span.contact-details {
    color: #383837;
    font-weight: 600;
    font-size: 18px;
}
span.contact-details a{
    color: #383837;
    font-weight: 600;
    font-size: 18px;
}