/* Enhanced Styles for Khayyam Pharmaceutical */

/* Import Yekan Font */
@font-face {
	font-family: 'Yekan';
	src: url('../fonts/yekan/Yekan.eot');
	src: url('../fonts/yekan/Yekan.eot?#iefix') format('embedded-opentype'),
		url('../fonts/yekan/Yekan.woff2') format('woff2'),
		url('../fonts/yekan/Yekan.woff') format('woff'),
		url('../fonts/yekan/Yekan.ttf') format('truetype'),
		url('../fonts/yekan/Yekan.svg#Yekan') format('svg');
	font-weight: normal;
	font-style: normal;
}

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

/* Root Variables */
:root {
    --primary-color: #0077B6;
    --secondary-color: #00B4D8;
    --accent-color: #90E0EF;
    --background-color: #F8FAFC;
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --footer-bg: #0F172A;
    --footer-text: #E2E8F0;
}

/* Base Typography */
body {
    font-family: 'Yekan', 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Yekan', 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-family: 'Yekan', 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-family: 'Yekan', 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}


/* ===== HERO SECTION STYLES ===== */

.hero-container {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Enhanced text visibility */
.hero-text-content h1 {
    color: white !important;
}

.hero-text-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Slider Navigation */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--secondary-color);
}

/* Navigation Arrows */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Menu Styles */
#mobileMenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
    border-top: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        height: calc(100vh - 4rem);
        min-height: calc(100vh - 4rem);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .hero-text-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-text-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-text-content p {
        font-size: 1.1rem !important;
        max-width: 90% !important;
        margin: 0 auto 2rem auto !important;
    }

    .hero-text-content .flex {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .hero-text-content .flex a {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 2rem;
    }

    .hero-text-content a {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
}

/* Old Hero Slider Styles (Kept for compatibility) */
.hero-slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Diagonal Split Effect */
.diagonal-split {
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0299b4 0%, #025479 100%);
    opacity: 0.1;
    transform: skewX(-15deg);
    z-index: 0;
}

/* Slider Dots */
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #0299b4;
    width: 32px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: #025479;
}

/* Product Cards - Hexagon Style */
.product-hexagon {
    position: relative;
}

.clip-hexagon {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: all 0.3s ease;
}

/* Product Cards - Wave Style */
.product-wave {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, #0299b4, #025479);
    clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0 100%);
}

/* Blog Cards */
.blog-card-curved,
.blog-card-slanted,
.blog-card-wave {
    transition: all 0.3s ease;
}

.slant-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
}

.wave-bottom-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 80%);
}

/* Animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos="fade-right"] {
    animation: slideInFromRight 0.8s ease-out;
}

[data-aos="fade-left"] {
    animation: slideInFromLeft 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0299b4, #025479);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #025479;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .diagonal-split {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #0299b4 0%, #025479 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.card-hover:hover::before {
    left: 100%;
}

/* Bottom Navigation Adjustments */
body {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 64px;
    }
}

/* Footer adjustments for bottom nav */
footer {
    padding-bottom: 6rem;
}

@media (min-width: 768px) {
    footer {
        padding-bottom: 1.5rem;
    }
}

/* ===== ENHANCED STYLES FOR REDESIGN ===== */

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
}

/* Neumorphism Cards */
.neuro-card {
    background: var(--background-color);
    border-radius: 24px;
    box-shadow: 
        20px 20px 60px #d1d9e6,
        -20px -20px 60px #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.neuro-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        25px 25px 80px #d1d9e6,
        -25px -25px 80px #ffffff;
}

/* Stat Cards */
.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 180, 216, 0.1), transparent);
    animation: shimmer-stat 3s infinite;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.2);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Floating Elements */
.float {
    animation: float 6s ease-in-out infinite;
}

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

/* Particle Background */
.particle-bg {
    position: relative;
    overflow: hidden;
}

.particle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(144, 224, 239, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 119, 182, 0.2) 0%, transparent 50%);
    animation: particleMove 20s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-5px, -5px) rotate(90deg); }
    75% { transform: translate(-5px, -5px) rotate(270deg); }
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-top: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 4px;
    position: relative;
    transition: width 2s ease-out;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

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

/* Enhanced Navigation */
.nav-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-glass a {
    color: var(--text-primary);
    font-weight: 500;
}

.nav-glass a:hover {
    color: var(--primary-color);
}

.nav-glass .text-secondary {
    color: var(--primary-color) !important;
}

.nav-glass .border-primary {
    border-color: var(--primary-color);
}

/* Enhanced Footer */
.enhanced-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer-link {
    color: var(--footer-text);
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Social Icons */
.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Section Animation Classes */
.section-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-slide-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.section-slide-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.section-scale-up {
    opacity: 1;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-scale-up.animate {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.animate-delay-100 { transition-delay: 0.1s; }
.animate-delay-200 { transition-delay: 0.2s; }
.animate-delay-300 { transition-delay: 0.3s; }
.animate-delay-400 { transition-delay: 0.4s; }
.animate-delay-500 { transition-delay: 0.5s; }

/* Stats Section Background Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-5deg); }
}

@keyframes glow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.stats-icon-float {
    animation: float 6s ease-in-out infinite;
}

.stats-icon-float-reverse {
    animation: floatReverse 8s ease-in-out infinite;
}

.stats-icon-glow {
    animation: glow 4s ease-in-out infinite;
}

/* Counter Animation */
.counter {
    font-family: 'Yekan', 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.counter.animate {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Enhanced Gradient Backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.gradient-dark {
    background: linear-gradient(135deg, var(--footer-bg) 0%, var(--primary-color) 100%);
}

/* Abstract Shape Decorations */
.abstract-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .glass-card, .neuro-card {
        margin-bottom: 2rem;
    }
}

/* Dark Theme Overrides */
.dark-section {
    background: var(--footer-bg);
    color: var(--footer-text);
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: white;
}

/* Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== IMAGE OPTIMIZATION STYLES ===== */

/* Hero Background Images */
.hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.15) 0%, rgba(0, 180, 216, 0.08) 100%);
    z-index: 1;
}

.hero-content-inner {
    position: relative;
    z-index: 10;
}

/* Pharmaceutical Background */
.pharma-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.pharma-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.85);
    z-index: 1;
}

.pharma-bg-content {
    position: relative;
    z-index: 10;
}

/* Dark Section Background */
.dark-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.dark-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 1;
}

/* Product Card Images */
.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Feature Image */
.feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-img.float {
    animation: float 6s ease-in-out infinite;
}

/* Blog Card Images */
.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Blog Cards */
.blog-card-curved,
.blog-card-slanted,
.blog-card-wave {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-card-curved:hover,
.blog-card-slanted:hover,
.blog-card-wave:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Doctor Image */
.doctor-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* About Section Background */
.about-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-overlay {
    position: relative;
    z-index: 10;
}

/* Stats Section with Background */
.stats-bg-new {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* New Horizontal Stats Design */

/* Title Styling */
.title-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 50px;
}

.title-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

/* Stats Container - 4 Cards in Row */
.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Special Circle Cards Design */
.stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    min-width: 250px;
    flex: 1;
    max-width: 280px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.circle-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: radial-gradient(circle at 30% 20%, #60a5fa, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    position: relative;
    box-shadow: 
        0 0 0 4px rgba(255,255,255,0.2),
        0 15px 35px rgba(96, 165, 250, 0.4),
        inset 0 -5px 20px rgba(0,0,0,0.2);
}

.stat-card:hover .circle-icon {
    transform: scale(1.05);
}

.circle-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.big-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.card-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    
    .stat-card {
        min-width: 280px;
        max-width: none;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .big-number {
        font-size: 3rem;
    }
    
    .circle-icon {
        width: 80px;
        height: 80px;
    }
    
    .circle-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Text readability over images */
.hero-content-inner h1,
.hero-content-inner h2,
.hero-content-inner p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content-inner span {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Enhanced button contrast */
.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.btn-white:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Improved stat card contrast */
.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-card .counter {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-card p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Image Adjustments */
@media (max-width: 768px) {
    .hero-bg,
    .pharma-bg,
    .dark-bg,
    .about-bg,
    .stats-bg {
        background-attachment: scroll;
    }
    
    .product-img {
        height: 150px;
    }
    
    .feature-img {
        height: 200px;
    }
    
    .blog-img {
        height: 180px;
    }
}

/* ===== SHOWCASE STYLES ===== */

.product-showcase-item,
.about-showcase-item,
.rd-showcase-item,
.blog-showcase-item {
    margin: 0;
}

.product-showcase-item img,
.about-showcase-item img,
.rd-showcase-item img,
.blog-showcase-item img {
    transition: transform 0.3s ease;
}

.product-showcase-item:hover img,
.about-showcase-item:hover img,
.rd-showcase-item:hover img,
.blog-showcase-item:hover img {
    transform: scale(1.03);
}

/* Special styles for R&D section */
.rd-showcase-item .bg-white\/10 {
    backdrop-filter: blur(10px);
}

.rd-showcase-item .border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

