/* ===========================
   Global Styles & Variables
   =========================== */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #00d4ff;
    --dark-bg: #ffffff;
    /* Soft Light Gray Base */
    --darker-bg: #ffffff;
    /* White Base */
    --light-text: #1a1a1a;
    /* Dark Gray Text */
    --gray-text: #555555;
    /* Medium Gray Text */
    --accent-gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --card-bg: rgba(255, 255, 255, 0.7);
    /* Glass Background */
    --card-border: rgba(255, 255, 255, 0.5);
    /* Glass Border */
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    /* Soft Shadow */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.hero-text-block,
.section-title {
    font-family: 'Poppins';
}

.font-Poppins {
    font-family: 'Poppins', sans-serif !important;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding-top: 20px;
    background: transparent;
    transition: var(--transition);
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: center;
    /* Center the single main pill */
    align-items: center;
}

/* The Main Floating Pill Container */
.nav-floating-pill {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    /* Light pill background per reference */
    /* Alternatively for dark theme preference: background: rgba(22, 26, 46, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); */

    /* Going with Light Theme Pill as requested "exactly same design" */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    /* Less padding right for button */
    border-radius: 100px;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 600px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-img {
    height: 50px;
    width: auto;
    /* Make logo dark for light pill */
}

.logo-text {
    color: #1a1a1a;
    /* Dark text for light pill */
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.logo-highlight {
    color: #1a1a1a;
    font-weight: 700;
}

/* Menu inside pill */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #666;
    /* Dark gray for light pill */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #000;
    background: #fff;
    /* White pill for active item inside light grey bar? Or simple text highlight */
    background: rgba(0, 0, 0, 0.05);
}

/* Right Actions */
.nav-right-actions {
    display: flex;
    align-items: center;
}

.btn-nav-cta {
    background: #111;
    /* Dark button on light pill */
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-nav-cta i {
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    margin-left: 1rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    /* Dark hamburger for light pill */
    transition: var(--transition);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-floating-pill {
        flex-direction: row;
        width: 100%;
        min-width: auto;
        padding: 1rem;
        box-shadow: none;
        justify-content: space-between;
    }

    .logo-text {
        color: var(--light-text);
    }

    .logo-img {
        filter: brightness(0.1);
    }

    .hamburger span {
        background: var(--light-text);
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        /* Center items horizontally */
        gap: 0;
        padding: 100px 20px 50px;
        /* Reduced top padding slightly */
        z-index: 10000;
        /* Super high z-index */
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
        overflow-y: auto;
        opacity: 0;
        /* Force full opacity when active */
        pointer-events: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1 !important;
        pointer-events: auto;
    }

    .nav-menu li a {
        color: #1a1a1a !important;
        font-size: 1.1rem;
        padding: 15px 20px;
        display: block;
        text-align: center;
        /* Center text */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .btn-nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed to left align to match reference */
    text-align: left;
    /* Changed to left align */
    padding-top: 80px;
    background: #0a0e27;
    /* Fallback */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    /* Darker overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-logo-img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 45px;
}

.hero-text-block {
    display: inline-block;
    background-color: rgb(0 125 255 / 48%);
    /* Burnt orange from reference */
    color: white;
    font-size: 45px;
    /* Large font */
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    line-height: 1.2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.10rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    min-height: 4rem;
    /* Prevent layout shift */
}

/* Typewriter Cursor */
.typed-sentences::after {
    content: '_';
    display: inline-block;
    animation: blink-cursor 0.75s step-end infinite;
    color: var(--secondary-color);
    margin-left: 2px;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 0px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 5px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 15px;
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0.9;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature-item i {
    font-size: 1.1rem;
    color: white;
    /* Or secondary color if preferred */
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===========================
   Impact & Strategy Section
   =========================== */
.impact-section {
    background: var(--dark-bg);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.impact-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.scroll-reveal-text {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, var(--light-text) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    background: linear-gradient(to right, var(--light-text) 50%, rgb(148 148 148) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.1s linear;
}

.pills-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.pill {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.pill i {
    font-size: 1.1rem;
}

/* Specific Pill Styles */
.pill-creativity {
    background: rgba(189, 147, 249, 0.1);
    color: #bd93f9;
    border-color: rgba(189, 147, 249, 0.8);
}

.pill-innovation {
    background: rgba(139, 233, 253, 0.1);
    color: #8be9fd;
    border-color: rgba(139, 233, 253, 0.8);
}

.pill-strategy {
    background: rgba(255, 184, 108, 0.1);
    color: #ffb86c;
    border-color: rgba(255, 184, 108, 0.8);
}

.pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-prefix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    vertical-align: top;
    line-height: 1;
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-text);
    margin-top: 1rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
    /* Hidden on mobile by default, shown in MQ */
}

@media (min-width: 768px) {
    .stat-divider {
        display: block;
    }
}

/* ===========================
   IoT Showcase Section
   =========================== */
.iot-showcase {
    /* IoT Showcase Section */
    background-color: #f6f9fc;
    background-image: linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    /* Ensure it stays above/below correctly */
}

/* Ambient Glow for IoT Showcase */
.iot-showcase::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.iot-showcase .section-title {
    color: var(--light-text);
    background: linear-gradient(135deg, #1a1a1a 0%, #0066ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iot-showcase .section-subtitle {
    color: var(--gray-text);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.showcase-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.showcase-column.left .feature-block {
    flex-direction: row-reverse;
    text-align: right;
}

.showcase-column.right .feature-block {
    flex-direction: row;
    text-align: left;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.08);
    /* Soft Blue Background */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    /* Blue Icon */
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-block:hover .feature-icon-circle {
    background: var(--primary-color);
    color: #fff;
    /* White icon on hover */
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transform: scale(1.1);
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    /* Dark text */
}

.feature-text p {
    color: var(--gray-text);
    /* Gray text */
    font-size: 0.95rem;
    line-height: 1.6;
}

.device-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.device-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 15px rgba(64, 99, 253, 0.4));
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 968px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    /* On mobile, reorder so image is first or in middle naturally */
    .showcase-column.center {
        order: -1;
        /* Image first */
        margin-bottom: 2rem;
    }

    .showcase-column.left .feature-block {
        flex-direction: row;
        text-align: left;
    }
}

/* ===========================
   Platform Overview Section
   =========================== */
.platform-overview {
    /* Tall container for scroll track */
    height: auto;
    /* changed from 300vh */
    padding: 0;
    position: relative;
}

.platform-sticky-wrapper {
    position: relative;
    /* changed from sticky */
    top: 0;
    width: 100%;
    height: auto;
    /* changed from 100vh */
    overflow: visible;
    /* changed from hidden */
    background: url('../images/bg-tablet.jpg') no-repeat center center;
    background-color: #0a0e27;
    background-size: cover;
    display: flex;
    flex-direction: column;
    /* Added to stack content vertically */
    align-items: center;
    /* Center content */
    justify-content: flex-start;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 5rem;
    /* Add padding at bottom */
}

.platform-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.platform-overview .container {
    position: relative;
    z-index: 2;
    /* Content on top */
}

.platform-visual {
    position: relative;
    text-align: center;
}

.platform-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(139, 233, 253, 0.15) 0%, transparent 70%);
    z-index: 0;
    filter: blur(60px);
}

.platform-tablet-img {
    position: relative;
    z-index: 1;
    max-width: 60%;
    height: auto;
    border-radius: 12px;
    transition: var(--transition);
    animation: float-tablet 6s ease-in-out infinite;
}

@keyframes float-tablet {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0e27;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.feature-detail {
    text-align: left;
    padding: 0 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-detail:last-child {
    border-right: none;
}

.feature-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-detail p {
    color: #a0a4b8;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 968px) {
    .platform-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-detail {
        text-align: center;
        padding: 0;
        border-right: none;
    }
}

/* ===========================
   Innovation Services Section
   =========================== */
.innovation-services {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Ensure canvas doesn't overflow */
    background: #ffffff;
    text-align: center;
    z-index: 2;
    /* Stacks above sticky wrapper */
}

#innovation-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind connection cards */
    pointer-events: none;
}

.innovation-services .container {
    position: relative;
    z-index: 1;
    /* Content on top */
}

.innovation-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    line-height: 1.2;
    color: #a0a0a0;
    /* Start Light Grey */
    transition: color 1s ease;
}

.innovation-headline.active {
    color: #000000;
    /* Scroll to Black */
}

.text-aesthetics {
    font-family: 'Playfair Display', serif;
    /* Ensure this font is available or fallback */
    font-style: italic;
    font-weight: 400;
    color: #a0a0a0;
    /* Slightly softer white */
}

.services-card-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.service-card-item {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
}

.service-card-item:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: var(--dark-bg);
    /* Text color on colored cards */
}

/* Card Specific Colors (Glassmorphism effect) */
.card-purple {
    background: rgb(169 138 252 / 60%);
    border-color: rgba(169, 138, 252, 0.3);
}

.card-purple:hover {
    background: rgba(187, 163, 255, 0.9);
}

.card-purple .card-icon,
.card-purple h3 {
    color: #1a1a1a;
}

.card-purple:hover .card-icon,
.card-purple:hover h3 {
    color: #1a1a1a;
}

.card-pink {
    background: rgb(255 192 203 / 60%);
    border-color: rgba(255, 192, 203, 0.3);
}

.card-pink:hover {
    background: rgba(255, 192, 203, 0.9);
}

.card-pink .card-icon,
.card-pink h3 {
    color: #1a1a1a;
}

.card-pink:hover .card-icon,
.card-pink:hover h3 {
    color: #1a1a1a;
}

.card-blue {
    background: rgb(135 206 250 / 60%);
    border-color: rgba(135, 206, 250, 0.3);
}

.card-blue:hover {
    background: rgba(135, 206, 250, 0.9);
}

.card-blue .card-icon,
.card-blue h3 {
    color: #1a1a1a;
}

.card-blue:hover .card-icon,
.card-blue:hover h3 {
    color: #1a1a1a;
}

.card-orange {
    background: rgb(255 200 150 / 60%);
    border-color: rgba(255, 200, 150, 0.3);
}

.card-orange:hover {
    background: rgba(255, 200, 150, 0.9);
}

.card-orange .card-icon,
.card-orange h3 {
    color: #1a1a1a;
}

.card-orange:hover .card-icon,
.card-orange:hover h3 {
    color: #1a1a1a;
}

.card-green {
    background: rgb(152 251 152 / 60%);
    border-color: rgba(152, 251, 152, 0.3);
}

.card-green:hover {
    background: rgba(152, 251, 152, 0.9);
}

.card-green .card-icon,
.card-green h3 {
    color: #1a1a1a;
}

.card-green:hover .card-icon,
.card-green:hover h3 {
    color: #1a1a1a;
}


/* CTA Bar */
.cta-bar {
    background: #0a0e27;
    /* Dark background */
    border-radius: 100px;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    text-align: left;
}

.cta-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    /* Force White */
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: #a0a4b8;
    /* Light Gray */
    font-size: 1rem;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-white {
    background: #ffffff;
    /* Force White */
    color: #000000;
    /* Dark Text */
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-white:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    /* Force White */
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .services-card-row {
        flex-direction: column;
        align-items: center;
    }

    .service-card-item {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .service-card-item h3 {
        text-align: left;
    }

    .cta-bar {
        flex-direction: column;
        padding: 2rem;
        border-radius: 20px;
        gap: 2rem;
    }

    .cta-content {
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   Vision & Mission
   =========================== */
.vision-mission {
    background: var(--darker-bg);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vm-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* ===========================
   Why Us Section
   =========================== */
.why-us {
    background: var(--darker-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* ===========================
   Industries Section
   =========================== */
.industries {
    background: var(--dark-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-color: var(--primary-color);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: var(--darker-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-text);
    line-height: 1.6;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent white */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.social-links {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.social-links h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-gradient);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(to top, #eef2f5, #ffffff);
    padding: 80px 0 30px;
    color: #4a5568;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo .logo-accent {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 2px;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 300px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-list li i {
    color: var(--primary-color);
    width: 16px;
}

.btn-outline-footer {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    width: fit-content;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-outline-footer:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

/* Links Columns (Cards) */
.links-col {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.links-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
    color: #1a1a1a;
    font-size: 1.4rem;
    /* Larger heading */
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 18px;
    /* More spacing */
}

.footer-links a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    /* Cyan accent for arrow */
    opacity: 0.7;
    transition: var(--transition);
}

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

.footer-links a:hover i {
    opacity: 1;
    color: var(--primary-color);
}

/* ===========================
   Blogs Section
   =========================== */
.blogs-section {
    padding: 100px 0;
    background: transparent;
    /* Rely on body bg or create gradient */
}

.blogs-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.blogs-header-row .section-title {
    margin-bottom: 0;
    text-align: left;
}

.blogs-header-row .btn-primary {
    background-color: #0066ff;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blogs-header-row .btn-primary:hover {
    background-color: #004ecc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-desc {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    /* Space for button */
    flex-grow: 1;
}

.blog-arrow-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 8px;
    /* Slightly rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.3s, transform 0.3s;
}

.blog-arrow-btn i {
    transform: rotate(45deg);
    /* Point up-right */
    transition: transform 0.3s;
}

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

.blog-arrow-btn:hover i {
    transform: rotate(45deg) translate(2px, -2px);
}

@media (max-width: 768px) {
    .blogs-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brand-col {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: rgba(252, 252, 252, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
        border-radius: 20px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-logo-img {
        height: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .vm-grid,
    .services-grid,
    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Features Tabs Section
   =========================== */
.features-tabs-section {
    background: linear-gradient(135deg, #f2f4f8 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pill-label {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Tab Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--gray-text);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.tab-btn:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.tab-btn i {
    font-size: 1.1rem;
}

/* Tab Content */
.tabs-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Text Column */
.tab-text-col h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.tab-lead {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tab-feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.tab-feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light-text);
    font-weight: 500;
}

.tab-feature-list li i {
    color: var(--secondary-color);
}

/* Visual Column & Cards */
.tab-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    /* Light shadow */
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.visual-card.centered-content {
    justify-content: center;
    align-items: center;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--light-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* --- Visual 1: Real-Time --- */
.visual-body-realtime {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.chart-bar-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.chart-bar {
    width: 12%;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 5px 5px 0 0;
    animation: barHeight 2s ease-in-out infinite alternate;
}

.b1 {
    height: 40%;
    animation-delay: 0s;
}

.b2 {
    height: 70%;
    animation-delay: 0.2s;
}

.b3 {
    height: 50%;
    animation-delay: 0.4s;
}

.b4 {
    height: 90%;
    animation-delay: 0.1s;
}

.b5 {
    height: 60%;
    animation-delay: 0.5s;
}

@keyframes barHeight {
    0% {
        transform: scaleY(0.8);
    }

    100% {
        transform: scaleY(1.1);
    }
}

.metric-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.metric-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.metric-box .label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 0.3rem;
}

.metric-box .val {
    font-weight: 700;
    color: var(--light-text);
}

/* --- Visual 2: Analytics --- */
.visual-body-analytics {
    flex: 1;
}

.graph-line-svg {
    height: 100px;
    margin-bottom: 1.5rem;
    width: 100%;
}

.line-chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.line-chart-svg polyline {
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    animation: drawLine 3s ease forwards;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.data-table-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dt-row {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    width: 100%;
}

.dt-row.header {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

/* --- Visual 3: Alerts --- */
.notification-bell {
    position: relative;
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.bell-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    opacity: 0;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.alert-toast {
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.4);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.alert-toast i.warning {
    color: #ff5722;
    font-size: 1.5rem;
}

.toast-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.t-title {
    font-weight: 700;
    color: #ff5722;
    font-size: 0.9rem;
}

.t-msg {
    font-size: 0.8rem;
    color: #1a1919;
}


/* --- Visual 4: Security --- */
.security-shield {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lock-icon {
    position: absolute;
    font-size: 2rem;
    color: white;
}

.user-badge-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.u-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.u-badge.admin {
    background: rgba(0, 102, 255, 0.2);
    color: #3f98f1;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.u-badge.operator {
    background: rgba(0, 212, 255, 0.2);
    color: #32adc5;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.u-badge.viewer {
    background: rgb(238 207 179 / 28%);
    color: #f7a55c;
    border: 1px solid #f2c093;
}


/* Responsive */
@media (max-width: 968px) {
    .tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        flex-shrink: 0;
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tab-text-col {
        order: 2;
        text-align: center;
    }

    .tab-visual-col {
        order: 1;
    }

    .tab-feature-list {
        display: inline-block;
        text-align: left;
    }
}

/* ===========================
   Funfact Scroll Section
   =========================== */
/* --- Text Section --- */
.funfact-text-section {
    padding: 6rem 0 2rem 0;
    text-align: center;
    background: var(--dark-bg);
}

/* --- Visuals Section --- */
.funfact-visuals-section {
    padding: 2rem 0 6rem 0;
    background: var(--dark-bg);
}

/* --- Header --- */
.funfact-header {
    /* Reset simplified styles */
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.funfact-header .pill-label {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.funfact-header .section-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #0066ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.funfact-header .section-subtitle {
    color: var(--gray-text);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.funfact-outer-box {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    justify-content: center;
    align-items: center;
}

.funfact-image-list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}



.funfact-center-box {
    position: relative;
    width: 80%;
    max-width: 900px;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}



.funfact-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Play Button --- */
.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 10;
}

.play-button-wrapper:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-gradient);
}

/* Responsive */
@media (max-width: 991px) {
    .funfact-image-list {
        flex-direction: column;
        height: auto;
        position: relative;
        overflow: visible;
    }

    /* Removed unused funfact-outer-box and funfact-section styles */

    .funfact-center-box {
        width: 95%;
    }
}

/* Global Section Divider */
.section-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, rgb(0 125 255), transparent);
    width: 80%;
    margin: 0 auto;
}

/* =========================================
   Mobile Responsiveness (Max Width: 768px)
   ========================================= */
@media (max-width: 768px) {

    /* Global Adjustments */
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-title {
        margin-top: 2rem;
    }

    .hero-text-block {
        font-size: 28px;
        /* Reduced from 45px */
        padding: 0.4rem 1rem;
    }

    .hero-description {
        font-size: 1.1rem !important;
        /* Force override inline styles if needed, though class is better */
        text-align: left !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Impact Section */
    .impact-headline {
        font-size: 2rem;
    }

    .pills-container {
        gap: 1rem;
    }

    .pill {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
        /* Hide vertical lines on mobile */
    }

    .stat-number {
        font-size: 3.5rem;
    }

    /* IoT Showcase (Seamless Control) */
    .showcase-grid {
        grid-template-columns: 1fr;
        /* Stack columns */
        gap: 3rem;
        margin-top: 2rem;
    }

    /* Reorder: Image First, then Left Text, then Right Text OR Text blocks then Image */
    /* Let's keep DOM order but align text */
    .showcase-column.left .feature-block {
        flex-direction: row;
        /* Reset from row-reverse */
        text-align: left;
        /* Reset from right-align */
    }

    .showcase-column.center {
        order: -1;
        /* Move image to top */
        margin-bottom: 1rem;
    }

    .feature-icon-circle {
        margin-right: 0;
        /* Reset margins if any specific ones existed */
    }

    /* Platform Overview */
    .platform-visual {
        margin-bottom: 2rem;
    }

    .platform-features {
        grid-template-columns: 1fr;
    }

    /* Innovation Services */
    .innovation-headline {
        font-size: 2.2rem;
    }

    .services-card-row {
        gap: 1rem;
    }

    .service-card-item {
        width: 100%;
        /* Full width cards */
        flex: 1 1 100%;
    }

    .cta-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 2rem;
        gap: 2rem;
    }

    .cta-content {
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-actions .btn {
        width: 100%;
    }

    /* Section Divider */
    .section-divider {
        width: 90%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ===========================
   Contact Modal Styles
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ensure inputs in modal look good */
.modal .contact-form .form-group {
    margin-bottom: 1.2rem;
}

.modal .contact-form .form-group input,
.modal .contact-form .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    background: #f9f9f9;
}

.modal .contact-form .form-group input:focus,
.modal .contact-form .form-group textarea:focus {
    border-color: #0066ff;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

/* Specific Styles for Pharma Page */
.trust-signals-bar {
    background-color: #f6f9fc;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.trust-signal-item {
    display: inline-block;
    margin: 0 15px;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.trust-signal-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.compliance-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.compliance-table th,
.compliance-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.compliance-table th {
    background-color: #f1f5f9;
    color: #333;
    font-weight: 600;
}

.compliance-table tr:hover {
    background-color: #f9f9f9;
}

.feature-grid-pharma {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pharma-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.pharma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
}

.pharma-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.pharma-card ul {
    list-style: none;
    padding: 0;
}

.pharma-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.pharma-card li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Improved Pharma Feature Section */
.feature-grid-pharma-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .feature-grid-pharma-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-grid-pharma-new {
        grid-template-columns: 1fr;
    }
}


.pharma-benefit-card {
    background: #ffffff;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pharma-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pharma-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.12);
    border-color: var(--primary-color);
}

.pharma-benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pharma-benefit-card:hover .benefit-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.pharma-benefit-card:hover .benefit-icon-wrapper i {
    color: #ffffff;
}

.pharma-benefit-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.pharma-benefit-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.pharma-callout-premium {
    margin-top: 80px;
    background: #0a0e27;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    transition: all 0.5s ease;
}

.pharma-callout-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.pharma-callout-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: lightMove 3s infinite linear;
}

@keyframes lightMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.pharma-callout-icon {
    width: 90px;
    height: 90px;
    background: rgba(0, 102, 255, 0.15);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.pharma-callout-icon i {
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.4));
}

.pharma-callout-content {
    position: relative;
    z-index: 2;
}

.pharma-tag-tactical {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--secondary-color);
}

.pharma-callout-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.pharma-highlight-gold {
    color: var(--secondary-color);
    text-underline-offset: 4px;
    text-decoration-color: rgba(251, 191, 36, 0.3);
}

.pharma-callout-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    min-width: 160px;
}

.pharma-callout-badge span {
    display: block;
    color: #94a3b8;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pharma-callout-badge strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .pharma-callout-premium {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
        gap: 25px;
    }

    .pharma-callout-icon {
        margin: 0 auto;
    }

    .pharma-callout-text {
        text-align: center;
        font-size: 1.2rem;
    }

    .pharma-callout-badge {
        margin: 0 auto;
        width: fit-content;
    }
}

.faq-header {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #fff;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-answer {
    padding: 20px;
    background: #fcfcfc;
    border-top: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

/* Premium Colorful Glass Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 cards per row */
    gap: 20px;
    margin-top: 60px;
}

/* Responsive adjustment for 5-column grid */
@media (max-width: 1200px) {
    .compliance-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.compliance-glass-card {
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Based on Safeguard Style */
.card-gmp {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.card-21cfr {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.card-gdp {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-who {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.card-cdsco {
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

/* Hover Effect: Highlight and expand */
.compliance-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-gmp:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.card-21cfr:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
}

.card-gdp:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.card-who:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: #f59e0b;
}

.card-cdsco:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: #f43f5e;
}

.compliance-glass-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.compliance-glass-card:hover i {
    transform: scale(1.1);
}

/* Individual Card Icon Colors */
.card-gmp i {
    color: #3b82f6;
}

.card-21cfr i {
    color: #a855f7;
}

.card-gdp i {
    color: #10b981;
}

.card-who i {
    color: #f59e0b;
}

.card-cdsco i {
    color: #f43f5e;
}

.compliance-glass-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.compliance-glass-card:hover h4 {
    margin-bottom: 10px;
}

/* Detail Reveal - Only for hovered card */
.compliance-glass-card .compliance-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
}

.compliance-glass-card:hover .compliance-detail {
    max-height: 80px;
    opacity: 1;
}

/* Technical Parameters - Premium Specification Styles */
.parameter-spec-strip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 25px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.parameter-spec-strip:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.parameter-spec-strip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

/* Removed blue indicator on hover */

.param-icon-box {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Removed blue background on hover */

.param-info {
    flex-grow: 1;
}

.param-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.param-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

@keyframes live-pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.live-status-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #166534;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #dcfce7;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: live-pulse 1.5s infinite;
}

.usage-item-premium {
    background: #fff;
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.usage-item-premium:hover {
    border-color: #38bdf8;
    transform: translateX(10px);
    background: #f8fafc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.usage-item-premium i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 12px;
    color: #38bdf8;
}

/* Straight Single Line Process Map Styles */
.infographic-container {
    position: relative;
    padding: 20px 0;
    margin-top: 40px;
}

.infographic-wave {
    position: absolute;
    top: 55px;
    /* Aligned to pass through the exact center of the 90px circular nodes */
    left: 50px;
    right: 50px;
    height: 2px;
    z-index: 1;
    pointer-events: none;
}

.infographic-wave svg {
    width: 100%;
    height: 2px;
}

.info-map {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.info-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.info-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
    border: 8px solid;
    margin-bottom: 25px;
}

.info-node:hover .info-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Gradient Colors */
.node-1 .info-circle {
    border-color: #3b82f6;
    color: #3b82f6;
}

.node-2 .info-circle {
    border-color: #06b6d4;
    color: #06b6d4;
}

.node-3 .info-circle {
    border-color: #10b981;
    color: #10b981;
}

.node-4 .info-circle {
    border-color: #84cc16;
    color: #84cc16;
}

.node-5 .info-circle {
    border-color: #eab308;
    color: #eab308;
}

.node-description h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.node-description p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 180px;
}

@media (max-width: 991px) {
    .infographic-wave {
        display: none;
    }

    .info-map {
        flex-direction: column;
        gap: 40px;
    }

    .info-node {
        width: 100%;
    }
}



/* =========================================================
   Modern Pharma Sprinkle Lines Animation
   ========================================================= */

.pharma-animation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #0a0e27;
}

/* Precision Grid for Pharma Depth */
.precision-grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    transform-origin: center top;
    z-index: 1;
}

@keyframes gridMove {
    0% {
        transform: perspective(1000px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(1000px) rotateX(60deg) translateY(60px) translateZ(-200px);
    }
}

/* Sprinkle Lines Animation */
.sprinkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.sprinkle-line {
    position: absolute;
    top: -150px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.8), #ffffff);
    border-radius: 5px;
    animation: sprinkleFall linear infinite;
    opacity: 0;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

@keyframes sprinkleFall {
    0% {
        transform: translateY(-20vh);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(120vh);
        opacity: 0;
    }
}

/* Glowing Orbs for Depth */
.climate-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 2;
}

.orb-cold {
    top: 20%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    animation: orbitCold 15s infinite ease-in-out alternate;
}

.orb-warm {
    bottom: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    animation: orbitWarm 20s infinite ease-in-out alternate;
}

@keyframes orbitCold {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-80px, 120px) scale(1.1);
    }
}

@keyframes orbitWarm {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(120px, -80px) scale(1.1);
    }
}

/* Extracted Inline Styles from Pharma Page */
.ph-style-1 {
    min-height: 90vh;
    background: #0a0e27;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ph-style-2 {
    top: 20%;
    left: 10%;
    width: 150px;
}

.ph-style-3 {
    top: 60%;
    left: 80%;
    width: 120px;
    animation-delay: -5s;
}

.ph-style-4 {
    top: 10%;
    left: 70%;
    width: 100px;
    animation-delay: -12s;
}

.ph-style-5 {
    top: 30%;
    left: 40%;
}

.ph-style-6 {
    top: 70%;
    left: 20%;
    animation-delay: -1s;
}

.ph-style-7 {
    top: 25%;
    left: 85%;
    animation-delay: -2s;
}

.ph-style-8 {
    top: 80%;
    left: 60%;
    animation-delay: -1.5s;
}

.ph-style-9 {
    top: 30%;
    animation-delay: 0s;
}

.ph-style-10 {
    top: 65%;
    animation-delay: -3s;
}

.ph-style-11 {
    top: 15%;
    animation-delay: -1s;
}

.ph-style-12 {
    top: 85%;
    animation-delay: -4.5s;
}

.ph-style-13 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(0, 102, 255, 0.2) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.ph-style-14 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 60%, rgba(0, 160, 255, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.ph-style-15 {
    background: linear-gradient(to right, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.6) 100%);
    z-index: 3;
}

.ph-style-16 {
    position: relative;
    z-index: 10;
}

.ph-style-17 {
    max-width: 850px;
    margin-top: 60px;
}

.ph-style-18 {
    margin-bottom: 25px;
}

.ph-style-19 {
    background-color: transparent;
    padding: 0;
}

.ph-style-20 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0;
}

.ph-style-21 {
    font-size: 23px;
    color: white;
    text-align: left;
    max-width: 700px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.ph-style-22 {
    color: var(--secondary-color);
}

.ph-style-23 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ph-style-24 {
    padding: 16px 35px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-style-25 {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 35px;
    font-size: 1.05rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ph-style-26 {
    padding: 100px 0;
    background: #fff;
}

.ph-style-27 {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.ph-style-28 {
    flex: 1.2;
    min-width: 300px;
}

.ph-style-29 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.8rem;
    line-height: 1.1;
}

.ph-style-30 {
    color: var(--primary-color);
}

.ph-style-31 {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.ph-style-32 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ph-style-33 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ph-style-34 {
    color: var(--primary-color);
    margin-top: 5px;
}

.ph-style-35 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.ph-style-36 {
    font-size: 0.9rem;
    color: #6b7280;
}

.ph-style-37 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ph-style-38 {
    color: var(--primary-color);
    margin-top: 5px;
}

.ph-style-39 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.ph-style-40 {
    font-size: 0.9rem;
    color: #6b7280;
}

.ph-style-41 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ph-style-42 {
    color: var(--primary-color);
    margin-top: 5px;
}

.ph-style-43 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.ph-style-44 {
    font-size: 0.9rem;
    color: #6b7280;
}

.ph-style-45 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ph-style-46 {
    color: var(--primary-color);
    margin-top: 5px;
}

.ph-style-47 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.ph-style-48 {
    font-size: 0.9rem;
    color: #6b7280;
}

.ph-style-49 {
    margin-top: 40px;
    padding: 15px 35px;
}

.ph-style-50 {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.ph-style-51 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 15px solid #f1f5f9;
    border-radius: 20px;
    top: 20px;
    left: -20px;
    z-index: 1;
}

.ph-style-52 {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.ph-style-53 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    padding: 25px;
    border-radius: 15px;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ph-style-54 {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.ph-style-55 {
    font-size: 0.9rem;
    font-weight: 500;
}

.ph-style-56 {
    margin-top: 30px;
}

.ph-style-57 {
    background: #f8fafc;
}

.ph-style-58 {
    color: var(--primary-color);
    border-bottom: 2px solid #e2e8f0;
    padding: 15px;
}

.ph-style-59 {
    color: var(--primary-color);
    border-bottom: 2px solid #e2e8f0;
    padding: 15px;
}

.ph-style-60 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ph-style-61 {
    background: #f1f5f9;
}

.ph-style-62 {
    width: 25%;
}

.ph-style-63 {
    width: 35%;
}

.ph-style-64 {
    width: 40%;
}

.ph-style-65 {
    background: linear-gradient(135deg, #f2f4f8 0%, #ffffff 100%);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.ph-style-66 {
    position: relative;
    z-index: 5;
}

.ph-style-67 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.ph-style-68 {
    flex: 1.2;
    min-width: 300px;
}

.ph-style-69 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--secondary-color);
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ph-style-70 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #0a0e27;
}

.ph-style-71 {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 600px;
}

.ph-style-72 {
    flex: 0.8;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    position: relative;
}

.ph-style-73 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.ph-style-74 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.05), 0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.ph-style-75 {
    font-size: 1.4rem;
    color: #0a0e27;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ph-style-76 {
    color: var(--secondary-color);
}

.ph-style-77 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ph-style-78 {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ph-style-79 {
    color: #ef4444;
}

.ph-style-80 {
    font-weight: 500;
    color: #1e293b;
}

.ph-style-81 {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ph-style-82 {
    color: #ef4444;
}

.ph-style-83 {
    font-weight: 500;
    color: #1e293b;
}

.ph-style-84 {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ph-style-85 {
    color: #ef4444;
}

.ph-style-86 {
    font-weight: 500;
    color: #1e293b;
}

.ph-style-87 {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ph-style-88 {
    color: #ef4444;
}

.ph-style-89 {
    font-weight: 500;
    color: #1e293b;
}

.ph-style-90 {
    padding: 80px 0;
}

.ph-style-91 {
    font-size: 2.8rem;
}

.ph-style-92 {
    background: #f6f9fc;
    padding: 100px 0;
}

.ph-style-93 {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.ph-style-94 {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.ph-style-95 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-left: 5px solid #3b82f6;
    border-top: 5px solid #3b82f6;
    border-radius: 10px 0 0 0;
    opacity: 0.3;
}

.ph-style-96 {
    margin-top: 10px;
    padding: 0 10px;
}

.ph-style-97 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.ph-style-98 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0a0e27;
}

.ph-style-99 {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ph-style-100 {
    flex: 1.2;
    min-width: 350px;
}

.ph-style-101 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ph-style-102 {
    margin-bottom: 0;
}

.ph-style-103 {
    margin-bottom: 0;
}

.ph-style-104 {
    color: #10b981;
}

.ph-style-105 {
    margin-bottom: 0;
}

.ph-style-106 {
    color: #6366f1;
}

.ph-style-107 {
    margin-bottom: 0;
}

.ph-style-108 {
    color: #ef4444;
}

.ph-style-109 {
    margin-bottom: 0;
}

.ph-style-110 {
    color: #f59e0b;
}

.ph-style-111 {
    margin-bottom: 0;
}

.ph-style-112 {
    color: #3b82f6;
}

.ph-style-113 {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ph-style-114 {
    margin-bottom: 60px;
    text-align: center;
}

.ph-style-115 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--secondary-color);
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ph-style-116 {
    font-size: 3.2rem;
    color: #0a0e27;
    line-height: 1.1;
    margin-bottom: 25px;
}

.ph-style-117 {
    color: var(--primary-color);
}

.ph-style-118 {
    color: #4b5563;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.ph-style-119 {
    position: relative;
    padding: 0 60px;
}

.ph-style-120 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ph-style-121 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ph-style-122 {
    overflow: hidden;
    margin: -20px -10px -40px;
    padding: 20px 10px 40px;
}

.ph-style-123 {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.ph-style-124 {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ph-style-125 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.ph-style-126 {
    color: #0a0e27;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ph-style-127 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ph-style-128 {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ph-style-129 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.ph-style-130 {
    color: #0a0e27;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ph-style-131 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ph-style-132 {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ph-style-133 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.ph-style-134 {
    color: #0a0e27;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ph-style-135 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ph-style-136 {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ph-style-137 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.ph-style-138 {
    color: #0a0e27;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ph-style-139 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ph-style-140 {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ph-style-141 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.ph-style-142 {
    color: #0a0e27;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ph-style-143 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ph-style-144 {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ph-style-145 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.ph-style-146 {
    color: #0a0e27;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ph-style-147 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ph-style-148 {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ph-style-149 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.ph-style-150 {
    color: #0a0e27;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ph-style-151 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ph-style-152 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.ph-style-153 {
    padding: 60px 0;
    background: #fff;
}

.ph-style-154 {
    margin-bottom: 60px;
}

.ph-style-155 {
    font-size: 2.8rem;
}

.ph-style-156 {
    background-color: #f6f9fc;
    padding: 100px 0;
}

.ph-style-157 {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ph-style-158 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.ph-style-159 {
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #64748b;
}

.ph-style-160 {
    max-width: 1100px;
    margin: 60px auto 0;
}

.ph-style-161 {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    text-align: center;
    color: white;
}

.ph-style-162 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 0;
}

.ph-style-163 {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ph-style-164 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ph-style-165 {
    background: white;
    color: var(--primary-color);
    font-weight: bold;
    padding: 15px 40px;
}

.ph-style-166 {
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
}

/* =========================================================
   Modern Pharma-Related Hero Animation
   ========================================================= */

.pharma-animation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #0a0e27;
}

/* Precision Grid (21 CFR Part 11 / Structure metaphor) */
.precision-grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    transform-origin: center top;
}

@keyframes gridMove {
    0% {
        transform: perspective(1000px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(1000px) rotateX(60deg) translateY(60px) translateZ(-200px);
    }
}

/* DNA / Biotech Strands */
.dna-strand {
    position: absolute;
    width: 200px;
    height: 150vh;
    top: -25vh;
    right: 15%;
    opacity: 0.15;
    animation: dnaFloat 15s ease-in-out infinite;
    z-index: 10;
}

.dna-strand-secondary {
    right: auto;
    left: 10%;
    transform: scale(0.6) rotate(15deg);
    opacity: 0.08;
    filter: blur(2px);
    animation: dnaFloat 20s ease-in-out infinite reverse;
}

.dna-helix {
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 2;
    stroke-linecap: round;
}

.dna-helix-1 {
    stroke: var(--primary-color);
    stroke-dasharray: 800;
    animation: dnaDraw 10s linear infinite;
}

.dna-helix-2 {
    stroke: var(--secondary-color);
    stroke-dasharray: 800;
    animation: dnaDraw 10s linear infinite reverse;
}

.dna-bond {
    stroke: rgba(0, 212, 255, 0.5);
    stroke-width: 1.5;
    opacity: 0;
    animation: pulseBond 3s infinite alternate;
}

/* Stagger bond animations */
.dna-bond:nth-child(even) {
    animation-delay: 1.5s;
    stroke: rgba(0, 102, 255, 0.5);
}

.dna-bond:nth-child(3n) {
    animation-delay: 0.7s;
}

@keyframes dnaFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(2deg);
    }
}

@keyframes dnaDraw {
    0% {
        stroke-dashoffset: 800;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseBond {
    0% {
        opacity: 0;
        transform: scaleX(0.8);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Scanning Sensor Rings (Monitoring metaphor) */
.sensor-ring-container {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    opacity: 0.15;
}

.ring-2 {
    top: 30%;
    left: 80%;
    width: 250px;
    height: 250px;
    opacity: 0.08;
}

.sensor-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    animation: spinRing 30s linear infinite;
}

.sensor-ring-inner {
    position: absolute;
    inset: 15%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: spinRing 15s linear infinite reverse;
}

.sensor-crosshair {
    position: absolute;
    inset: 45%;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.5) 0%, transparent 60%);
    animation: pulseCrosshair 4s ease-in-out infinite;
}

.sensor-crosshair::before,
.sensor-crosshair::after {
    content: '';
    position: absolute;
    background: var(--secondary-color);
}

.sensor-crosshair::before {
    top: 50%;
    left: -50%;
    right: -50%;
    height: 1px;
}

.sensor-crosshair::after {
    left: 50%;
    top: -50%;
    bottom: -50%;
    width: 1px;
}

@keyframes spinRing {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseCrosshair {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

/* Glowing Orbs (Temperature / Environmental condition metaphor) */
.climate-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.orb-cold {
    top: 20%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    animation: orbitCold 20s infinite ease-in-out alternate;
}

.orb-warm {
    bottom: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    /* If you wanted a warm tone for contrast: rgba(251, 191, 36, 0.15) */
    animation: orbitWarm 25s infinite ease-in-out alternate;
}

@keyframes orbitCold {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-100px, 150px) scale(1.2);
    }
}

@keyframes orbitWarm {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(150px, -100px) scale(1.1);
    }
}

/* Validation Flow (Compliance / Audit metaphor) */
.validation-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.validation-particle {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    opacity: 0;
}

.p1 {
    top: 20%;
    left: -5%;
    animation: flowAcross 12s linear infinite 2s;
    color: rgba(16, 185, 129, 0.3);
}

/* Green check */
.p2 {
    top: 60%;
    left: -5%;
    animation: flowAcross 18s linear infinite 7s;
}

.p3 {
    top: 40%;
    right: -5%;
    animation: flowAcrossRev 15s linear infinite 1s;
    color: rgba(251, 191, 36, 0.3);
}

/* Gold lock */
.p4 {
    top: 80%;
    right: -5%;
    animation: flowAcrossRev 22s linear infinite 5s;
    color: rgba(0, 212, 255, 0.3);
}

/* Blue shield */

@keyframes flowAcross {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
        transform: translateX(20vw) translateY(-20px) rotate(90deg) scale(1);
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateX(110vw) translateY(50px) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes flowAcrossRev {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    100% {
        transform: translateX(-110vw) translateY(-50px) rotate(-360deg) scale(1);
        opacity: 0;
    }
}

/* Data Stream adjustments */
.data-stream-1 {
    top: 30%;
    height: 2px;
    animation: lineFlow 5s infinite linear;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.data-stream-2 {
    top: 70%;
    height: 1px;
    animation: lineFlow 8s infinite linear 3s;
}

.data-stream-3 {
    top: 50%;
    height: 1px;
    animation: lineFlow 6s infinite linear 1s;
}


/* =========================================================
   Mobile Responsiveness for Pharma Data Logger Page
   ========================================================= */

body {
    overflow-x: hidden;
    /* Global safety for mobile */
}

@media (max-width: 991px) {

    /* Tablet Adjustments */
    .ph-style-62,
    .ph-style-63,
    .ph-style-64 {
        width: auto !important;
    }

    .ph-style-29,
    .ph-style-116,
    .ph-style-158 {
        font-size: 2.3rem !important;
    }

    .ph-style-54 {
        font-size: 1.6rem !important;
    }

    .pharma-callout-premium {
        gap: 20px !important;
        padding: 25px !important;
    }

    .ph-style-26,
    .ph-style-65,
    .ph-style-92,
    .ph-style-113,
    .ph-style-153,
    .ph-style-156,
    .ph-style-161 {
        padding: 60px 0 !important;
    }
}

@media (max-width: 768px) {

    /* Prevent any stray vertical overflow */
    .pharma-animation-wrapper {
        height: 100vh;
    }

    /* Hero Section Mobile */
    .ph-style-1 {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        text-align: center !important;
    }

    .hero-content.ph-style-17 {
        text-align: center !important;
        padding: 0 15px !important;
    }

    .hero-title .hero-text-block.ph-style-19 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        display: block !important;
        margin-bottom: 5px !important;
    }

    .hero-title .hero-text-block.ph-style-20 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        display: block !important;
    }

    .ph-style-21 {
        font-size: 16px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
    }

    .ph-style-23 {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .ph-style-24,
    .ph-style-25 {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }

    /* Trust Signals Bar */
    .trust-signals-bar {
        padding: 15px 0 !important;
    }

    .trust-signals-bar .trust-signal-item {
        display: block !important;
        margin: 8px 0 !important;
        font-size: 0.9rem !important;
    }

    /* General Padding Adjustments */
    .ph-style-26,
    .ph-style-65,
    .ph-style-92,
    .ph-style-113,
    .ph-style-153,
    .ph-style-156,
    .ph-style-161 {
        padding: 40px 15px !important;
        /* Adding side padding to prevent touching edges */
    }

    /* Headlines */
    .ph-style-29,
    .ph-style-116,
    .ph-style-158,
    .ph-style-162 {
        font-size: 1.95rem !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }

    .ph-style-31,
    .ph-style-163 {
        text-align: center !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    /* Flex Rows to Columns */
    .ph-style-27,
    .ph-style-67,
    .ph-style-93,
    .ph-style-118 {
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* Reverse columns for alternate layouts so text/image order is consistent */
    .ph-style-67 {
        flex-direction: column-reverse !important;
    }

    /* Layouts / Grids */
    .ph-style-32,
    .feature-grid-pharma-new {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Ensure image wrappers don't overflow */
    .ph-style-50,
    .ph-style-94,
    .ph-style-141 {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 10px !important;
    }

    .ph-style-52 {
        width: 100% !important;
        height: auto !important;
    }

    /* Images / Borders / Aesthetics adjustments */
    .ph-style-51 {
        border-width: 5px !important;
        top: 5px !important;
        left: -5px !important;
        right: 5px !important;
        width: auto !important;
    }

    /* Fix floating boxes intersecting boundaries */
    .ph-style-53 {
        bottom: 10px !important;
        right: 10px !important;
        left: 10px !important;
        /* Center on mobile */
        padding: 15px !important;
        width: calc(100% - 20px) !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Premium Callout Box */
    .pharma-callout-premium {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding: 25px 15px !important;
        margin: 40px 15px 0 !important;
        width: auto !important;
    }

    .pharma-callout-icon {
        margin: 0 auto !important;
        width: 70px !important;
        height: 70px !important;
        font-size: 2rem !important;
    }

    .pharma-callout-text {
        text-align: center !important;
        font-size: 1rem !important;
    }

    .pharma-highlight-gold {
        justify-content: center !important;
        width: 100% !important;
        margin: 15px 0 0 0 !important;
    }

    /* Parameter cards */
    .parameter-spec-strip {
        padding: 15px !important;
        gap: 15px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .param-icon-box {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    /* Tab bodies padding */
    .tab-body {
        padding: 0 !important;
    }

    /* Steps Section Adjustments */
    .ph-style-146 {
        /* the arrow connector */
        display: none !important;
        /* Hide arrows on mobile flowing down */
    }

    .ph-style-142,
    .ph-style-147,
    .ph-style-150 {
        /* step blocks */
        text-align: center !important;
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
    }

    .ph-style-144,
    .ph-style-149,
    .ph-style-152 {
        /* step icons */
        margin: 0 auto 15px auto !important;
    }

    /* Tables Container for Overflow */
    .table-responsive {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .specs-table th,
    .specs-table td,
    .tech-table th,
    .tech-table td,
    .compliance-table th,
    .compliance-table td {
        padding: 10px !important;
        font-size: 0.85rem !important;
        white-space: normal !important;
        /* Ensure tight packing */
    }

    .tech-heading {
        font-size: 0.95rem !important;
    }

    /* Modifying specific wide tags for mobile readability */
    .btn {
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {

    /* Extra Small Devices */
    .hero-title .hero-text-block.ph-style-19 {
        font-size: 1.9rem !important;
    }

    .hero-title .hero-text-block.ph-style-20 {
        font-size: 1.5rem !important;
    }

    .ph-style-21 {
        font-size: 15px !important;
    }

    .ph-style-29,
    .ph-style-116,
    .ph-style-158,
    .ph-style-162 {
        font-size: 1.7rem !important;
    }
}


/* =========================================================
   Mobile Responsiveness for Section 5 Safeguard Box
   ========================================================= */

@media (max-width: 768px) {
    .ph-style-72 {
        width: 100% !important;
        min-width: unset !important;
        justify-content: center !important;
    }

    .ph-style-73 {
        /* glow effect behind the box */
        width: 100% !important;
        max-width: 300px !important;
        transform: translate(-50%, -50%) !important;
    }

    .ph-style-74 {
        padding: 20px !important;
        margin-top: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .ph-style-75 {
        font-size: 1.2rem !important;
        text-align: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .ph-style-76 {
        font-size: 2rem !important;
    }

    /* The grid of 4 risk items */
    .ph-style-77 {
        grid-template-columns: 1fr !important;
        /* Stack vertically instead of 2 columns */
        gap: 10px !important;
    }

    .ph-style-78,
    .ph-style-81,
    .ph-style-84,
    .ph-style-87 {
        padding: 12px 15px !important;
        justify-content: flex-start !important;
        /* Keep icon left, text right to look good stacked */
    }
}

/* =========================================================
   Mobile Responsiveness for Section 8 (Value Proposition)
   ========================================================= */

@media (max-width: 768px) {

    /* Feature Grid stacked cleanly */
    .feature-grid-pharma-new {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
        padding: 0 10px !important;
    }

    .pharma-benefit-card {
        padding: 25px 20px !important;
        text-align: center !important;
        /* Center text on mobile for cards */
    }

    /* Center the icon on mobile */
    .benefit-icon-wrapper {
        margin: 0 auto 20px auto !important;
    }

    .pharma-benefit-card h4 {
        font-size: 1.25rem !important;
    }

    .pharma-benefit-card p {
        font-size: 0.95rem !important;
    }

    /* Premium Callout Box further mobile tweaks */
    .pharma-callout-premium {
        position: relative !important;
        margin: 40px 10px 0 10px !important;
        /* Keep it contained */
        padding: 30px 20px !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .pharma-callout-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .pharma-tag-tactical {
        margin: 0 auto 15px auto !important;
    }

    .pharma-callout-text {
        text-align: center !important;
        font-size: 1.1rem !important;
        padding: 0 5px !important;
    }

    .pharma-callout-badge {
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
}


/* =========================================================
   Mobile Responsiveness for Section 6 (Parameters Monitor)
   ========================================================= */

@media (max-width: 768px) {

    /* Remove breaking min-widths */
    .ph-style-94,
    .ph-style-100 {
        min-width: unset !important;
        width: 100% !important;
    }

    /* Stack the left title and text centrally */
    .ph-style-96 {
        text-align: center !important;
        padding: 0 !important;
    }

    .ph-style-98 {
        /* H3 parameter title */
        font-size: 1.8rem !important;
    }

    /* Stack the right-side parameter items */
    .ph-style-101 {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Small parameter strips */
    .parameter-spec-strip {
        padding: 15px !important;
        gap: 15px !important;
        flex-direction: row !important;
        /* Keep icon and text side-by-side but stacked */
        align-items: center !important;
        text-align: left !important;
    }

    .param-icon-box {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
    }
}


/* =========================================================
   Mobile Responsiveness for Section 7 (Facilities Carousel)
   ========================================================= */

@media (max-width: 768px) {

    /* Main wrapper container */
    .ph-style-119 {
        padding: 0 10px !important;
        /* Remove the massive 60px side padding */
    }

    /* Titles Alignment */
    .ph-style-114 {
        /* Header block */
        padding: 0 15px !important;
        margin-bottom: 30px !important;
    }

    .ph-style-116 {
        /* H2 title */
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .ph-style-118 {
        /* Description text */
        font-size: 1.05rem !important;
        padding: 0 10px !important;
    }

    /* Carousel buttons (Chevron Arrows) */
    .ph-style-120 {
        /* Left button */
        left: 5px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
        z-index: 20 !important;
    }

    .ph-style-121 {
        /* Right button */
        right: 5px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
        z-index: 20 !important;
    }

    /* Carousel Track Items */
    .ph-style-122 {
        /* carousel overflow viewport */
        margin: 0 !important;
        padding: 10px 0 30px !important;
    }

    .facility-carousel-item {
        min-width: unset !important;
        /* Allow the JS to flex it properly based on screen width */
        padding: 25px 20px !important;
        /* Slightly reduce internal padding */
    }

    /* Typography inside carousel cards */
    .facility-carousel-item h4 {
        font-size: 1.25rem !important;
        margin-bottom: 10px !important;
    }

    .facility-carousel-item p {
        font-size: 0.95rem !important;
    }

    .facility-carousel-item i.fas {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }

    /* Dots */
    .ph-style-152 {
        margin-top: 20px !important;
    }
}


/* =========================================================
   Navigation Dropdown (Mega Menu) Styles
   ========================================================= */

.nav-dropdown {
    position: relative;
    /* Allows bounding the absolute dropdown menu */
}

/* Base Dropdown Menu Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Hover effect on desktop */
@media (min-width: 969px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
        /* Small offset from navbar */
    }
}

/* Dropdown Menu Items */
.dropdown-menu a {
    color: #4b5563 !important;
    text-decoration: none;
    font-weight: 500 !important;
    padding: 10px 10px !important;
    border-radius: 8px;
    transition: all 0.2s ease !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #000 !important;
}

.dropdown-menu a:hover i,
.dropdown-menu a.active i {
    color: var(--primary-color) !important;
}

.dropdown-menu a i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Mobile Adjustments for Dropdowns */
@media (max-width: 968px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-menu .nav-dropdown>a {
        display: flex;
        justify-content: center;
        /* Center content */
        align-items: center;
        gap: 10px;
        /* Space between text and chevron */
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8fafc;
        /* Solid subtle offset gray for contrast */
        padding: 5px 0 10px 0;
        /* Remove left padding */
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        flex-direction: column;
        align-items: center;
        /* Center sub-items */
        border-bottom: 2px solid rgba(0, 0, 0, 0.03);
    }

    .dropdown-menu a {
        color: #1a1a1a !important;
        font-weight: 500 !important;
        /* Force dark text */
        border-bottom: none !important;
        padding: 12px 15px !important;
        justify-content: center;
        /* Center icons and text */
        width: 100%;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a.active {
        background: rgba(0, 0, 0, 0.05) !important;
        color: var(--primary-color) !important;
    }

    .nav-dropdown>a i {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active>a i {
        transform: rotate(180deg);
    }

    /* When active class added via JS, show it */
    .dropdown-menu.active {
        display: flex;
    }

    .dropdown-menu a {
        padding: 10px 15px !important;
        font-size: 0.95rem;
    }
}
/* ===========================
   Country Selector Styles
   =========================== */
.country-selector-placeholder {
    position: relative;
    z-index: 2000;
    margin-left: 0.5rem;
}

/* Specific styling for mobile menu integration */
.nav-menu .mobile-only-country {
    display: none;
    padding: 15px 20px;
    justify-content: center;
}

@media (max-width: 968px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .nav-menu .mobile-only-country {
        display: flex;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu .mobile-only-country .country-selector-placeholder {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-menu .mobile-only-country .selector-selected {
        background: rgba(0, 0, 0, 0.03);
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.05);
        width: auto;
        min-width: 150px;
        justify-content: center;
    }
}

.country-selector {
    position: relative;
    cursor: pointer;
}

.selector-selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 1.2rem; /* Larger for emoji flags */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.selector-selected:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

@media (max-width: 968px) {
    .selector-selected {
        padding: 0.4rem 0.7rem;
        font-size: 1rem;
    }
}

.selector-selected i {
    font-size: 0.6rem;
    color: #777;
    transition: transform 0.3s ease;
}

.selector-dropdown.show + .selector-selected i {
    transform: rotate(180deg);
}

.selector-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 0.6rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.selector-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
}

.country-option:hover {
    background: rgba(0, 102, 255, 0.05);
    color: #0066ff;
}

.country-option.active {
    background: rgba(0, 102, 255, 0.08);
    color: #0066ff;
    font-weight: 600;
}

.country-option .flag {
    font-size: 1.3rem;
    line-height: 1;
}

.country-option .name {
    flex: 1;
}

@media (max-width: 968px) {
    .country-selector {
        margin-right: 0.5rem;
    }
    
    .selector-dropdown {
        position: fixed;
        top: auto;
        bottom: 0px;
        left: 0;
        right: 0;
        width: 100%;
        min-width: 0;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
        transform: translateY(100%);
    }
    
    .selector-dropdown.show {
        transform: translateY(0);
    }
}

/* ===========================
   Return & Refund Policy Page
   =========================== */

/* ── Page shell ── */
.policy-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

/* ── Header ── */
.policy-header {
  border-bottom: 2px solid #0066ff;
  padding-bottom: 28px;
  margin-bottom: 48px;
}
.policy-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.policy-breadcrumb a {
  color: #0066ff;
  text-decoration: none;
}
.policy-breadcrumb a:hover { text-decoration: underline; }
.policy-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #0066ff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.policy-meta {
  font-size: 13px;
  color: #888;
  font-family: 'Inter', monospace;
}
.policy-meta b { color: #0066ff; }

/* ── Banner ── */
.policy-banner {
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  color: #fff;
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2);
}
.policy-banner-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.policy-banner p { font-size: 14.5px; line-height: 1.65; }
.policy-banner strong { font-weight: 600; }

/* ── Section cards ── */
.policy-section {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 30px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.policy-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.08);
}
.policy-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  border-radius: 4px 0 0 4px;
}
.section-num {
  font-family: 'Inter', monospace;
  font-size: 11px;
  color: #0066ff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.policy-section h2 {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.policy-section p {
  font-size: 14.5px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.75;
}
.policy-section p:last-child { margin-bottom: 0; }

/* ── Tags ── */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.tag {
  background: rgba(0, 102, 255, 0.08);
  color: #0066ff;
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.tag.no { background: rgba(220, 53, 69, 0.08); color: #c0392b; }

/* ── Table ── */
.policy-section table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13.5px; }
.policy-section thead tr { background: linear-gradient(135deg, #0066ff, #00d4ff); color: #fff; }
.policy-section thead th { padding: 12px 16px; text-align: left; font-weight: 500; font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.04em; }
.policy-section tbody tr { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.policy-section tbody tr:last-child { border-bottom: none; }
.policy-section tbody td { padding: 12px 16px; color: #555; }
.policy-section tbody tr:nth-child(even) { background: rgba(0, 102, 255, 0.02); }
.ok { color: #0066ff; font-weight: 600; }
.no-txt { color: #c0392b; font-weight: 600; }

/* ── Steps ── */
.steps { margin: 16px 0; }
.step { display: flex; gap: 16px; margin-bottom: 16px; align-items: flex-start; }
.step-num {
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  color: #fff;
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-family: 'Inter', monospace;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
}
.step p { font-size: 14px; color: #555; margin: 0; line-height: 1.7; }
.step strong { color: #1a1a1a; font-weight: 600; }

/* ── Contact box ── */
.policy-contact-box {
  background: linear-gradient(135deg, #0050cc 0%, #0099dd 60%, #00c8f0 100%);
  border-radius: 20px;
  padding: 44px 48px;
  margin-top: 36px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 80, 200, 0.3);
  display: flex;
  align-items: center;
  gap: 52px;
  position: relative;
  overflow: hidden;
}
.policy-contact-box::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.policy-contact-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 180px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.contact-box-info { flex: 1; position: relative; z-index: 1; }
.contact-box-info .headset-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  font-size: 22px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.policy-contact-box h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.policy-contact-box .sub {
  font-size: 13.5px;
  opacity: 0.8;
  line-height: 1.7;
}
.contact-grid {
  margin: auto;
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.contact-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 13px 18px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.contact-item:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
}
.contact-item .ci-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.18);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.contact-item .ci-body { display: flex; flex-direction: column; }
.contact-item .label {
  font-size: 9.5px;
  font-family: 'Inter', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-bottom: 2px;
}
.contact-item .val { font-size: 14px; font-weight: 600; }

/* ── Policy note ── */
.policy-section .note {
  background: rgba(0, 102, 255, 0.04);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #555;
  margin-top: 14px;
}
.policy-section .note strong { color: #0066ff; }

/* ── Policy responsive ── */
@media (max-width: 700px) {
  .policy-contact-box { flex-direction: column; align-items: flex-start; gap: 28px; padding: 32px 28px; }
  .contact-grid { flex: none; width: 100%; }
}
@media (max-width: 640px) {
  .policy-page { padding: 100px 16px 60px; }
  .policy-section { padding: 22px 20px; }
  .policy-header h1 { font-size: 26px; }
  .policy-contact-box { padding: 24px 20px; }
  .policy-section table { font-size: 12px; }
  .policy-section thead th,
  .policy-section tbody td { padding: 10px; }
}
