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

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


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


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

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

:root {
  /* Premium Dark Theme Core */
  --navy-dark: #1f3f61;
  --navy-darker: #122740;
  --navy-light: #315b85;
  
  /* Vibrant Accents */
  --accent-blue: #315b85;
  --accent-cyan: #4b7baa;
  --accent-glow: rgba(49, 91, 133, 0.5);
  
  /* Text */
  --text-dark: #0f172a;
  --text-gray: #475569;
  --text-light: #94a3b8;
  
  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-offwhite: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  
  /* Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-bg-dark: rgba(15, 23, 42, 0.75);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-border-dark: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  
  /* Typography Tokens */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Typography Sizes - Mobile First (Base) */
  --fs-hero-title: 30px;
  --fs-section-title: 27px;
  --fs-product-title: 20px;
  --fs-subheading: 18px;
  --fs-body: 15px;
  --fs-label: 14px;
  --fs-button: 15px;

  /* Padding - Mobile First (Base) */
  --section-pad-top: 50px;
  --section-pad-bottom: 50px;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  :root {
    --fs-hero-title: 48px;
    --fs-section-title: 40px;
    --fs-product-title: 24px;
    --fs-subheading: 20px;
    --fs-body: 16px;

    --section-pad-top: 70px;
    --section-pad-bottom: 70px;
  }
}




/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  :root {
    --fs-hero-title: 56px;
    --fs-section-title: 48px;
    --fs-product-title: 28px;
    --fs-subheading: 22px;
    --fs-body: 18px;

    --section-pad-top: 100px;
    --section-pad-bottom: 100px;
  }
}

/* Base class for consistent section padding */
.global-section-padding {
  padding-top: var(--section-pad-top);
  padding-bottom: var(--section-pad-bottom);
}

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

body {
  font-family: var(--font-main);
  color: var(--text-gray);
  background-color: var(--bg-white);
  overflow-x: hidden;
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-heading); 
  color: var(--text-dark); 
  font-weight: 800; 
  margin-bottom: 1rem; 
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-size: var(--fs-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Utils */
.section-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.1));
  color: var(--accent-blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(59,130,246,0.2);
}
.section-tag i { margin-right: 8px; }

/* Buttons Premium */
.btn-navy, .btn-lightblue, .btn-black-pill, .btn-primary-custom {
  font-family: var(--font-heading);
  padding: 16px 36px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  color: white;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}
.btn-navy:hover { 
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(15, 23, 42, 0.3);
  color: white;
}

.btn-lightblue, .btn-primary-custom {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: white;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-lightblue::before, .btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.btn-lightblue:hover::before, .btn-primary-custom:hover::before { opacity: 1; }
.btn-lightblue:hover, .btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
  color: white;
}

/* Header & Nav */
.topbar { 
  border-bottom: 1px solid rgba(0,0,0,0.05); 
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
  font-size: var(--fs-label); 
  font-weight: 500; 
}
.topbar-left { padding: 10px 0; display: flex; align-items: center; gap: 30px; color: var(--text-gray); }
.topbar-left i { color: var(--accent-blue); margin-right: 8px; }
.topbar-right { display: flex; align-items: center; gap: 20px; color: var(--text-gray); }
.topbar-right a:hover { color: var(--accent-blue); }

.navbar { 
  padding: 15px 0; 
  background: #ffffff; 
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.navbar-brand img { 
  height: 60px; 
  transition: transform 0.3s; 
  mix-blend-mode: multiply; 
}
.navbar-brand:hover img { transform: scale(1.05); }
.nav-link { 
  font-family: var(--font-heading);
  font-weight: 600; 
  color: var(--text-gray) !important; 
  margin: 0 15px; 
  
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: 0; left: 0;
  background-color: var(--accent-blue);
  transition: width 0.3s ease;
}
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-link.active, .nav-link:hover { color: var(--text-dark) !important; }

.phone-block { display: flex; align-items: center; gap: 15px; margin-right: 30px; }
.phone-icon { 
  width: 48px; height: 48px; 
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.1)); 
  border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  color: var(--accent-blue); 
  animation: pulseGlow 3s infinite;
}
.phone-text small { display: block; color: var(--text-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.phone-text strong { font-family: var(--font-heading); color: var(--text-dark); font-size: var(--fs-button); font-weight: 800; }

/* Hero Section */
.hero-section { 
  position: relative; 
  background-image: url('https://hivends.org/insinius-pharma-new/site/wp-content/uploads/2026/07/hero_banner_image.png'); 
  background-position: center; 
  background-size: cover; 
  min-height: 90vh; 
  display: flex; 
  align-items: center; 
}
.hero-overlay { 
  position: absolute; inset: 0; 
  background: linear-gradient(to right, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.4) 100%); 
}
.hero-content { position: relative; z-index: 2; color: white; width: 100%; animation: fadeInUp 1s ease-out; }
.hero-subtitle { 
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  text-transform: uppercase; 
  font-size: var(--fs-label); 
  font-weight: 700; 
  letter-spacing: 2px; 
  margin-bottom: 25px; 
  color: #e0f2fe;
}
.hero-content h1 { 
  color: white; 
  font-size: var(--fs-hero-title); 
  line-height: 1.1; 
  margin-bottom: 40px; 
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero-content h1 span {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-right-text { 
  font-size: var(--fs-body); 
  font-weight: 400; 
  line-height: 1.8; 
  color: #cbd5e1;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

/* Marquee Section */
.marquee-wrapper {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-darker));
  color: white;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-content {
  display: inline-block;
  animation: marquee-scroll 40s linear infinite;
  font-family: var(--font-heading);
  font-weight: 500;
  
  letter-spacing: 0.5px;
}
.marquee-content span { margin: 0 50px; display: inline-flex; align-items: center; }
.marquee-content i {
  margin-right: 12px;
  color: var(--accent-cyan);
  
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About Section */
.about-section { padding-top: var(--section-pad-top); padding-bottom: var(--section-pad-bottom); background: var(--bg-white); }
.about-images-wrapper { position: relative; display: block; width: 100%; border-radius: 24px; }
.about-img-main { width: 100%; height: 600px; object-fit: cover; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-img-sub { 
  position: absolute; bottom: -30px; right: -30px; 
  width: 50%; border: 12px solid white; border-radius: 24px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
  animation: float 6s ease-in-out infinite;
}
.skilled-team-badge { 
  position: absolute; bottom: 40px; left: -30px; 
  background: var(--glass-bg); backdrop-filter: blur(20px);
  padding: 25px 35px; border-radius: 20px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
  border: 1px solid var(--glass-border);
  z-index: 2; 
}
.skilled-team-title { font-family: var(--font-heading); font-weight: 800; color: var(--text-dark); margin-bottom: 15px; text-align: center; }
.avatar-group { display: flex; }
.avatar-group img, .avatar-group .more { 
  width: 45px; height: 45px; border-radius: 50%; 
  border: 3px solid white; margin-left: -15px; object-fit: cover; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.avatar-group img:first-child { margin-left: 0; }
.avatar-group .more { background: linear-gradient(135deg, #38bdf8, #3b82f6); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.about-title { font-size: var(--fs-section-title); line-height: 1.2; margin-bottom: 30px; }
.about-desc { color: var(--text-gray); margin-bottom: 40px; line-height: 1.8; }
.about-feature { 
  display: flex; gap: 20px; margin-bottom: 30px; 
  padding: 20px; border-radius: 16px;
  background: var(--bg-offwhite);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.about-feature:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateX(10px);
}
.about-feature-icon { 
  width: 50px; height: 50px; flex-shrink: 0; 
  background: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; 
  color: var(--accent-blue); 
  box-shadow: 0 10px 20px rgba(59,130,246,0.1);
}
.about-feature h5 { margin-bottom: 8px; font-weight: 800; }
.about-feature p { color: var(--text-gray); line-height: 1.6; margin: 0; }
.progress-title { font-family: var(--font-heading); font-weight: 800; color: var(--text-dark); margin-bottom: 15px; }
.progress { height: 10px; background-color: #e2e8f0; border-radius: 10px; overflow: visible; }
.progress-bar { background: linear-gradient(90deg, #3b82f6, #06b6d4); border-radius: 10px; position: relative; }
.progress-bar::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; background: white; border: 4px solid #06b6d4; border-radius: 50%;
  box-shadow: 0 0 10px rgba(6,182,212,0.5);
}

/* Services */
.services-section { padding-top: var(--section-pad-top); background: var(--bg-offwhite); text-align: center; }
.services-title { font-size: var(--fs-section-title); line-height: 1.2; margin-bottom: 60px; }
.services-title em { color: var(--accent-blue); font-style: normal; position: relative; z-index: 1; }
.services-title em::after {
  content: ''; position: absolute; left: 0; bottom: 5px; width: 100%; height: 12px;
  background: rgba(59,130,246,0.2); z-index: -1; transform: rotate(-2deg);
}
.service-card-new { 
  background-color: white; border-radius: 24px; padding: 40px 30px; height: 100%; 
  text-align: left; position: relative; overflow: hidden; display: flex; flex-direction: column; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card-new:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: rgba(59,130,246,0.2); }
.service-card-new.img-bg { background: url('https://hivends.org/insinius-pharma-new/site/wp-content/uploads/2026/07/service-inisinius_image.avif') center/cover; color: white; }
.service-card-new.img-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0.95) 100%); }
.service-card-new.img-bg > * { position: relative; z-index: 2; }
.service-card-new.img-bg h4 { color: white; }
.service-card-new.img-bg p { color: #cbd5e1; }
.service-icon-new { 
  width: 65px; height: 65px; 
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.1)); 
  color: var(--accent-blue); border-radius: 20px; 
  display: flex; align-items: center; justify-content: center; margin-bottom: 30px; 
  transition: all 0.3s ease;
}
.service-card-new:hover .service-icon-new { background: var(--accent-blue); color: white; transform: scale(1.1) rotate(5deg); }
.service-card-new.img-bg .service-icon-new { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.service-card-new.img-bg:hover .service-icon-new { background: var(--accent-blue); border-color: var(--accent-blue); }
.service-card-new h4 { margin-bottom: 15px; }
.service-card-new p { color: var(--text-gray); line-height: 1.7; margin-bottom: 30px; flex-grow: 1; }
.service-card-new .view-details { display: flex; align-items: center; font-family: var(--font-heading); font-weight: 700; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; margin-top: auto; color: var(--text-dark); transition: 0.3s; }
.service-card-new:hover .view-details { color: var(--accent-blue); }
.service-card-new.img-bg .view-details { border-top: 1px solid rgba(255,255,255,0.1); color: white; }
.service-card-new .view-details i { width: 30px; height: 30px; background: var(--bg-offwhite); color: var(--text-dark); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; margin-left: 10px; transition: 0.3s; }
.service-card-new:hover .view-details i { background: var(--accent-blue); color: white; }
.service-card-new.img-bg .view-details i { background: rgba(255,255,255,0.1); color: white; }

/* Scrollable Row Enhanced */
.scrollable-cards-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-left: 0;
  margin-right: 0;
  gap: 30px;
  padding: 20px 0 40px 0; /* extra padding for hover effects */
}
.scrollable-cards-row::-webkit-scrollbar { display: none; }
.scrollable-cards-row > div { scroll-snap-align: start; flex: 0 0 auto; width: calc(85% - 15px); padding: 0; }
@media (min-width: 576px) { .scrollable-cards-row > div { width: calc(50% - 15px); } }
@media (min-width: 768px) { .scrollable-cards-row > div { width: calc(33.333% - 20px); } }
@media (min-width: 1200px) { .scrollable-cards-row > div { width: calc(25% - 22.5px); } }

/* Why Choose Us Premium */
.why-choose-us { padding-top: var(--section-pad-top); padding-bottom: var(--section-pad-bottom); background: var(--bg-white); }
.wcu-card { 
  background: white; padding: 40px 30px; border-radius: 24px; text-align: center; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: all 0.4s ease; height: 100%; 
  border: 1px solid rgba(0,0,0,0.03); 
}
.wcu-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: rgba(59,130,246,0.1); }
.wcu-icon { 
  width: 80px; height: 80px; background: var(--bg-offwhite); color: var(--accent-blue); 
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; 
  margin-bottom: 25px; transition: all 0.4s ease; 
}
.wcu-card:hover .wcu-icon { background: var(--accent-blue); color: white; transform: rotateY(180deg); }
.wcu-card h4 { margin-bottom: 15px; }
.wcu-card p { line-height: 1.7; }

/* Mission & Vision */
.mission-section { padding-top: var(--section-pad-top); padding-bottom: var(--section-pad-bottom); background: var(--bg-offwhite); }
.mission-title { font-size: var(--fs-section-title); line-height: 1.2; margin-bottom: 40px; }
.mission-tabs { display: flex; border-bottom: 2px solid rgba(0,0,0,0.05); margin-bottom: 40px; gap: 30px; }
.mission-tab { 
  padding: 15px 0; font-family: var(--font-heading); font-weight: 700; color: var(--text-light); 
  cursor: pointer; position: relative; transition: 0.3s;
}
.mission-tab:hover { color: var(--accent-blue); }
.mission-tab.active { color: var(--text-dark); }
.mission-tab.active::after { 
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px; 
  background: var(--accent-blue); border-radius: 3px 3px 0 0; 
}
.check-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-weight: 700; color: var(--text-dark); }
.check-list li i { color: white; background: var(--accent-blue); width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.mission-img-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.mission-img-wrapper img { width: 100%; height: 550px; object-fit: cover; transition: transform 0.5s ease; }
.mission-img-wrapper:hover img { transform: scale(1.05); }
.mission-stats-box { 
  position: absolute; bottom: 30px; left: -40px; 
  background: rgba(255,255,255,0.9); backdrop-filter: blur(20px);
  padding: 40px; border-radius: 24px; width: 320px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5);
}
@media (max-width: 991px) { .mission-stats-box { left: 20px; bottom: 20px; width: auto; } }
.stat-item { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.stat-item:last-child { margin-bottom: 0; }
.stat-circle { 
  width: 60px; height: 60px; border: 2px dashed rgba(59,130,246,0.5); 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; 
  color: var(--accent-blue); background: rgba(59,130,246,0.05);
}
.stat-item h3 { margin: 0; color: var(--text-dark); }
.stat-item p { font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0; color: var(--text-gray); }

/* Pharma Divisions */
.divisions-section { background: var(--bg-white); }
.division-card { position: relative; border-radius: 24px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.division-card img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.division-card:hover img { transform: scale(1.15); }
.division-overlay { 
  position: absolute; inset: 0; 
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.2) 50%, transparent 100%); 
  display: flex; align-items: flex-end; padding: 40px 30px; 
}
.division-overlay h4 { color: white; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.3); transition: transform 0.3s; }
.division-card:hover .division-overlay h4 { transform: translateY(-10px); }

/* Products Section */
.products-section { padding-top: var(--section-pad-top);  background: var(--bg-offwhite); }
.product-card { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: 0.4s; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 320px; object-fit: cover; }
.product-info { 
  position: absolute; bottom: 20px; left: 20px; right: 20px; 
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  padding: 20px 25px; border-radius: 16px; text-align: left; 
}
.product-info span { color: var(--accent-blue); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.product-info h5 { margin: 0; }

/* Testimonials */
.testimonials-section { padding-top: var(--section-pad-top);  background: var(--bg-white); }
.testimonial-card { 
  background: var(--bg-offwhite); padding: 40px; border-radius: 24px; 
  position: relative; height: 100%; border: 1px solid rgba(0,0,0,0.02); transition: 0.4s; 
}
@media (max-width: 767px){
  .testimonials-section {
    background: var(--bg-white);
}
.hero-subtitle {
        padding: 8px !important;
  
}
}
.testimonial-card:hover { background: white; box-shadow: 0 20px 40px rgba(0,0,0,0.05); transform: translateY(-5px); }
.quote-icon { position: absolute; top: 30px; right: 30px; font-size: 60px; color: rgba(59,130,246,0.05); z-index: 0; }
.testimonial-text { font-style: italic; color: var(--text-gray); margin-bottom: 30px; position: relative; z-index: 1; line-height: 1.8; }
.client-info { display: flex; align-items: center; gap: 15px; position: relative; z-index: 1; }
.client-info img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.client-info h6 { margin: 0 0 3px 0; }
.client-info p { margin: 0; color: var(--accent-blue); font-weight: 600; }

/* Blogs */
.blogs-section { padding-top: var(--section-pad-top); background: var(--bg-offwhite); }
.blogs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.blogs-title { font-size: var(--fs-section-title); margin: 0; }
.blog-card-new { position: relative; margin-bottom: 120px; border-radius: 24px; }
.blog-card-new > img { width: 100%; height: 380px; object-fit: cover; border-radius: 24px; transition: 0.5s; }
.blog-card-new:hover > img { filter: brightness(0.8); }
.blog-card-info { 
  position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); 
  width: 90%; background: white; padding: 35px; border-radius: 20px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.08); transition: 0.4s;
}
.blog-card-new:hover .blog-card-info { transform: translate(-50%, -10px); }
.blog-meta-new { display: flex; gap: 20px; color: var(--text-gray); margin-bottom: 15px; font-weight: 600; }
.blog-meta-new span i { color: var(--accent-blue); }
.blog-card-info h4 { line-height: 1.4; margin-bottom: 20px; }
.blog-card-info .read-more { 
  display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); 
  font-weight: 700; color: var(--text-dark); 
}
.blog-card-info .read-more i { 
  background: var(--bg-offwhite); color: var(--text-dark); width: 30px; height: 30px; 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.blog-card-info .read-more:hover i { background: var(--accent-blue); color: white; transform: translateX(5px); }

/* Contact Section */
.contact-section {
  position: relative; padding-top: var(--section-pad-top); padding-bottom: var(--section-pad-bottom);
  background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
  backdrop-filter: blur(4px);
}
.contact-content-wrapper { position: relative; z-index: 2; }
.contact-left-new { color: white; padding-right: 40px; }
.contact-left-new h2 { font-size: var(--fs-section-title); color: white; margin-bottom: 50px; line-height: 1.2; }
.contact-left-new h2 em { font-weight: 400; font-style: normal; color: #38bdf8; }
.contact-info-block { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.contact-info-block .icon {
  width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; color: #38bdf8;
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px);
}
.contact-info-block h6 { margin: 0 0 5px 0; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }
.contact-info-block p { margin: 0; font-weight: 700; color: white; }

.contact-card-right {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  padding: 50px; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.5);
}
.contact-card-right h3 { margin-bottom: 30px; }
.form-control-new {
  background: var(--bg-offwhite); border: 1px solid rgba(0,0,0,0.05); padding: 18px 25px;
  border-radius: 12px; width: 100%; margin-bottom: 20px; color: var(--text-dark); 
  transition: all 0.3s ease;
}
.form-control-new:focus { background: white; border-color: var(--accent-blue); box-shadow: 0 0 0 4px rgba(59,130,246,0.1); outline: none; }
textarea.form-control-new { min-height: 160px; resize: vertical; }

/* CTA Banner */
.cta-banner { 
  padding: 80px 40px; background: var(--navy-dark); 
  position: relative; overflow: hidden; border-radius: 30px; 
  max-width: 1000px; margin-top: var(--section-pad-top) !important; margin-bottom: var(--section-pad-bottom) !important; margin-left: auto !important; margin-right: auto !important; 
  box-shadow: 0 20px 50px rgba(15,23,42,0.3);
}
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -10%; width: 600px; height: 600px; background: #3b82f6; border-radius: 50%; filter: blur(150px); opacity: 0.3; }
.cta-banner::after { content: ''; position: absolute; bottom: -50%; right: -10%; width: 600px; height: 600px; background: #06b6d4; border-radius: 50%; filter: blur(150px); opacity: 0.2; }
.cta-content { position: relative; z-index: 2; text-align: center; color: white; }
.cta-content h2 { color: white; font-size: var(--fs-section-title); margin-bottom: 25px; }
.cta-content p { color: #cbd5e1; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }
.btn-outline-custom { 
  background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); 
  padding: 16px 45px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700; transition: 0.3s; 
}
.btn-outline-custom:hover { background: white; color: var(--navy-dark); }

/* Footer */
.footer { display: flex; flex-wrap: wrap; position: relative; background: var(--navy-darker); font-family: var(--font-main); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo-sidebar {
  width: 100px; background: rgba(255,255,255,0.02); display: flex; align-items: center; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.05); position: relative;
}
.footer-logo-sidebar img { 
  transform: rotate(-90deg); 
  width: 220px; 
  filter: invert(1) grayscale(1) brightness(2); 
  mix-blend-mode: screen; 
  opacity: 1; 
}
.footer-left { flex: 1; padding: 80px; min-width: 60%; }
.footer-contact-row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 50px; margin-bottom: 50px; }
.contact-item-f { display: flex; align-items: center; gap: 20px; }
.contact-item-f .icon-f { 
  width: 60px; height: 60px; border-radius: 20px; background: rgba(255,255,255,0.05); 
  display: flex; align-items: center; justify-content: center; color: var(--accent-blue); transition: 0.3s; border: 1px solid rgba(255,255,255,0.1);
}
.contact-item-f:hover .icon-f { background: var(--accent-blue); color: white; transform: translateY(-5px); }
.contact-item-f small { display: block; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.contact-item-f strong { font-family: var(--font-heading); font-weight: 700; color: white; display: block; max-width: 200px; white-space: normal; overflow: visible; word-break: break-all;}

.footer-col h5 { color: white; margin-bottom: 35px; position: relative; display: inline-block; }
.footer-col h5::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 30px; height: 3px; background: var(--accent-blue); border-radius: 3px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #94a3b8; transition: 0.3s; font-weight: 500; }
.footer-col ul li a:hover { color: white; padding-left: 8px; }

.newsletter-form { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.newsletter-form input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 18px 25px; border-radius: 12px; color: white; outline: none; transition: 0.3s; }
.newsletter-form input:focus { border-color: var(--accent-blue); background: rgba(255,255,255,0.1); }
.newsletter-form button { background: var(--accent-blue); color: white; border: none; padding: 18px 25px; border-radius: 12px; font-family: var(--font-heading); font-weight: 700; cursor: pointer; transition: 0.3s; }
.newsletter-form button:hover { background: #2563eb; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(59,130,246,0.2); }

.social-icons-f { display: flex; gap: 15px; }
.social-icons-f a { 
  width: 45px; height: 45px; background: rgba(255,255,255,0.05); color: white; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; transition: 0.3s; border: 1px solid rgba(255,255,255,0.1);
}
.social-icons-f a:hover { background: var(--accent-blue); border-color: var(--accent-blue); transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; margin-top: 60px; color: #64748b; text-align: center; }

.footer-right { 
  width: 450px; background: linear-gradient(135deg, rgba(15,23,42,0.5), rgba(2,6,23,0.8));
  padding: 80px 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-left: 1px solid rgba(255,255,255,0.05);
}
.footer-right h2 { color: white; margin-bottom: 50px; }
.query-circle { 
  width: 200px; height: 200px; border-radius: 50%; background: transparent; border: 2px dashed rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: white; transition: 0.5s; position: relative;
}
.query-circle::before { content: ''; position: absolute; inset: 10px; background: var(--accent-blue); border-radius: 50%; z-index: -1; transition: 0.5s; }
.query-circle:hover { transform: rotate(15deg); border-color: rgba(255,255,255,0.5); }
.query-circle:hover::before { transform: scale(0.9); background: #2563eb; }

@media (max-width: 991px) {
  .footer-logo-sidebar, .footer-right { display: none !important; }
  .footer-left { padding: 50px 20px; }
  .footer-contact-row { flex-direction: column; gap: 30px; }
}
.about-title  em {
    color: var(--accent-blue);
    font-style: normal;
    position: relative;
    z-index: 1;
}
.products-section h2  em {
    color: var(--accent-blue);
    font-style: normal;
    position: relative;
    z-index: 1;
}
.mission-title   em {
    color: var(--accent-blue);
    font-style: normal;
    position: relative;
    z-index: 1;
}
/* Floating Action Buttons */
/* .float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  
  box-shadow: 0px 10px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulseGlow 3s infinite;
} */
.float-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0px 15px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.float-scroll-up {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: #fff;
  border-radius: 50%;
  text-align: center;
  
  box-shadow: 0px 10px 20px rgba(59, 130, 246, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  animation: pulseGlow 3s infinite;
}
.float-scroll-up.show {
  opacity: 1;
  visibility: visible;
}
.float-scroll-up:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0px 15px 25px rgba(59, 130, 246, 0.6);
  color: #fff;
}

@media (max-width: 767px) {
  .float-whatsapp {
    width: 50px; height: 50px; bottom: 20px; right: 20px; 
  }
  .float-scroll-up {
    width: 45px; height: 45px; bottom: 20px; left: 20px; 
  }
}

/* Universal Button Animations & Radius */
.btn-navy, .btn-lightblue, .btn-black-pill, .btn-primary-custom, .btn-outline-custom, .newsletter-form button {
  border-radius: 50px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  z-index: 1;
}

.btn-navy::after, .btn-lightblue::after, .btn-black-pill::after, .btn-primary-custom::after, .btn-outline-custom::after, .newsletter-form button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
}

.btn-navy:hover::after, .btn-lightblue:hover::after, .btn-black-pill:hover::after, .btn-primary-custom:hover::after, .btn-outline-custom:hover::after, .newsletter-form button:hover::after {
  animation: ripple-effect 1s ease-out infinite;
}

@keyframes ripple-effect {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.btn-navy:hover, .btn-lightblue:hover, .btn-black-pill:hover, .btn-primary-custom:hover, .btn-outline-custom:hover, .newsletter-form button:hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

.btn-navy:active, .btn-lightblue:active, .btn-black-pill:active, .btn-primary-custom:active, .btn-outline-custom:active, .newsletter-form button:active {
  transform: translateY(0) scale(0.95) !important;
}

/* Left-to-Right Wipe Animations for All Buttons */
.btn-navy, .btn-lightblue, .btn-black-pill, .btn-primary-custom, .btn-outline-custom, .newsletter-form button {
  background-image: none !important;
  background-size: auto !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Base button backgrounds - Unified Style */
.btn-navy, .btn-lightblue, .btn-black-pill, .btn-primary-custom, .btn-outline-custom, .newsletter-form button { 
  background-image: linear-gradient(to right, var(--accent-cyan), var(--navy-light)) !important; 
  color: white !important; 
  border: 1px solid rgba(255, 255, 255, 0.6) !important; 
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: 12px 28px !important;
  
}

/* The left-to-right wipe layer */
.btn-navy::before, .btn-lightblue::before, .btn-black-pill::before, .btn-primary-custom::before, .btn-outline-custom::before, .newsletter-form button::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  z-index: -1;
  transition: width 0.4s ease-in-out !important;
  border-radius: 50px;
}

/* Unified Wipe layer colors */
.btn-navy::before, .btn-lightblue::before, .btn-black-pill::before, .btn-primary-custom::before, .btn-outline-custom::before, .newsletter-form button::before { 
  background-image: linear-gradient(to right, var(--navy-light), var(--navy-darker)) !important; 
}

/* Expand the wipe layer to 100% on hover */
.btn-navy:hover::before, .btn-lightblue:hover::before, .btn-black-pill:hover::before, .btn-primary-custom:hover::before, .btn-outline-custom:hover::before, .newsletter-form button:hover::before {
  width: 100% !important;
}

/* Adjust Blogs section to specifically fit 3 cards perfectly without empty space */
@media (min-width: 1200px) {
  .blogs-section .scrollable-cards-row > div {
    width: calc(33.333% - 20px);
  }
}

/* Theme Backgrounds for Services & Why Choose Us */
.services-section {
  background: linear-gradient(135deg, #f4f8fb 0%, #e4eff8 100%) !important;
  border-top: none !important;
}

.why-choose-us {
  background: linear-gradient(135deg, var(--navy-darker), var(--navy-dark)) !important;
  position: relative;
  z-index: 1;
}

/* Invert heading colors for the dark Why Choose Us background */
.why-choose-us h2.display-6 {
  color: white !important;
}

/* Add a glowing shadow to white cards inside the dark background for a premium pop */
.why-choose-us .wcu-card {
  box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
  border: none !important;
}

.parallax-section {
  position: relative;
  background-image: url('../images/hero_banner_image.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: var(--section-pad-top); padding-bottom: var(--section-pad-bottom);
}

.topbar-right a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-gray);
}

.parallax-section .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 39, 64, 0.75); /* Deep navy overlay */
  z-index: 0;
}

.parallax-section .parallax-content {
  z-index: 1;
}

.parallax-section h2 {
  font-family: var(--font-heading);
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.parallax-section p {
  color: rgba(255, 255, 255, 0.9);
  
  line-height: 1.8;
}

/* Second Parallax Section */
.parallax-section-2 {
  background-image: url('https://hivends.org/insinius-pharma-new/site/wp-content/uploads/2026/06/insinius_image.jpeg');
}

/* Custom little fade up for AOS */
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0) !important;
}
[data-aos="fade-up"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

/* Typewriter Cursor */
.typewrite > .wrap {
  border-right: 0.08em solid currentColor;
  padding-right: 2px;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { border-color: transparent; }
  50% { border-color: currentColor; }
}
//max-mega-menu
/* ==========================================================================
   MAX MEGA MENU - VARIABLES & ALIGNMENT BRIDGE
   ========================================================================== */

/* 1. Eliminate duplicate mobile toggles built into the plugin */
#mega-menu-wrap-primary .mega-menu-toggle {
    display: none !important;
}

/* 2. Clear out plugin wrapper containers for fluid horizontal layout */
#mega-menu-wrap-primary, 
#mega-menu-wrap-primary ul#mega-menu-primary {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0px 0px 0px 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important; /* Forces perfect middle vertical alignment */
}

/* 3. Link plugin tags natively to your precise :root design tokens */
#mega-menu-wrap-primary ul#mega-menu-primary > li.mega-menu-item > a.mega-menu-link { 
    font-family: var(--font-heading) !important; /* Inherits 'Outfit', sans-serif */
    font-weight: 600 !important; 
    font-size: var(--fs-body) !important; /* Binds directly to your responsive 16px/15px token */
    color: var(--text-gray) !important; /* Inherits #475569 */
    margin: 0 16px !important; /* Balanced horizontal gaps between items */
    padding: 12px 0 !important; /* Balanced vertical link click height target to drop them down */
    position: relative !important;
    background: transparent !important;
    text-transform: capitalize !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    letter-spacing: -0.01em !important;
}
@media only screen and (max-width: 768px) {
  #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #222;
    padding: 0px;
    display: none;
    margin: -26px 0px 0px -15px !important;
}
}

/* ==========================================================================
   4. HOVER UNDERLINE ACCENT ANIMATION USING TOKENS
   ========================================================================== */
#mega-menu-wrap-primary ul#mega-menu-primary > li.mega-menu-item > a.mega-menu-link::after {
    content: '';
    position: absolute;
    width: 0; 
    height: 2px;
    bottom: 4px; /* Keeps the sliding bar tracking closely beneath text baseline */
    left: 0;
    background-color: var(--accent-blue); /* Inherits your brand #315b85 tint */
    transition: width 0.3s ease;
}

/* Animate underline width to 100% on active and hover item channels */
#mega-menu-wrap-primary ul#mega-menu-primary > li.mega-menu-item:hover > a.mega-menu-link::after,
#mega-menu-wrap-primary ul#mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::after { 
    width: 100% !important; 
}

/* Swap typography hex signatures on focus/hover actions */
#mega-menu-wrap-primary ul#mega-menu-primary > li.mega-menu-item:hover > a.mega-menu-link,
#mega-menu-wrap-primary ul#mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link { 
    color: var(--text-dark) !important; /* Safely transitions to #0f172a */
}

/* 5. Center-align menu segment and separate cleanly from brand logo */
@media (min-width: 992px) {
    #mega-menu-wrap-primary {
        margin-left: 35px !important; /* Creates clear spacing right after the logo image */
        margin-right: auto !important; /* Seamlessly forces the phone widget block over to the right side */
    }
}

/* ==========================================================================
   OFFCANVAS TEXT ALIGNMENT & WIDTH RESET CORRECTIONS
   ========================================================================== */

/* Forces the container list to reset layout defaults */
ul.mobile-vertical-nav {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

ul.mobile-vertical-nav > li {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
}

/* Forces links to align to the left and spaces drop menus nicely */
ul.mobile-vertical-nav > li > a.mega-menu-link,
ul.mobile-vertical-nav > li > a {
    font-family: var(--font-heading) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-gray) !important;
    padding: 12px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important; /* Pushes drop arrows to the far right side */
    text-align: left !important; /* Clears centering completely */
    width: 100% !important;
    border-radius: 8px !important;
    background: transparent !important;
    transition: all 0.2s ease-in-out !important;
}

/* Background hover tracking block transitions */
ul.mobile-vertical-nav > li > a:hover {
    color: var(--navy-dark) !important;
    background-color: var(--bg-offwhite) !important;
    padding-left: 18px !important;
}

/* ==========================================================================
   CRITICAL FIX: FORCING MAX MEGA MENU TO FILL THE ENTIRE MOBILE DRAWER
   ========================================================================== */
@media (max-width: 991.98px) {
    /* Clear out the spacing restrictions seen in image_0cb66f.png */
    #mobileNavigationDrawer .mega-menu-wrap,
    #mobileNavigationDrawer #mega-menu-wrap-primary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        background: transparent !important;
    }

    #mobileNavigationDrawer ul.mega-menu-primary {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }

    #mobileNavigationDrawer li.mega-menu-item {
        width: 100% !important;
        display: block !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #mobileNavigationDrawer a.mega-menu-link {
        width: 100% !important;
        text-align: left !important;
        justify-content: flex-start !important;
        padding-left: 14px !important; /* Matches your clean Bootstrap padding layout */
    }
    
    .offcanvas .mega-menu-toggle {
        display: none !important; /* Keeps the duplicate plugin hamburger hidden */
    }
}


/* new added */

:root {
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(12px);
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* Hover-Reveal Card for Services */
.hover-reveal-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fff;
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}
.hover-reveal-card .reveal-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, var(--navy-dark, #0a192f) 0%, var(--primary-color, #0056b3) 100%); */
  background: linear-gradient(135deg, var(--navy-dark, #0a192f) 0%, #112d55 100%);
  color: white;
  padding: 2.5rem;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hover-reveal-card:hover .reveal-content {
  bottom: 0;
}
.hover-reveal-card .initial-content {
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hover-reveal-card:hover .initial-content {
  opacity: 0;
}

/* Floating Parallax Products */
@keyframes floatAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.floating-product {
  animation: floatAnimation 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.floating-product:hover {
  transform: scale(1.05) translateY(-5px);
  animation-play-state: paused;
}

/* Floating Label Inputs */
.form-floating-custom {
  position: relative;
}
.form-floating-custom input,
.form-floating-custom textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  border-radius: 0;
  color: white;
  padding: 1rem 0;
  transition: border-color 0.3s ease;
}
.form-floating-custom input:focus,
.form-floating-custom textarea:focus {
  box-shadow: none;
  border-color: var(--primary-color, #0056b3);
}
.form-floating-custom label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  transition: all 0.3s ease;
}
.form-floating-custom input:focus ~ label,
.form-floating-custom input:not(:placeholder-shown) ~ label,
.form-floating-custom textarea:focus ~ label,
.form-floating-custom textarea:not(:placeholder-shown) ~ label {
  top: -1rem;
  font-size: 0.8rem;
  color: var(--primary-color, #0056b3);
}

/* Blogs Asymmetric */
.magazine-featured {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.magazine-featured img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.magazine-featured:hover img {
  transform: scale(1.03);
}
.magazine-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
}
.magazine-side-post {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.magazine-side-post:hover {
  transform: translateX(5px);
}
.magazine-side-post img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Accordion Micro-interactions */
.accordion-button::after {
  transition: transform 0.4s ease;
}
.accordion-button:not(.collapsed) {
  background-color: rgba(0, 86, 179, 0.05);
  color: var(--navy-dark, #0a192f);
}

/* new added */

/* Breadcrumbs0 */

/* Premium Breadcrumbs Banner */
/* Premium Breadcrumbs Banner - Main Container */
.premium-breadcrumbs-banner {
    /* Always apply a high-end subtle corporate gradient */
    /* background: linear-gradient(135deg, #f3f7f9 0%, #e6eff2 100%) !important; */
    background: linear-gradient(135deg, #f3f7f9 0%, #3a6d7e 100%) !important;
    padding: 50px 0;
    border-bottom: 1px solid #dce6ea;
    width: 100%;
    box-sizing: border-box;
}

/* Inner alignment layout */
.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Page Title Style */
.breadcrumbs-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d; /* Deep premium blue */
    margin: 0;
    font-family: inherit;
    letter-spacing: -0.5px;
}

/* Navigation Links Wrap */
.breadcrumbs-nav {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

/* Individual Crumb Items */
.crumb-link {
    color: #cad1db;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.crumb-link:hover {
    color: #c4c6d3;
    border-bottom: 2px double #cad1db;
}

/* Delimiter Icon / Arrow */
.crumb-delimiter {
    margin: 0 10px;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}

/* Current Page (Active/Last item) */
.crumb-current {
    color: #1a365d;
    font-weight: 600;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .breadcrumbs-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .premium-breadcrumbs-banner {
        padding: 35px 0;
    }
    .breadcrumbs-title {
        font-size: 26px;
    }
}

/* Breadcrumbs */
/* Product Page Specific Styles */
.pharma-sidebar {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}
.filter-title {
  font-weight: 700;
  color: var(--navy-dark, #0a192f);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(0,86,179,0.1);
  padding-bottom: 0.5rem;
}
.filter-group {
  margin-bottom: 2rem;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-checkbox:hover {
  color: var(--primary-color, #0056b3);
}
.filter-checkbox input {
  margin-right: 0.8rem;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color, #0056b3);
}
.product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,86,179,0.1);
}
.product-img-wrapper {
  position: relative;
  height: 220px;
  background: var(--bg-light, #f8f9fa);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  mix-blend-mode: multiply;
}
.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--navy-dark, #0a192f);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.product-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-color, #0056b3);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark, #0a192f);
  margin-bottom: 1rem;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.meta-tag {
  background: rgba(0,86,179,0.05);
  color: #555;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(0,86,179,0.1);
}
.product-action {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.btn-product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  color: var(--primary-color, #0056b3);
  border: 2px solid var(--primary-color, #0056b3);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-product:hover {
  background: var(--primary-color, #0056b3);
  color: #fff;
}

/* Product Card */

/* Floating  */
/* Example positioning to stack them vertically on the right side */


/* =========================================
   DESKTOP VIEW (Floating Bubbles)
   ========================================= */

/* Hide text labels on desktop */
.mobile-text {
    display: none; 
}

/* Base styling for all three buttons */
.float-call, .float-mail, .float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 20px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Individual positions and colors */
.float-whatsapp { 
    bottom: 20px; 
    background: #25d366; 
}
.float-call { 
    bottom: 90px; 
    background: #0a1128; /* Dark blue matching your screenshot */
} 
.float-mail { 
    bottom: 160px; 
    background: #8cc63f; /* Light green matching your screenshot */
} 

/* =========================================
   MOBILE VIEW (Horizontal Bottom Bar)
   ========================================= */
@media (max-width: 768px) {
    
    /* Create a full-width flex container at the bottom */
    .floating-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 999;
    }

    /* Transform bubbles into flat rectangles */
    .float-call, .float-mail, .float-whatsapp {
        position: static; /* Removes fixed position from individual buttons */
        width: 33.333%;   /* Split into 3 equal columns */
        height: 55px;
        border-radius: 0; /* Remove circular shape */
        box-shadow: none;
        flex-direction: row; /* Align icon and text side-by-side */
        gap: 6px; /* Space between icon and text */
        font-size: 14px; /* Slightly smaller font for mobile */
        font-weight: bold;
    }

    /* Show the text labels on mobile */
    .mobile-text {
        display: inline-block;
    }
    
    /* Remove original 'bottom' spacing from desktop */
    .float-whatsapp { bottom: 0; }
    .float-call { bottom: 0; }
    .float-mail { bottom: 0; }
}
/* Floating  */

#pharma-product-grid {
    /* Set this to the height of 6 cards + gap, roughly 800px-1000px depending on your card height */
    min-height: 900px; 
    transition: opacity 0.3s ease;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
      white-space: nowrap;
  }
  #mega-menu-wrap-primary {
        margin-left: auto !important; /* Pushes menu away from logo */
        margin-right: 0 !important;    /* Keeps menu anchored to the right */
        width: auto !important;
        flex: 1;                      /* Allows it to grow to fill space */
        display: flex !important;
        justify-content: flex-end;    /* Aligns all items to the right */
    }
}
